diff --git a/.DS_Store b/.DS_Store
new file mode 100644
index 0000000000..80213c8c65
Binary files /dev/null and b/.DS_Store differ
diff --git a/.gitignore b/.gitignore
index 2c77d23001..92459a9d2f 100644
--- a/.gitignore
+++ b/.gitignore
@@ -1,3 +1,4 @@
+recognition/s4481540_Zhuoxiao_Chen/data/
# Byte-compiled / optimized / DLL files
__pycache__/
*.py[cod]
diff --git a/.idea/misc.xml b/.idea/misc.xml
new file mode 100644
index 0000000000..f56ad02b95
--- /dev/null
+++ b/.idea/misc.xml
@@ -0,0 +1,4 @@
+
+
+
+
\ No newline at end of file
diff --git a/.idea/vcs.xml b/.idea/vcs.xml
new file mode 100644
index 0000000000..94a25f7f4c
--- /dev/null
+++ b/.idea/vcs.xml
@@ -0,0 +1,6 @@
+
+
+
+
+
+
\ No newline at end of file
diff --git a/algorithms/denoise/README.md b/algorithms/denoise/README.md
old mode 100755
new mode 100644
diff --git a/algorithms/denoise/denoise_tv_bregman/cat.png b/algorithms/denoise/denoise_tv_bregman/cat.png
old mode 100755
new mode 100644
diff --git a/algorithms/denoise/unsupervised-wiener/resources/astronaut.jpg b/algorithms/denoise/unsupervised-wiener/resources/astronaut.jpg
deleted file mode 100644
index 28677969a9..0000000000
Binary files a/algorithms/denoise/unsupervised-wiener/resources/astronaut.jpg and /dev/null differ
diff --git a/algorithms/denoise/wiener_deconv/tests/astronaut_noise.npy b/algorithms/denoise/wiener_deconv/tests/astronaut_noise.npy
deleted file mode 100644
index af04c3596d..0000000000
Binary files a/algorithms/denoise/wiener_deconv/tests/astronaut_noise.npy and /dev/null differ
diff --git a/algorithms/image/rank_order/main.py b/algorithms/image/rank_order/main.py
old mode 100755
new mode 100644
diff --git a/algorithms/numbertheory/number_theory/README.md b/algorithms/numbertheory/number_theory/README.md
old mode 100755
new mode 100644
diff --git a/algorithms/numbertheory/numbthy.py b/algorithms/numbertheory/numbthy.py
old mode 100755
new mode 100644
diff --git a/recognition/.DS_Store b/recognition/.DS_Store
new file mode 100644
index 0000000000..ae199051c1
Binary files /dev/null and b/recognition/.DS_Store differ
diff --git a/recognition/2021_ISIC_Improved_UNet/README.md b/recognition/2021_ISIC_Improved_UNet/README.md
new file mode 100644
index 0000000000..1cf9e51ec0
--- /dev/null
+++ b/recognition/2021_ISIC_Improved_UNet/README.md
@@ -0,0 +1,191 @@
+# Segmentation of the ISICs dataset using Improved UNet
+Published by the International Skin Imaging Collaboration (ISIC), the ISICs 2018 dataset
+was used as part of the Skin Lesion Analysis Towards Melanoma Detection recurring challenge.
+This challenge is an opportunity for participants to develop automated tools which aid in the
+diagnosis of melanoma. This project employs the Improved UNet [1] architecture to perform
+segmentation on the aforementioned ISICs dataset.
+
+## ISICs dataset
+The ISIC's dataset contains 2594 images and their associated segmentation masks. By default, the dataset contains images of varying sizes and aspect ratios. Data normalisation and resizing was applied to provide consistency throughout the inputs.
+
+
+
+
+
+
+
+
+
+_Figure 1: Sample image and associated mask from the ISICs 2018 dataset_
+
+### Data preprocessing
+As part of the pre-processing phase, all of the images (training images and masks) were normalised. In order to be run through the network, all of the images had to be the same size. The size chosen was (192, 256). The training images kept 3 colour channels: [192, 256, 3]. On the other hand, the segmentation masks were reduced to a single colour channel: [192, 256, 1]. The segmentation masks were also thresholded: pixels with a value > 0.5 after normalisation were set to 1, and the rest were set to 0.
+
+#### Training, Test & Validation Split.
+The Training, Testing and Validation data split chosen was 70 / 15 / 15. Some research was conducted on the optimal split for medical data. In general, it was found that there is no single correct split, however this percentage seemed to be the most highly regarded. For a dataset of this size, that means there was around 1800 training samples, and 390 training & validation samples.
+
+## Architecture
+Proposed in 2018 [1], the Improved UNet is designed upon the original model of UNet, proposed in 2015 [2].
+
+
+
+
+
+_Figure 2: Improved UNet Architecture [1]_
+
+The Improved UNet is composed of two main sections, the Context Aggregation pathway and the Localisation pathway. These pathways share information about the input images through Skip Connections from the Context Aggregation Pathway.
+
+### Context Modules & The Context Aggregation Pathway
+The Context Aggregation pathway is designed to encode the input images into increasingly compact representations as the network progresses. To do so, it is composed of a collection of 3x3 Convolutions (with a stride of 2) and Context Modules.
+
+The layer-by-layer architecture of the Context Modules is as follows:
+
+|Context Module Architecture|
+|-|
+|Instance Normalization|
+|Leaky ReLU Activation|
+|3x3 Convolution|
+|Dropout (_0.3 dropout rate_)|
+|Instance Normalization|
+|Leaky ReLU Activation|
+|3x3 Convolution|
+
+### Localisation Modules & The Localisation Pathway
+The Localisation Pathway is designed to increase the dimensionality of the encoded image representation to produce high resolution segmentations by means of Localisation Modules, UpSampling modules and image upscaling.
+
+The layer-by-layer architecture of the Localisation Modules is as follows:
+
+|Localisation Module Architecture|
+|-|
+|3x3 Convolution|
+|1x1 Convolution|
+
+#### Up-Sampling Modules
+Up-Sampling modules are placed after every localisation module in the Localisation Pathway.
+
+The layer-by-layer architecture of the Up-Sampling Modules is as follows:
+
+|Up-Sampling Module Architecture|
+|-|
+|2D UpSampling layer (2x2)|
+|3x3 Convolution|
+
+### Skip Connections
+Denoted by the horizontal dashed lines in _Figure 2_, Skip Connections are element-wise summations of the 3x3 (stride 2) Convolutions and Context Module outputs' in the Context Aggregation pathway. Skip Connections are concatenated into the corresponding network level in the Localisation Pathway.
+
+The Localisation Modules are designed to re-introduce these skip connections into the network after the concatenation.
+
+### Segmentation
+Segmentation occurs 3 times in the Localisation Pathway. Performing segmentation on multiple levels of the network allows for segmented information from the lower levels to propagate into the higher levels through an element-wise summation.
+
+Segmentation layers are 3x3 convolutions with a single output filter.
+
+The 'U' shaped dashed lines in _Figure 2_ denote the pathway that the segmentation levels take. Output is taken from the levels' Localisation Module and given to a Segmentation Layer. Lower (smaller) layers are up-sampled to allow element-wise summation to occur.
+
+## Optimizer & Loss
+The optimizer used in this implementation was the [Adam optimizer](https://www.tensorflow.org/api_docs/python/tf/keras/optimizers/Adam) with a learning rate of 5e-4, as per [1].
+
+### Dice Similarity Coefficient
+The [Dice Similarity Coefficient](https://en.wikipedia.org/wiki/S%C3%B8rensen%E2%80%93Dice_coefficient) is a common metric used in segmentation problems. Formally, DSC is defined as:
+
+
+
+
+
+That is, the DSC is: 2 * the overlap between the pixels in the Ground Truth segmentation mask, and the model-generated Segmentation Mask. This is then divided by the sum of the total pixels in both masks.
+
+## Results
+For the following results, the model was run for 20 epochs. The `validation` performance follows the `training` performance closely throughout training, divering slightly towards the end. The distribution of DSC values on the Test Set evaluation is left-skewed, with few images attaining low DSC scores. Overall, an average DSC of > 0.8 was attained on the Test Set, with > 67% of images yielding a DSC score of 0.8 or higher.
+
+### Accuracy & Loss Plots
+The following plots show the behaviour of the model in terms of DSC and Loss over a 20 epoch run.
+
+
+
+
+
+_Figure 3: Improved UNet model loss_
+
+
+
+
+
+
+_Figure 4: Improved UNet model dice coefficient_
+
+### Performance on the Test Set
+After the model was trained for 20 epochs, its performance was evaluated on the Test Set.
+
+
+
+
+
+_Figure 5: Model performance on the Test Set after training_
+
+From _Figure 5_, we see that the average Dice Coefficient was 80.8%. Overall, 67.8% of the test set yielded a DSC of 0.8+.
+
+#### DSC Distribution
+The histogram below shows the distribution of the Test Set's DSC values during evaluation.
+
+
+
+
+
+
+_Figure 6: Distribution of DSC on the Test Set evaluation_
+
+### Output generated
+Masks output by the model were thresholded such that pixels which were > 0.5 were set to 1, else they were set to 0. Below are some output examples from the trained model, on the test set.
+
+
+
+
+
+
+
+
+
+_Figure 7: Input image / Ground Truth mask / Model-generated mask_
+
+## Additions and Changes
+The architecture described above gives an overview of the design of the model.
+During development, it was found that making slight tweaks to the architecture resulted in better performance. These changes were:
+- `UpSampling2D` layers used the `interpolation='bilinear'` parameter as opposed to the default `interpolation='nearest'`
+
+## Usage
+To run this network, ensure you have the appropriate Dependencies installed.
+
+Download the ISIC's 2018 dataset and place the training images and segmentation masks in two separate folders in the directory where the `model.py` and `driver.py` are located, named as so:
+- Training images: ISIC2018_Task1-2_Training_Input_x2
+- Segmentation masks: ISIC2018_Task1_Training_GroundTruth_x2
+
+Open up a commandline and navigate to the directory where `driver.py` is saved, and run it:
+
+`python driver.py`
+
+To ensure the data is loaded correctly, the Training Input from _Figure 1_ should appear on-screen, followed by its corresponding mask from the Training GroundTruth.
+
+You may change the amount of epochs that the network runs for and the `Adam` learning rate by changing the variables at the top of `driver.py`
+
+- `EPOCHS` denotes the total amount of epochs.
+- `OPT_LEARNING_RATE` denotes the `Adam` learning rate.
+
+Once the network is finished,
+1. It will generate `Loss` and `Dice Coefficient` graphs as shown in _Figure 3_ and _Figure 4_ above.
+2. It will then proceed to evaluate the test set, and some performance metrics will be output to the screen, as shown in _Figure 5_ above.
+3. A histogram of the Test Set's DSC distribution throughout evaluation will be generated, as shown in _Figure 6_ above.
+4. 20 images of the Original Image / Ground Truth Mask / Model-generated Mask will be generated, as shown in _Figure 7_ above. (_Note: you may change the amount of images output using the `local_batch` variable in the `generatePredictions` method in `driver.py`_)
+
+
+
+## Dependencies
+- Python 3.9.6
+- Tensorflow 2.6.0
+- Matplotlib 3.4.2
+- Numpy 1.19.5
+- Tensorflow Addons 0.14.0
+
+## References
+[1]: Isensee, F., Kickingereder, P., Wick, W., Bendszus, M., Maier-Hein, K.H, "Brain Tumor Segmentation and Radiomics Survival Prediction: Contribution to the BRATS 2017 Challenge". _arXiv: Computer Vision and Pattern Recognition_, 2018.
+
+[2]: Ronneberger, O., Fischer, P., Brox, T., "U-net: Convolutional networks for biomedical image segmentation,". _International Conference on Medical Image Computing and Computer-Assisted Intervention_, 2015. (Springer, pp. 234-241).
diff --git a/recognition/2021_ISIC_Improved_UNet/driver.py b/recognition/2021_ISIC_Improved_UNet/driver.py
new file mode 100644
index 0000000000..bf19f1e39a
--- /dev/null
+++ b/recognition/2021_ISIC_Improved_UNet/driver.py
@@ -0,0 +1,349 @@
+import tensorflow as tf
+import matplotlib as mpl
+import matplotlib.pyplot as plt
+import numpy as np
+import model
+import os
+from model import *
+
+
+
+# Data loading and processing variables
+ISIC_DATA = "./ISIC2018_Task1-2_Training_Input_x2/*.jpg"
+ISIC_MASKS = "./ISIC2018_Task1_Training_GroundTruth_x2/*.png"
+
+IMAGE_HEIGHT = 192
+IMAGE_WIDTH = 256
+
+# Data managing variables
+BATCH_SIZE = 32
+DATASET_SIZE = 2594
+
+# Network variables
+OPT_LEARNING_RATE = 5e-4
+EPOCHS = 20
+
+
+def preprocessData(filenames):
+ """
+ Loads and preprocesses the images. The images must be:
+ - decoded
+ - reshaped to [IMAGE_HEIGHT, IMAGE_WIDTH] (chosen size)
+ - normalised (pixels must be between 0 and 1)
+
+ Image loading and decoding sourced from Tensorflow:
+ [https://www.tensorflow.org/api_docs/python/tf/io/read_file]
+ [12/08/2021]
+
+ @param filenames: the names of all of the image files
+
+ @return the newly processed images
+ """
+ raw_data = tf.io.read_file(filenames)
+
+ # Decode images
+ raw_image = tf.io.decode_jpeg(raw_data, channels=3)
+
+ # Resize the images
+ raw_image = tf.image.resize(raw_image, [IMAGE_HEIGHT, IMAGE_WIDTH])
+
+ # Normalise
+ raw_image = raw_image / 255.0
+
+ return raw_image
+
+
+def preprocessMasks(filenames):
+ """
+ Loads and preprocesses the masks. The masks must be:
+ - decoded and reduced to a single colour channel
+ - reshaped to [IMAGE_HEIGHT, IMAGE_WIDTH] (chosen size)
+ - normalised and thresholded (pixels must be 0 or 1)
+
+ Image loading and decoding sourced from Tensorflow:
+ [https://www.tensorflow.org/api_docs/python/tf/io/read_file]
+ [12/08/2021]
+
+ @param filenames: the names of all of the mask image files
+
+ @return the newly processed masks
+ """
+ raw_data = tf.io.read_file(filenames)
+
+ # Decode images
+ raw_image = tf.io.decode_png(raw_data, channels=1)
+
+ # Resize the images
+ raw_image = tf.image.resize(raw_image, [IMAGE_HEIGHT, IMAGE_WIDTH])
+
+ # Normalise
+ raw_image = raw_image / 255.0
+
+ # Threshold image to 0-1
+ raw_image = tf.where(raw_image > 0.5, 1.0, 0.0)
+
+ return raw_image
+
+
+def loadData():
+ """
+ Handles the loading and preprocessing of the raw data. Loads the
+ raw dataset from the path defined in ISIC_DATA and ISIC_MASKS.
+ Data is preprocessed and transformed into a tensorflow Dataset.
+
+ @return the processed (resized, normalised) raw data as a tensorflow
+ Dataset.
+ """
+ # Get the dataset contents
+ isics_data = tf.data.Dataset.list_files(ISIC_DATA, shuffle=False)
+ processedData = isics_data.map(preprocessData)
+
+ # Get the corresponding segmentation masks
+ masks_data = tf.data.Dataset.list_files(ISIC_MASKS, shuffle=False)
+ processedMasks = masks_data.map(preprocessMasks)
+
+
+ # Testing that pre-processing was successful
+ for elem in processedData.take(1):
+ plt.imshow(elem.numpy())
+ plt.show()
+
+ for elem in processedMasks.take(1):
+ plt.imshow(elem.numpy())
+ plt.show()
+
+
+ # Return the newly created dataset
+ newDataSet = tf.data.Dataset.zip((processedData, processedMasks))
+
+ return newDataSet
+
+
+def splitData(dataset):
+ """
+ Splits the dataset into the 70 / 15 / 15 split.
+
+ @param dataset: the entire dataset
+
+ @return the training, testing and validation datasets, now split 70 / 15 / 15
+ """
+
+ # Define the sizes for a 70 / 15 / 15 split
+ training_size = int(0.7 * DATASET_SIZE)
+ test_size = int(0.15 * DATASET_SIZE)
+ validation_size = test_size
+
+ # Use skip() and take() to split the data up
+ training_set = dataset.take(training_size)
+
+ # Training data is used up now
+ dataset = dataset.skip(training_size)
+
+ # Split the rest between the testing and validation
+ testing_set = dataset.take(test_size)
+ validation_set = dataset.skip(test_size)
+
+ return training_set, testing_set, validation_set
+
+
+def performBatching(train, test, validation):
+ """
+ Performs batching of the three data sets; training, testing and validation.
+ The size of the batches is defined in the variable BATCH_SIZE
+
+ @param train: the training dataset
+ @param test: the testing dataset
+ @param validation: the validation dataset
+
+ @return the original datasets passed in, now batched.
+ """
+ training_set = train.batch(BATCH_SIZE)
+ testing_set = test.batch(BATCH_SIZE)
+ validation_set = validation.batch(BATCH_SIZE)
+
+ return training_set, testing_set, validation_set
+
+def diceCoefficient(y_true, y_pred):
+ """
+ Defines the dice coefficient.
+
+ The dice coefficient is defined as:
+ 2 * (Pixel Overlap)
+ -----------------------------
+ Total pixels in both images
+
+ DSC Tensorflow implementation sourced from Medium:
+ [https://medium.com/@karan_jakhar/100-days-of-code-day-7-84e4918cb72c]
+ [25/10/2019]
+
+ @param y_true: the true output
+ @param y_pred: the output predicted by the model
+ @return the dice coefficient for the prediction, based on the true output.
+ """
+
+ y_true_f = tf.keras.backend.flatten(y_true)
+ y_pred_f = tf.keras.backend.flatten(y_pred)
+
+ # Get the pixel intersection of the two images
+ intersection = tf.keras.backend.sum(y_true_f * y_pred_f)
+
+ # DSC = (2 * intersection) / total_pixels
+ diceCoeff = (2. * intersection + 1.) / (tf.keras.backend.sum(y_true_f) + tf.keras.backend.sum(y_pred_f) + 1.)
+
+ return diceCoeff
+
+
+def diceLoss(y_true, y_pred):
+ """
+ Defines the dice coefficient loss function, ie 1 - Dice Coefficient.
+
+ @param y_true: the true output
+ @param y_pred: the output predicted by the model
+ @return the dice coefficient subtracted from one. This allows dice similarity
+ to be used as a loss function.
+ """
+ return 1 - diceCoefficient(y_true, y_pred)
+
+
+def generatePredictions(test_data, model):
+ """
+ Generates and displays predictions of the model from the test set.
+ local_batch amount of figures are displayed, which are a single row with 3 images.
+ The images are:
+ 1. The original image input to the network
+ 2. The ground truth mask for that input
+ 3. The resultant mask determined by the trained network.
+
+ @param test_data: the unbatched test data for the network
+ @param model: the network
+ """
+ local_batch = 20
+ titles = ['Input image', 'Ground Truth Mask','Resultant Mask']
+ test_data_batched = test_data.batch(local_batch)
+ test_image, test_mask = next(iter(test_data_batched))
+ mask_prediction = model.predict(test_image)
+
+ # Plot the original image, ground truth and result from the network.
+ for i in range(local_batch):
+
+ plt.figure(figsize=(10,10))
+
+ # Plot the test image
+ plt.subplot(1, 3, 1)
+ plt.imshow(test_image[i])
+ plt.title("Input Image")
+ plt.axis("off")
+
+ # Plot the test mask
+ plt.subplot(1, 3, 2)
+ plt.imshow(test_mask[i])
+ plt.title("Ground Truth Mask")
+ plt.axis("off")
+
+ # Plot the resultant mask
+ plt.subplot(1, 3, 3)
+
+ # Display 0 or 1 for classes
+ prediction = tf.where(mask_prediction[i] > 0.5, 1.0, 0.0)
+ plt.imshow(prediction)
+ plt.title("Resultant Mask")
+ plt.axis("off")
+
+ plt.show()
+
+
+def plotHistory(history):
+ """
+ Plots the value vs epoch graphs for the Dice Coefficient and Dice
+ Coefficient loss throughout training and validation.
+
+ @param history: the loss and coefficient history of the model
+ throughout training.
+ """
+ modelHistory = history.history
+
+ # Loss plots
+ plt.plot(modelHistory['loss'])
+ plt.plot(modelHistory['val_loss'])
+ plt.title('Dice Coefficient Loss')
+ plt.ylabel('Loss (%)')
+ plt.xlabel('epoch')
+ plt.legend(['training', 'validation'], loc='upper right')
+ plt.show()
+
+ # Accuracy plots
+ plt.plot(modelHistory['diceCoefficient'])
+ plt.plot(modelHistory['val_diceCoefficient'])
+ plt.title('Dice Coefficient')
+ plt.ylabel('DSC')
+ plt.xlabel('epoch')
+ plt.legend(['training', 'validation'], loc='upper left')
+ plt.show()
+
+def main():
+ # Dependencies
+ print("Tensorflow: " + tf.__version__)
+ print("Matplotlib: " + mpl.__version__)
+ print("Numpy: " + np.__version__)
+
+ # Data loading and processing
+ entire_dataset = loadData()
+ train_data, test_data, validation_data = splitData(entire_dataset)
+
+ train_data_batched, test_data_batched, validation_data_batched = performBatching(train_data, test_data, validation_data)
+
+ # Create the model
+ iunet = IUNET()
+ model = iunet.createPipeline()
+
+ # Compile the model, model.compile()
+ adamOptimizer = tf.keras.optimizers.Adam(learning_rate=OPT_LEARNING_RATE)
+ model.compile(optimizer=adamOptimizer, loss=diceLoss, metrics=[diceCoefficient])
+
+ # Train the model, model.fit()
+ history = model.fit(train_data_batched, epochs=EPOCHS, validation_data=validation_data_batched)
+
+ plotHistory(history)
+
+ # Evaluate performance on test, model.evaluate()
+ i = 0
+ lossV = []
+ coefficientV = []
+ under = 0
+ fine = 0
+ for test_image, test_mask in test_data.batch(1):
+ loss, coefficient = model.evaluate(test_image, test_mask)
+ lossV.append(loss)
+ coefficientV.append(coefficient)
+
+ if (coefficient < 0.8):
+ under += 1
+ else:
+ fine += 1
+
+ i += 1
+
+ percentageFine = ((fine / i) * 100);
+ averageDC = sum(coefficientV) / len(coefficientV)
+ print(">>> Evaluating Test Set \n Test dataset size: " + str(i))
+ print("Amount fine: " + str(fine))
+ print("Amount under 0.8: " + str(under))
+ print("Average Dice Coefficient: " + str(averageDC))
+ print("---- " + str(percentageFine) + "% of Test Set has 0.8 Dice Coefficient or above ----")
+
+ plt.hist(coefficientV)
+ plt.title("Dice Coefficients of Test Set for Total Epochs: " + str(EPOCHS))
+ plt.ylabel('Frequency')
+ plt.xlabel('Dice Coefficient')
+ plt.show()
+
+
+
+
+ # Perform predictions, model.predict()
+ generatePredictions(test_data, model)
+
+
+
+if __name__ == "__main__":
+ main()
diff --git a/recognition/2021_ISIC_Improved_UNet/images/DiceCoefficient.png b/recognition/2021_ISIC_Improved_UNet/images/DiceCoefficient.png
new file mode 100644
index 0000000000..31778e5833
Binary files /dev/null and b/recognition/2021_ISIC_Improved_UNet/images/DiceCoefficient.png differ
diff --git a/recognition/2021_ISIC_Improved_UNet/images/ExampleISIC.jpg b/recognition/2021_ISIC_Improved_UNet/images/ExampleISIC.jpg
new file mode 100644
index 0000000000..0f8e21eb2f
Binary files /dev/null and b/recognition/2021_ISIC_Improved_UNet/images/ExampleISIC.jpg differ
diff --git a/recognition/2021_ISIC_Improved_UNet/images/ExampleISIC_Segmentation.png b/recognition/2021_ISIC_Improved_UNet/images/ExampleISIC_Segmentation.png
new file mode 100644
index 0000000000..caa4c0a4df
Binary files /dev/null and b/recognition/2021_ISIC_Improved_UNet/images/ExampleISIC_Segmentation.png differ
diff --git a/recognition/2021_ISIC_Improved_UNet/images/Figure_1.png b/recognition/2021_ISIC_Improved_UNet/images/Figure_1.png
new file mode 100644
index 0000000000..68e6e1e56f
Binary files /dev/null and b/recognition/2021_ISIC_Improved_UNet/images/Figure_1.png differ
diff --git a/recognition/2021_ISIC_Improved_UNet/images/Figure_10.png b/recognition/2021_ISIC_Improved_UNet/images/Figure_10.png
new file mode 100644
index 0000000000..25416a3050
Binary files /dev/null and b/recognition/2021_ISIC_Improved_UNet/images/Figure_10.png differ
diff --git a/recognition/2021_ISIC_Improved_UNet/images/Figure_2.png b/recognition/2021_ISIC_Improved_UNet/images/Figure_2.png
new file mode 100644
index 0000000000..1ce5619e8f
Binary files /dev/null and b/recognition/2021_ISIC_Improved_UNet/images/Figure_2.png differ
diff --git a/recognition/2021_ISIC_Improved_UNet/images/Figure_20.png b/recognition/2021_ISIC_Improved_UNet/images/Figure_20.png
new file mode 100644
index 0000000000..a0bd688a04
Binary files /dev/null and b/recognition/2021_ISIC_Improved_UNet/images/Figure_20.png differ
diff --git a/recognition/2021_ISIC_Improved_UNet/images/Figure_22.png b/recognition/2021_ISIC_Improved_UNet/images/Figure_22.png
new file mode 100644
index 0000000000..cecb018faf
Binary files /dev/null and b/recognition/2021_ISIC_Improved_UNet/images/Figure_22.png differ
diff --git a/recognition/2021_ISIC_Improved_UNet/images/Figure_5.png b/recognition/2021_ISIC_Improved_UNet/images/Figure_5.png
new file mode 100644
index 0000000000..0b4d245792
Binary files /dev/null and b/recognition/2021_ISIC_Improved_UNet/images/Figure_5.png differ
diff --git a/recognition/2021_ISIC_Improved_UNet/images/Figure_6.png b/recognition/2021_ISIC_Improved_UNet/images/Figure_6.png
new file mode 100644
index 0000000000..446289cdad
Binary files /dev/null and b/recognition/2021_ISIC_Improved_UNet/images/Figure_6.png differ
diff --git a/recognition/2021_ISIC_Improved_UNet/images/ImprovedUNetArchitecture.png b/recognition/2021_ISIC_Improved_UNet/images/ImprovedUNetArchitecture.png
new file mode 100644
index 0000000000..e095163500
Binary files /dev/null and b/recognition/2021_ISIC_Improved_UNet/images/ImprovedUNetArchitecture.png differ
diff --git a/recognition/2021_ISIC_Improved_UNet/images/histogram.png b/recognition/2021_ISIC_Improved_UNet/images/histogram.png
new file mode 100644
index 0000000000..a5945521f8
Binary files /dev/null and b/recognition/2021_ISIC_Improved_UNet/images/histogram.png differ
diff --git a/recognition/2021_ISIC_Improved_UNet/images/modelMetrics.png b/recognition/2021_ISIC_Improved_UNet/images/modelMetrics.png
new file mode 100644
index 0000000000..a2ebb8bf2c
Binary files /dev/null and b/recognition/2021_ISIC_Improved_UNet/images/modelMetrics.png differ
diff --git a/recognition/2021_ISIC_Improved_UNet/model.py b/recognition/2021_ISIC_Improved_UNet/model.py
new file mode 100644
index 0000000000..4549ad2ce5
--- /dev/null
+++ b/recognition/2021_ISIC_Improved_UNet/model.py
@@ -0,0 +1,299 @@
+import tensorflow as tf
+import tensorflow_addons as tfa
+
+
+
+class IUNET(tf.keras.Model):
+ """
+ Improved UNet model
+
+ The architecture for the improved UNet is based on the paper:
+ "Brain Tumor Segmentation and Radiomics Survival Prediction:
+ Contribution to the BRATS 2017 Challenge" [1]
+ Available from: [https://arxiv.org/pdf/1802.10508v1.pdf]
+
+ """
+
+ def __init__(self):
+ super(IUNET, self).__init__()
+ self.padding = "same"
+ self.initial_output = 16
+ self.contextDropoutRate = 0.3
+ self.leakyAlpha = 1e-2
+
+
+ def contextModule(self, input, outputFilters):
+ """
+ Defines a context module in the system. From [1]:
+ "Each context module is in fact a pre-activation
+ residual block with two 3x3 convolutional layers
+ and a dropout layer (0.3) in between."
+
+
+ Pre-activation residual block sourced from:
+ 1: "Identity Mappings in Deep Residual Networks"
+ Available from: [https://arxiv.org/pdf/1603.05027.pdf]
+ 2: ResearchGate
+ [https://www.researchgate.net/figure/Architecture-of-normal-residual-block-a-and-pre-activation-residual-block-b_fig2_337691625]
+
+ - Batch normalisation was replaced with instance
+ normalisation, as mentioned in [1].
+ - ReLU activations were replaced with Leaky ReLU
+ activations, as mentioned in [1].
+
+ @param input: the input to the context module
+ @param outputFilters: the number of filters that this
+ particular context module will
+ output
+
+ @return the resultant input after being transformed by
+ the context module.
+ """
+
+ batchOutput = tfa.layers.InstanceNormalization()(input)
+ reluActivation = tf.keras.layers.LeakyReLU(alpha=self.leakyAlpha)(batchOutput)
+ convolutionOutput = tf.keras.layers.Conv2D(outputFilters, kernel_size=(3,3), padding=self.padding)(reluActivation)
+
+ afterDropout = tf.keras.layers.Dropout(self.contextDropoutRate)(convolutionOutput)
+
+ batchOutput = tfa.layers.InstanceNormalization()(afterDropout)
+ reluActivation = tf.keras.layers.LeakyReLU(alpha=self.leakyAlpha)(batchOutput)
+ convolutionOutput = tf.keras.layers.Conv2D(outputFilters, kernel_size=(3,3), padding=self.padding)(reluActivation)
+
+ return convolutionOutput
+
+
+ def summation(self, fromConvolution, fromContextModule):
+ """
+ Performs an element-wise summation of the two inputs passed
+ in.
+
+ @param fromConvolution: the first input (usually from a
+ convolutional block)
+ @param fromContextModule: the second input (usually
+ from a context module)
+
+ @return the element-wise summation of the inputs
+ """
+
+ addOutput = tf.keras.layers.Add()([fromConvolution, fromContextModule])
+
+ return addOutput
+
+
+ def performUpSampling(self, input, outputFilters):
+ """
+ Defines an Up-Sampling module in the system. From [1]:
+ "... This is achieved by first upsampling ...
+ by means of a simple upscale that repeats the
+ feature voxels twice in each spatial dimension,
+ followed by a 3x3 convolution..."
+
+ - A leaky ReLU activation was added after the convolution
+ - An Instance Normalisation was added after the activation
+
+ @param input: the input to the up-sampling module
+ @param outputFilters: the amount of filters the upsampling
+ module will output.
+
+ @return the resultant input after being transformed by the
+ up-sampling module.
+ """
+
+ # Upscale, repeating the feature voxels twice in each dimension
+ upSample = tf.keras.layers.UpSampling2D(size=(2,2), interpolation='bilinear')(input)
+
+ # 3x3 Convolution
+ convolutionOutput = tf.keras.layers.Conv2D(outputFilters, kernel_size=(3,3), padding=self.padding)(upSample)
+
+ # Leaky ReLU activation
+ reluActivation = tf.keras.layers.LeakyReLU(alpha=self.leakyAlpha)(convolutionOutput)
+
+ # Perform normalisation
+ reluActivation = tfa.layers.InstanceNormalization()(reluActivation)
+
+ return reluActivation
+
+
+
+ def performConcatenation(self, fromLower, skipConnection):
+ """
+ Performs a concatenation of the two inputs passed.
+
+ @param fromLower: the first input (usually from an up-sampling
+ module)
+ @param skipConnection: the second input (usually a skip
+ connection from earlier in the network)
+
+ @return the concatenation of the two input layers
+ """
+
+ concatenation = tf.keras.layers.Concatenate()([fromLower, skipConnection])
+
+ return concatenation
+
+
+ def localisationModule(self, input, outputFilters):
+ """
+ Defines a Localisation module in the system. From [1]:
+ " A localisation module consists of a 3x3
+ convolution followed by a 1x1 convolution
+ ... "
+
+ - A leaky ReLU activation was added after the convolutions
+ - An Instance Normalisation was added after the activation
+
+ @param input: the input to the localisation module
+ @param outputFilters: the amount of filters the
+ localisation module will output
+
+ @return the resultant input after being transformed by the
+ localisation module
+ """
+
+ # 3x3 Convolution
+ convolutionOutput = tf.keras.layers.Conv2D(outputFilters, kernel_size=(3,3), padding=self.padding)(input)
+
+ # Leaky ReLU activation
+ reluActivation = tf.keras.layers.LeakyReLU(alpha=self.leakyAlpha)(convolutionOutput)
+
+ # Perform normalisation
+ reluActivation = tfa.layers.InstanceNormalization()(reluActivation)
+
+ # 1x1 Convolution
+ convolutionOutput = tf.keras.layers.Conv2D(outputFilters, kernel_size=(1,1), padding=self.padding)(reluActivation)
+
+ # Leaky ReLU activation
+ reluActivation = tf.keras.layers.LeakyReLU(alpha=self.leakyAlpha)(convolutionOutput)
+
+ # Perform normalisation
+ reluActivation = tfa.layers.InstanceNormalization()(reluActivation)
+
+ return reluActivation
+
+
+ def performSegmentation(self, input, outputFilters):
+ """
+ Performs segmentation on the input. A segmentation layer is
+ often a 1x1 convolution with a single output filter.
+
+ @param input: the input to be segmented
+ @param outputFilters: the amount of filters to be output
+ (always 1)
+
+ @return the segmented input
+ """
+ # 1x1 Convolution
+ convolutionOutput = tf.keras.layers.Conv2D(outputFilters, kernel_size=(1,1), padding=self.padding)(input)
+
+ # Leaky ReLU activation
+ reluActivation = tf.keras.layers.LeakyReLU(alpha=self.leakyAlpha)(convolutionOutput)
+
+ return reluActivation
+
+ def createPipeline(self):
+ """
+ Creates the pipeline for the Improved UNet Architecture [1].
+ """
+ print("TFA version: " + tfa.__version__)
+
+ input = tf.keras.layers.Input(shape=(192, 256, 3))
+
+ ## Encoder
+ # Encoder, level one.
+ convolutionOutput = tf.keras.layers.Conv2D(self.initial_output, kernel_size=(3,3), padding=self.padding)(input)
+ convolutionOutput = tf.keras.layers.LeakyReLU(alpha=self.leakyAlpha)(convolutionOutput)
+ contextOutput = self.contextModule(convolutionOutput, self.initial_output)
+ sumOfOutputs = self.summation(convolutionOutput, contextOutput)
+ firstSkip = sumOfOutputs
+
+ # Encoder, level two.
+ convolutionOutput = tf.keras.layers.Conv2D(self.initial_output * 2, kernel_size=(3,3), padding=self.padding, strides=(2,2))(sumOfOutputs)
+ convolutionOutput = tf.keras.layers.LeakyReLU(alpha=self.leakyAlpha)(convolutionOutput)
+ contextOutput = self.contextModule(convolutionOutput, self.initial_output * 2)
+ sumOfOutputs = self.summation(convolutionOutput, contextOutput)
+ secondSkip = sumOfOutputs
+
+ # Encoder, level three.
+ convolutionOutput = tf.keras.layers.Conv2D(self.initial_output * 4, kernel_size=(3,3), padding=self.padding, strides=(2,2))(sumOfOutputs)
+ convolutionOutput = tf.keras.layers.LeakyReLU(alpha=self.leakyAlpha)(convolutionOutput)
+ contextOutput = self.contextModule(convolutionOutput, self.initial_output * 4)
+ sumOfOutputs = self.summation(convolutionOutput, contextOutput)
+ thirdSkip = sumOfOutputs
+
+ # Encoder, level four.
+ convolutionOutput = tf.keras.layers.Conv2D(self.initial_output * 8, kernel_size=(3,3), padding=self.padding, strides=(2,2))(sumOfOutputs)
+ convolutionOutput = tf.keras.layers.LeakyReLU(alpha=self.leakyAlpha)(convolutionOutput)
+ contextOutput = self.contextModule(convolutionOutput, self.initial_output * 8)
+ sumOfOutputs = self.summation(convolutionOutput, contextOutput)
+ fourthSkip = sumOfOutputs
+
+ ## Level 5: Bottom of network.
+ # Convolutions / Context modules as before
+ convolutionOutput = tf.keras.layers.Conv2D(self.initial_output * 16, kernel_size=(3,3), padding=self.padding, strides=(2,2))(sumOfOutputs)
+ convolutionOutput = tf.keras.layers.LeakyReLU(alpha=self.leakyAlpha)(convolutionOutput)
+ contextOutput = self.contextModule(convolutionOutput, self.initial_output * 16)
+ sumOfOutputs = self.summation(convolutionOutput, contextOutput)
+
+ # Perform upsampling
+ upSampleOutput = self.performUpSampling(sumOfOutputs, self.initial_output * 8)
+
+ # Concatenate
+ concatenated = self.performConcatenation(upSampleOutput, fourthSkip)
+
+ ### Decoder
+ ## Decoder, level four.
+ localisationOutput = self.localisationModule(concatenated, self.initial_output * 8)
+ upSampleOutput = self.performUpSampling(localisationOutput, self.initial_output * 4)
+
+ ## Decoder, level three.
+ concatenated = self.performConcatenation(upSampleOutput, thirdSkip)
+ localisationOutput = self.localisationModule(concatenated, self.initial_output * 4)
+ toSegmentLower = localisationOutput
+
+ # Perform first segmentation
+ lowerSegmented = self.performSegmentation(toSegmentLower, 1)
+
+ # Upsample as usual
+ upSampleOutput = self.performUpSampling(localisationOutput, self.initial_output * 2)
+
+ ## Decoder, level two.
+ concatenated = self.performConcatenation(upSampleOutput, secondSkip)
+ localisationOutput = self.localisationModule(concatenated, self.initial_output * 2)
+ toSegmentMiddle = localisationOutput
+
+ # Perform second segmentation
+ middleSegmented = self.performSegmentation(toSegmentMiddle, 1)
+
+ # Upsample as usual
+ upSampleOutput = self.performUpSampling(localisationOutput, self.initial_output)
+
+ ## First Skip-Add
+ # Add together the middleSegmented and lowerSegmented
+ # lowerSegmented must be up-scaled first.
+ upScaledLowerSegment = tf.keras.layers.UpSampling2D(size=(2,2), interpolation='bilinear')(lowerSegmented)
+
+ # Element-wise sum
+ firstSkipSum = self.summation(upScaledLowerSegment, middleSegmented)
+
+ ## Decoder, level one.
+ concatenated = self.performConcatenation(upSampleOutput, firstSkip)
+
+ convolutionOutput = tf.keras.layers.Conv2D(self.initial_output * 2, kernel_size=(3,3), padding=self.padding)(concatenated)
+ convolutionOutput = tf.keras.layers.LeakyReLU(alpha=self.leakyAlpha)(convolutionOutput)
+
+ # Perform segmentation
+ upperSegmented = self.performSegmentation(convolutionOutput, 1)
+
+ ## Second Skip-Add
+ # Add together the middleSegmented and upperSegmented
+ # middleSegmented must be up-scaled first
+ upScaledMiddleSegment = tf.keras.layers.UpSampling2D(size=(2,2), interpolation='bilinear')(firstSkipSum)
+ finalNode = self.summation(upScaledMiddleSegment, upperSegmented)
+
+ # Final network activation
+ networkActivation = tf.keras.layers.Activation('sigmoid')(finalNode)
+
+ model = tf.keras.Model(inputs=input, outputs=networkActivation)
+ #model.summary()
+ return model
\ No newline at end of file
diff --git a/recognition/44672139_topic_recognition/README.md b/recognition/44672139_topic_recognition/README.md
new file mode 100644
index 0000000000..015db7f694
--- /dev/null
+++ b/recognition/44672139_topic_recognition/README.md
@@ -0,0 +1,56 @@
+# Image Segmentation of ISICs dataset with Unet
+
+
+### Dependencies
+* Tensorflow-gpu 2.1
+* Matplotlib
+
+### Description
+The aim of the project is to successfully perform lesion segmentation on the ISIC dataset. Classifying each pixel either black or white, the following algorithm achieves this by using Unet. Images are resized so they are 512x512 in dimension. This particular size was picked because any smaller and completely black images would return a high dice coefficient which we don't want.
+
+The files are first extracted and then the data is split such that 80% of the dataset is used for training and 10% for both validation and test. A large percentage was used due to the fact there are only around 3K images in the dataset. Datasets for training, validation and testing are created such that it takes the tuple of all the images and masks files. The data is then shuffled and the filenames are mapped to data arrays. Masks are one-hot encoded and both images and masks are resized to 512x512. The model is then trained for 6 epochs using the dice coefficient as a metric. The Unet model was implemented following the article referenced below in References section.
+
+Below are the results of the model before training compared to the ground truth, the decimal values corresponds to the dice coefficient for each mask starting from the left, as can be seen before training it is relatively low and has high variance.
+
+
+
+
+### Training and Results
+The model is trained over 6 epochs, where a dice coefficient of 0.79-0.80 is achieved over the validation data.
+
+Train for 65 steps, validate for 9 steps
+
+Epoch 1/6
+65/65 [==============================] - 120s 2s/step - loss: 0.5389 - dice_coef: 0.6231 - accuracy: 0.7553 - val_loss: 0.4502 - val_dice_coef: 0.7188 - val_accuracy: 0.7475
+
+Epoch 2/6
+65/65 [==============================] - 87s 1s/step - loss: 0.4029 - dice_coef: 0.7321 - accuracy: 0.8077 - val_loss: 0.3928 - val_dice_coef: 0.7148 - val_accuracy: 0.7479
+
+Epoch 3/6
+65/65 [==============================] - 137s 2s/step - loss: 0.3638 - dice_coef: 0.7583 - accuracy: 0.8077 - val_loss: 0.3363 - val_dice_coef: 0.7822 - val_accuracy: 0.7479
+
+Epoch 4/6
+65/65 [==============================] - 68s 1s/step - loss: 0.3611 - dice_coef: 0.7643 - accuracy: 0.8077 - val_loss: 0.3308 - val_dice_coef: 0.7581 - val_accuracy: 0.7479
+
+Epoch 5/6
+65/65 [==============================] - 128s 2s/step - loss: 0.3421 - dice_coef: 0.7753 - accuracy: 0.8395 - val_loss: 0.3456 - val_dice_coef: 0.7562 - val_accuracy: 0.8724
+
+Epoch 6/6
+65/65 [==============================] - 97s 1s/step - loss: 0.3169 - dice_coef: 0.7933 - accuracy: 0.8823 - val_loss: 0.3091 - val_dice_coef: 0.7801 - val_accuracy: 0.9001
+
+Here below the predictions on the test data, we can see that we achieve better results than before training with some dice coefficients being in the 0.9 values.
+
+
+
+The average dice coefficient when using the model to predict the mask on all the test data was calculated and the average was around 0.8.
+
+#### Plot of the graph
+The results of the dice coefficient over 6 epochs
+
+
+
+
+#### References
+https://lmb.informatik.uni-freiburg.de/people/ronneber/u-net/
+U-Net: Convolutional Networks for Biomedical Image Segmentation :Olaf Ronneberger, Philipp Fischer, Thomas Brox
+Medical Image Computing and Computer-Assisted Intervention (MICCAI), Springer, LNCS, Vol.9351: 234--241, 2015
\ No newline at end of file
diff --git a/recognition/44672139_topic_recognition/driver.ipynb b/recognition/44672139_topic_recognition/driver.ipynb
new file mode 100644
index 0000000000..c7fbfe5728
--- /dev/null
+++ b/recognition/44672139_topic_recognition/driver.ipynb
@@ -0,0 +1,287 @@
+{
+ "cells": [
+ {
+ "cell_type": "code",
+ "execution_count": 1,
+ "metadata": {},
+ "outputs": [
+ {
+ "name": "stdout",
+ "output_type": "stream",
+ "text": [
+ "Size of training set: 2076\n",
+ "Size of validation set: 259\n",
+ "Size of test set: 259\n",
+ "Dice coefficient for images left to right\n",
+ "Dice Coefficient image 1 :0.3022004507732194\n",
+ "Dice Coefficient image 2 :0.057424931078161094\n",
+ "Dice Coefficient image 3 :0.6161304236227432\n",
+ "Dice Coefficient image 4 :0.4241622309162261\n"
+ ]
+ },
+ {
+ "data": {
+ "image/png": "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\n",
+ "text/plain": [
+ ""
+ ]
+ },
+ "metadata": {
+ "needs_background": "light"
+ },
+ "output_type": "display_data"
+ },
+ {
+ "data": {
+ "image/png": "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\n",
+ "text/plain": [
+ ""
+ ]
+ },
+ "metadata": {
+ "needs_background": "light"
+ },
+ "output_type": "display_data"
+ },
+ {
+ "data": {
+ "image/png": "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\n",
+ "text/plain": [
+ ""
+ ]
+ },
+ "metadata": {
+ "needs_background": "light"
+ },
+ "output_type": "display_data"
+ }
+ ],
+ "source": [
+ "import tensorflow as tf\n",
+ "import matplotlib.pyplot as plt\n",
+ "import numpy as np\n",
+ "import glob\n",
+ "import helper\n",
+ "\n",
+ "#Getting the filenames for the masks and images, sorting them so corresponding mask match corresponding image\n",
+ "masks = sorted(glob.glob(\"D:/ISIC2018_Task1_Training_GroundTruth_x2/*.png\"))\n",
+ "files = sorted(glob.glob(\"D:/ISIC2018_Task1-2_Training_Input_x2/*.jpg\"))\n",
+ "\n",
+ "#We split the data such that train data is 80%, validation and test data are 20%\n",
+ "train_images, train_masks, val_masks, val_images, test_masks, test_images = helper.split_data(files, masks, 0.2, 0.5)\n",
+ "\n",
+ "print('Size of training set:', len(train_images))\n",
+ "print('Size of validation set:', len(val_images))\n",
+ "print('Size of test set:', len(test_images))\n",
+ "\n",
+ "#We map the filenames and masks to data arrays and shuffle them\n",
+ "train_data = helper.shuffle_map_data(train_images, train_masks)\n",
+ "val_data = helper.shuffle_map_data(val_images, val_masks)\n",
+ "test_data = helper.shuffle_map_data(test_images, test_masks)\n",
+ " \n",
+ "model = helper.unet()\n",
+ "model.compile(optimizer='adam',\n",
+ " loss ='categorical_crossentropy',\n",
+ " metrics=[helper.dice_coef, 'accuracy'])\n",
+ "#Predictions before training our model on the validation data\n",
+ "#The dice coefficients is printed in order for each image\n",
+ "helper.predictions(val_data, model)\n",
+ " "
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": 2,
+ "metadata": {},
+ "outputs": [
+ {
+ "name": "stdout",
+ "output_type": "stream",
+ "text": [
+ "Train for 65 steps, validate for 9 steps\n",
+ "Epoch 1/6\n",
+ "65/65 [==============================] - 120s 2s/step - loss: 0.5389 - dice_coef: 0.6231 - accuracy: 0.7553 - val_loss: 0.4502 - val_dice_coef: 0.7188 - val_accuracy: 0.7475\n",
+ "Epoch 2/6\n",
+ "65/65 [==============================] - 87s 1s/step - loss: 0.4029 - dice_coef: 0.7321 - accuracy: 0.8077 - val_loss: 0.3928 - val_dice_coef: 0.7148 - val_accuracy: 0.7479\n",
+ "Epoch 3/6\n",
+ "65/65 [==============================] - 137s 2s/step - loss: 0.3638 - dice_coef: 0.7583 - accuracy: 0.8077 - val_loss: 0.3363 - val_dice_coef: 0.7822 - val_accuracy: 0.7479\n",
+ "Epoch 4/6\n",
+ "65/65 [==============================] - 68s 1s/step - loss: 0.3611 - dice_coef: 0.7643 - accuracy: 0.8077 - val_loss: 0.3308 - val_dice_coef: 0.7581 - val_accuracy: 0.7479\n",
+ "Epoch 5/6\n",
+ "65/65 [==============================] - 128s 2s/step - loss: 0.3421 - dice_coef: 0.7753 - accuracy: 0.8395 - val_loss: 0.3456 - val_dice_coef: 0.7562 - val_accuracy: 0.8724\n",
+ "Epoch 6/6\n",
+ "65/65 [==============================] - 97s 1s/step - loss: 0.3169 - dice_coef: 0.7933 - accuracy: 0.8823 - val_loss: 0.3091 - val_dice_coef: 0.7801 - val_accuracy: 0.9001\n"
+ ]
+ }
+ ],
+ "source": [
+ "history = model.fit(train_data.batch(32), epochs = 6, validation_data = val_data.batch(32))"
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": 3,
+ "metadata": {},
+ "outputs": [
+ {
+ "name": "stdout",
+ "output_type": "stream",
+ "text": [
+ "Dice coefficient for images left to right\n",
+ "Dice Coefficient image 1 :0.1473380551548944\n",
+ "Dice Coefficient image 2 :0.9651427727894125\n",
+ "Dice Coefficient image 3 :0.8274132975263832\n",
+ "Dice Coefficient image 4 :0.732081946398545\n",
+ "Dice Coefficient image 5 :0.7173747817056261\n",
+ "Dice Coefficient image 6 :0.9800531523090612\n",
+ "Dice Coefficient image 7 :0.8014727575260506\n",
+ "Dice Coefficient image 8 :0.8584086478823321\n",
+ "Dice Coefficient image 9 :0.9776922987440527\n",
+ "Dice Coefficient image 10 :0.822964615514953\n"
+ ]
+ },
+ {
+ "data": {
+ "image/png": "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\n",
+ "text/plain": [
+ ""
+ ]
+ },
+ "metadata": {
+ "needs_background": "light"
+ },
+ "output_type": "display_data"
+ },
+ {
+ "data": {
+ "image/png": "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\n",
+ "text/plain": [
+ ""
+ ]
+ },
+ "metadata": {
+ "needs_background": "light"
+ },
+ "output_type": "display_data"
+ },
+ {
+ "data": {
+ "image/png": "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\n",
+ "text/plain": [
+ ""
+ ]
+ },
+ "metadata": {
+ "needs_background": "light"
+ },
+ "output_type": "display_data"
+ }
+ ],
+ "source": [
+ "#Predictions on the test data\n",
+ "helper.predictions(test_data, model, 10)"
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": 4,
+ "metadata": {},
+ "outputs": [
+ {
+ "data": {
+ "image/png": "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cPjhh1NUVLTH+zv66KMZMGAAw4cPp0ePHvz5z3+usM55551Hjx49OPDAAxk0aBCPPvoozZs358knn+T6669n0KBBDB48mDfffHOP46kr6j4qIknVp+6jUjPqPioiIjWiRCAiEnNKBCIiMadEICISc0oEIiIxp0QgIhJzSgQiUi+NGDGCl19+ucy8u+66i0suuaTKbYq7l5944ols3Lixwjq33HILd955Z5XHnjFjBkuWLCmZvummm5g1a1YNok9uzpw5tG/fniFDhtC3b1+OPPJInn/++ZLlkydPZurUqXt8nJrSEBMiUi+NHz+e6dOnM2rUqJJ506dP54477khp+xdeeGG3jz1jxgxGjx7NAQccAMB//dd/7fa+yjviiCNKCv+FCxcyZswYWrZsyciRI7noootq7Tg1oRqBiNRLp59+Os8//3zJw2Fyc3P59NNP+e53v8vFF1/MsGHD6N+/PzfffHPS7XNycvjyyy8BmDRpEn379uV73/teyVDVAH/5y184+OCDGTRoEN///vfZvn07b775Js899xzXXnstgwcP5sMPP2TChAk8+eSTAMyePZshQ4YwcOBAzj333JL4cnJyuPnmmxk6dCgDBw5k2bJl1X7GwYMHc9NNN3HvvfcCZWsrK1eu5Hvf+x6DBg1i6NChfPjhhwDccccdHHzwwRx44IGVfvaaUo1ARKqViVGo99prL4YPH85LL73EqaeeyvTp0xk3bhxmxqRJk+jUqRNFRUWMHDmS9957jwMPPDDpfubNm8f06dNZsGABhYWFDB06lIMOOgiA0047jfPPPx+AX/7yl/z1r3/l8ssv55RTTmH06NEVnkqWn5/PhAkTmD17Nn369OGss87iT3/6E1dddRUAnTt3Zv78+fzxj3/kzjvv5IEHHqj2exg6dGjSWs6PfvQjJk6cyNixY8nPz+frr79m5syZrFixgrfffht355RTTuG1117jyCOPrPY4VVGNQETqreLmIQjNQuPHjwfg73//O0OHDmXIkCEsXry4THt+ea+//jpjx46lVatWtGvXjlNOOaVk2aJFizjiiCMYOHAg06ZNq3aguOXLl9OrVy/69OkDwNlnn81rr71Wsvy0004D4KCDDiI3Nzelz5hsmJ8tW7awZs0axo4dC0B2djatWrVi5syZzJw5kyFDhjB06FCWLVvGihUrUjpOVVQjEJFq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\n",
+ "text/plain": [
+ ""
+ ]
+ },
+ "metadata": {
+ "needs_background": "light"
+ },
+ "output_type": "display_data"
+ }
+ ],
+ "source": [
+ "train_coef = history.history['dice_coef']\n",
+ "val_coef = history.history['val_dice_coef']\n",
+ "\n",
+ "\n",
+ "epochs = range(6)\n",
+ "\n",
+ "plt.figure()\n",
+ "plt.plot(epochs, train_coef, 'r', label='Train Dice')\n",
+ "plt.plot(epochs, val_coef, 'b', label='Validation Dice')\n",
+ "plt.title('Train vs Validation Dice')\n",
+ "plt.xlabel('Epoch')\n",
+ "plt.ylabel('Dice Accuracy')\n",
+ "plt.ylim([0.5, 1])\n",
+ "plt.legend()\n",
+ "plt.show()"
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": 5,
+ "metadata": {},
+ "outputs": [
+ {
+ "name": "stdout",
+ "output_type": "stream",
+ "text": [
+ "9/9 [==============================] - 2s 211ms/step - loss: 0.3530 - dice_coef: 0.7590 - accuracy: 0.8926\n"
+ ]
+ }
+ ],
+ "source": [
+ "#Testing our model against Test set\n",
+ "results = model.evaluate(test_data.batch(32))"
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": 7,
+ "metadata": {},
+ "outputs": [
+ {
+ "name": "stdout",
+ "output_type": "stream",
+ "text": [
+ "0.804764514561205\n"
+ ]
+ }
+ ],
+ "source": [
+ "#We find the average dice coefficient for all the images in test data set using\n",
+ "#our model prediction\n",
+ "helper.average_dice(test_data, model)"
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": null,
+ "metadata": {},
+ "outputs": [],
+ "source": []
+ }
+ ],
+ "metadata": {
+ "kernelspec": {
+ "display_name": "Python 3",
+ "language": "python",
+ "name": "python3"
+ },
+ "language_info": {
+ "codemirror_mode": {
+ "name": "ipython",
+ "version": 3
+ },
+ "file_extension": ".py",
+ "mimetype": "text/x-python",
+ "name": "python",
+ "nbconvert_exporter": "python",
+ "pygments_lexer": "ipython3",
+ "version": "3.7.9"
+ }
+ },
+ "nbformat": 4,
+ "nbformat_minor": 4
+}
diff --git a/recognition/44672139_topic_recognition/helper.py b/recognition/44672139_topic_recognition/helper.py
new file mode 100644
index 0000000000..749849e8dd
--- /dev/null
+++ b/recognition/44672139_topic_recognition/helper.py
@@ -0,0 +1,152 @@
+import tensorflow as tf
+import matplotlib.pyplot as plt
+import numpy as np
+import glob
+
+
+def shuffle_map_data(images, masks):
+ data = tf.data.Dataset.from_tensor_slices((images, masks))
+ #shuffling data
+ data = data.shuffle(len(images))
+ #we apply transformation to our dataset
+ data = data.map(map_fn)
+ return data
+
+def split_data(files, masks, ratio1, ratio2):
+ num_images = len(masks)
+
+ #The number of images in our validation and test set
+ val_test_size = int(num_images*ratio1)
+
+ #array of files that contains the validation and test images
+ val_test_images = files[:val_test_size]
+ #array of files for the training images
+ train_images = files[val_test_size:]
+ #array of files that contains the validation and test maks
+ val_test_masks = masks[:val_test_size]
+ #array of files for the masks images
+ train_masks = masks[val_test_size:]
+
+ #The number that will split validation and test
+ split = int(len(val_test_masks)*ratio2)
+ #perform same as above except on the smaller validation and test
+ val_masks = val_test_masks[split:]
+ val_images = val_test_images[split:]
+ test_masks = val_test_masks[:split]
+ test_images = val_test_images[:split]
+ return train_images, train_masks, val_masks, val_images, test_masks, test_images
+
+#Converting image and mask files to data ararys
+def map_fn(image_fp, mask_fp):
+ #reading data from file and decoding
+ image = tf.io.read_file(image_fp)
+ image = tf.image.decode_jpeg(image, channels=3)
+ #rezising all the images to (512, 512)
+ image = tf.image.resize(image, (512, 512))
+ image = tf.cast(image, tf.float32) /255.0
+
+ #reading data from file and decoding
+ mask = tf.io.read_file(mask_fp)
+ mask = tf.image.decode_png(mask, channels=1)
+ #rezising all the masks to (512, 512)
+ mask = tf.image.resize(mask, (512, 512))
+ #one hot encoding
+ mask = mask == [0, 255]
+ mask = tf.cast(mask, tf.uint8)
+ return image, mask
+
+#metrics used for model, smooth is used so we don't have a value of 0 for overlap
+def dice_coef(true, pred, smooth=1):
+ #true mask
+ true1 = tf.keras.backend.flatten(true)
+ #prediction mask
+ pred1 = tf.keras.backend.flatten(pred)
+ #Pixels that overlap and are equal in both images
+ overlap = tf.keras.backend.sum(true1 * pred1)+smooth
+ #Total number of pixels in the image
+ totalPixels = (tf.keras.backend.sum(true1) + tf.keras.backend.sum(pred1))+smooth
+ return (2 * overlap) / totalPixels
+
+def convolution(inputs, filters):
+ c1 = tf.keras.layers.Conv2D(filters, (3, 3), padding='same', activation='relu')(inputs)
+ return tf.keras.layers.Conv2D(filters, (3, 3), padding='same', activation='relu')(c1)
+
+def unet():
+ inputs = tf.keras.layers.Input(shape=(512, 512, 3))
+
+
+ #Contraction path
+ c1 = convolution(inputs, 4)
+
+
+ c2 = tf.keras.layers.MaxPooling2D()(c1)
+ c2 = convolution(c2, 8)
+
+ c3 = tf.keras.layers.MaxPooling2D()(c2)
+ c3 = convolution(c3, 16)
+
+ c4 = tf.keras.layers.MaxPooling2D()(c3)
+ c4 = convolution(c4, 32)
+
+ c5 = tf.keras.layers.MaxPooling2D()(c4)
+ c5 = convolution(c5, 64)
+
+ #Expanding path
+ c6 = tf.keras.layers.Conv2DTranspose(32, (2, 2), strides =(2, 2), padding='same')(c5)
+ c6 = tf.keras.layers.concatenate([c6, c4])
+ c6 = convolution(c6, 32)
+
+ c7 = tf.keras.layers.Conv2DTranspose(16, (2, 2), strides =(2, 2),padding='same')(c6)
+ c7 = tf.keras.layers.concatenate([c7, c3])
+ c7 = convolution(c7, 16)
+
+ c8 = tf.keras.layers.Conv2DTranspose(8, (2, 2), strides =(2, 2),padding='same')(c7)
+ c8 = tf.keras.layers.concatenate([c8, c2])
+ c8 = convolution(c8, 8)
+
+ c9 = tf.keras.layers.Conv2DTranspose(4, (2, 2), strides =(2, 2),padding='same')(c8)
+ c9 = tf.keras.layers.concatenate([c9, c1])
+ c9 = convolution(c9, 4)
+
+ #we use sigmoid because only black and white pixels
+ outputs = tf.keras.layers.Conv2D(2, (1,1), activation='sigmoid')(c9)
+
+ return tf.keras.Model(inputs=inputs, outputs=outputs)
+
+def predictions(data, model, num=4):
+ image_batch, mask_batch = next(iter(data.batch(num)))
+
+ #input images
+ plt.figure(figsize =(11, 11))
+ for i in range(num):
+ plt.subplot(2, num, i+1)
+ #plot real images
+ plt.imshow(image_batch[i])
+ plt.axis('off')
+ #prediction using our model
+ predict = model.predict(image_batch)
+ plt.figure(figsize = (11, 11))
+ for i in range(num):
+ plt.subplot(2, num, i+1)
+ #plotting true mask
+ plt.imshow(tf.argmax(mask_batch[i], axis=-1), cmap = 'gray')
+ plt.axis('off')
+ plt.figure(figsize = (11, 11))
+ for i in range(num):
+ plt.subplot(2, num, i+1)
+ #plotting prediction mask
+ plt.imshow(tf.argmax(predict[i], axis=-1), cmap = 'gray')
+ plt.axis('off')
+ print("Dice coefficient for images left to right")
+ for i in range(num):
+ text = "Dice Coefficient image {num} :{dice}"
+ print(text.format(num = i+1, dice = dice_coef(tf.argmax(mask_batch[i], axis=-1), tf.argmax(predict[i], axis=-1)).numpy()))
+def average_dice(data, model):
+ image_batch, mask_batch = next(iter(data.batch(259)))
+ #Prediction on all the images in the test set
+ predict = model.predict(image_batch)
+ sum = 0
+ for i in range(259):
+ sum = sum + dice_coef(tf.argmax(mask_batch[i], axis=-1), tf.argmax(predict[i], axis=-1)).numpy()
+ #average of the dice coefficients over the test set
+ print(sum/259)
\ No newline at end of file
diff --git a/recognition/44672139_topic_recognition/resources/beforetrain.png b/recognition/44672139_topic_recognition/resources/beforetrain.png
new file mode 100644
index 0000000000..adf7b38229
Binary files /dev/null and b/recognition/44672139_topic_recognition/resources/beforetrain.png differ
diff --git a/recognition/44672139_topic_recognition/resources/plot.png b/recognition/44672139_topic_recognition/resources/plot.png
new file mode 100644
index 0000000000..0b148cbdb5
Binary files /dev/null and b/recognition/44672139_topic_recognition/resources/plot.png differ
diff --git a/recognition/44672139_topic_recognition/resources/predictions.png b/recognition/44672139_topic_recognition/resources/predictions.png
new file mode 100644
index 0000000000..81a94b3d33
Binary files /dev/null and b/recognition/44672139_topic_recognition/resources/predictions.png differ
diff --git a/recognition/44776859_StyleGAN/.gitignore b/recognition/44776859_StyleGAN/.gitignore
new file mode 100644
index 0000000000..943e8d14d3
--- /dev/null
+++ b/recognition/44776859_StyleGAN/.gitignore
@@ -0,0 +1,329 @@
+# Created by https://www.toptal.com/developers/gitignore/api/windows,intellij+all,python,jupyternotebooks,pycharm+all
+# Edit at https://www.toptal.com/developers/gitignore?templates=windows,intellij+all,python,jupyternotebooks,pycharm+all
+
+### Intellij+all ###
+# Covers JetBrains IDEs: IntelliJ, RubyMine, PhpStorm, AppCode, PyCharm, CLion, Android Studio, WebStorm and Rider
+# Reference: https://intellij-support.jetbrains.com/hc/en-us/articles/206544839
+
+# User-specific stuff
+.idea/**/workspace.xml
+.idea/**/tasks.xml
+.idea/**/usage.statistics.xml
+.idea/**/dictionaries
+.idea/**/shelf
+
+# Generated files
+.idea/**/contentModel.xml
+
+# Sensitive or high-churn files
+.idea/**/dataSources/
+.idea/**/dataSources.ids
+.idea/**/dataSources.local.xml
+.idea/**/sqlDataSources.xml
+.idea/**/dynamic.xml
+.idea/**/uiDesigner.xml
+.idea/**/dbnavigator.xml
+
+# Gradle
+.idea/**/gradle.xml
+.idea/**/libraries
+
+# Gradle and Maven with auto-import
+# When using Gradle or Maven with auto-import, you should exclude module files,
+# since they will be recreated, and may cause churn. Uncomment if using
+# auto-import.
+# .idea/artifacts
+# .idea/compiler.xml
+# .idea/jarRepositories.xml
+# .idea/modules.xml
+# .idea/*.iml
+# .idea/modules
+# *.iml
+# *.ipr
+
+# CMake
+cmake-build-*/
+
+# Mongo Explorer plugin
+.idea/**/mongoSettings.xml
+
+# File-based project format
+*.iws
+
+# IntelliJ
+out/
+
+# mpeltonen/sbt-idea plugin
+.idea_modules/
+
+# JIRA plugin
+atlassian-ide-plugin.xml
+
+# Cursive Clojure plugin
+.idea/replstate.xml
+
+# Crashlytics plugin (for Android Studio and IntelliJ)
+com_crashlytics_export_strings.xml
+crashlytics.properties
+crashlytics-build.properties
+fabric.properties
+
+# Editor-based Rest Client
+.idea/httpRequests
+
+# Android studio 3.1+ serialized cache file
+.idea/caches/build_file_checksums.ser
+
+### Intellij+all Patch ###
+# Ignores the whole .idea folder and all .iml files
+# See https://github.com/joeblau/gitignore.io/issues/186 and https://github.com/joeblau/gitignore.io/issues/360
+
+.idea/
+
+# Reason: https://github.com/joeblau/gitignore.io/issues/186#issuecomment-249601023
+
+*.iml
+modules.xml
+.idea/misc.xml
+*.ipr
+
+# Sonarlint plugin
+.idea/sonarlint
+
+### JupyterNotebooks ###
+# gitignore template for Jupyter Notebooks
+# website: http://jupyter.org/
+
+.ipynb_checkpoints
+*/.ipynb_checkpoints/*
+
+# IPython
+profile_default/
+ipython_config.py
+
+# Remove previous ipynb_checkpoints
+# git rm -r .ipynb_checkpoints/
+
+### PyCharm+all ###
+# Covers JetBrains IDEs: IntelliJ, RubyMine, PhpStorm, AppCode, PyCharm, CLion, Android Studio, WebStorm and Rider
+# Reference: https://intellij-support.jetbrains.com/hc/en-us/articles/206544839
+
+# User-specific stuff
+
+# Generated files
+
+# Sensitive or high-churn files
+
+# Gradle
+
+# Gradle and Maven with auto-import
+# When using Gradle or Maven with auto-import, you should exclude module files,
+# since they will be recreated, and may cause churn. Uncomment if using
+# auto-import.
+# .idea/artifacts
+# .idea/compiler.xml
+# .idea/jarRepositories.xml
+# .idea/modules.xml
+# .idea/*.iml
+# .idea/modules
+# *.iml
+# *.ipr
+
+# CMake
+
+# Mongo Explorer plugin
+
+# File-based project format
+
+# IntelliJ
+
+# mpeltonen/sbt-idea plugin
+
+# JIRA plugin
+
+# Cursive Clojure plugin
+
+# Crashlytics plugin (for Android Studio and IntelliJ)
+
+# Editor-based Rest Client
+
+# Android studio 3.1+ serialized cache file
+
+### PyCharm+all Patch ###
+# Ignores the whole .idea folder and all .iml files
+# See https://github.com/joeblau/gitignore.io/issues/186 and https://github.com/joeblau/gitignore.io/issues/360
+
+
+# Reason: https://github.com/joeblau/gitignore.io/issues/186#issuecomment-249601023
+
+
+# Sonarlint plugin
+
+### Python ###
+# Byte-compiled / optimized / DLL files
+__pycache__/
+*.py[cod]
+*$py.class
+
+# C extensions
+*.so
+
+# Distribution / packaging
+.Python
+build/
+develop-eggs/
+dist/
+downloads/
+eggs/
+.eggs/
+lib/
+lib64/
+parts/
+sdist/
+var/
+wheels/
+pip-wheel-metadata/
+share/python-wheels/
+*.egg-info/
+.installed.cfg
+*.egg
+MANIFEST
+
+# PyInstaller
+# Usually these files are written by a python script from a template
+# before PyInstaller builds the exe, so as to inject date/other infos into it.
+*.manifest
+*.spec
+
+# Installer logs
+pip-log.txt
+pip-delete-this-directory.txt
+
+# Unit test / coverage reports
+htmlcov/
+.tox/
+.nox/
+.coverage
+.coverage.*
+.cache
+nosetests.xml
+coverage.xml
+*.cover
+*.py,cover
+.hypothesis/
+.pytest_cache/
+pytestdebug.log
+
+# Translations
+*.mo
+*.pot
+
+# Django stuff:
+*.log
+local_settings.py
+db.sqlite3
+db.sqlite3-journal
+
+# Flask stuff:
+instance/
+.webassets-cache
+
+# Scrapy stuff:
+.scrapy
+
+# Sphinx documentation
+docs/_build/
+doc/_build/
+
+# PyBuilder
+target/
+
+# Jupyter Notebook
+
+# IPython
+
+# pyenv
+.python-version
+
+# pipenv
+# According to pypa/pipenv#598, it is recommended to include Pipfile.lock in version control.
+# However, in case of collaboration, if having platform-specific dependencies or dependencies
+# having no cross-platform support, pipenv may install dependencies that don't work, or not
+# install all needed dependencies.
+#Pipfile.lock
+
+# PEP 582; used by e.g. github.com/David-OConnor/pyflow
+__pypackages__/
+
+# Celery stuff
+celerybeat-schedule
+celerybeat.pid
+
+# SageMath parsed files
+*.sage.py
+
+# Environments
+.env
+.venv
+env/
+venv/
+ENV/
+env.bak/
+venv.bak/
+pythonenv*
+
+# Spyder project settings
+.spyderproject
+.spyproject
+
+# Rope project settings
+.ropeproject
+
+# mkdocs documentation
+/site
+
+# mypy
+.mypy_cache/
+.dmypy.json
+dmypy.json
+
+# Pyre type checker
+.pyre/
+
+# pytype static type analyzer
+.pytype/
+
+# profiling klines
+.prof
+
+### Windows ###
+# Windows thumbnail cache files
+Thumbs.db
+Thumbs.db:encryptable
+ehthumbs.db
+ehthumbs_vista.db
+
+# Dump file
+*.stackdump
+
+# Folder config file
+[Dd]esktop.ini
+
+# Recycle Bin used on file shares
+$RECYCLE.BIN/
+
+# Windows Installer files
+*.cab
+*.msi
+*.msix
+*.msm
+*.msp
+
+# Windows shortcuts
+*.lnk
+
+# End of https://www.toptal.com/developers/gitignore/api/windows,intellij+all,python,jupyternotebooks,pycharm+all
+
+checkpoints/
+/output/model_checkpoints/
+/output/progress_plots/
diff --git a/recognition/44776859_StyleGAN/README.md b/recognition/44776859_StyleGAN/README.md
new file mode 100644
index 0000000000..67763d0942
--- /dev/null
+++ b/recognition/44776859_StyleGAN/README.md
@@ -0,0 +1,164 @@
+# **COMP3710 Report**
+The goal of this project was to use Tensorflow2 to implement the generative StyleGAN
+model and train it separately on the following datasets, in this order:
+1. MNIST Digits[1]
+2. CelebA Faces[2]
+3. OAI AKOA Knee MRI's[3]
+4. OASIS Brain MRI's[4]
+
+This order of datasets was chosen as it represents an increasing order of difficulty,
+and iterative improvements to the model could be made as the difficulty of the datasets increased.
+However, emphasis was placed on the OAI AKOA Knee dataset.
+
+>## **Dependencies:**
+- Python = 3.8
+- Tensorflow = 2.5
+- Tensorflow Datasets = 4.4
+- IPython = 7.22
+- Matplotlib = 3.3.4
+
+>## **Problem Description**:
+Of the available 7 tasks I chose task number 7:
+
+
+StyleGAN1[5]
+was chosen, as opposed to StyleGAN2[6]
+or StyleGAN3[7] , due to its relative simplicity and greater accessibility to beginners such as myself.
+Both the brain and knee datasets were attempted, though the OAI AKOA Knee dataset was the focus, due to the higher variance among the samples.
+
+>## **Algorithm Description**:
+The implemented StyleGAN1 model architecture is based on the structure described in the original paper:
+
+
+The main features of StyleGAN that separate it from other GAN models include:
+1. The addition of a mapping network that takes in a latent vector *z* and maps it to an intermediate latent *w*.
+The purpose of the mapping network is to disentangle the latent vector space to represent a more uniform
+distribution.
+2. Each latent *w* has a learned affine transformation *A* applied to it, wherein each feature of *w* is scaled by
+a learned weight, to give us style *y = (ys , yb )*.
+3. The output the 2D Convolution layer is passed to an Adaptive Instance Normalisation layer, which also receives
+scale *ys * and bias *yb *. Each individual scale and bias value is applied to each individual
+feature of the convolutional output, thus applying the style *y* to the normalised convolutional output.
+4. A gaussian noise input is added to each convolutional output, at the dimensionality of each block.
+The noise is scaled by a learned per-channel scaling factor _B_, before being added to the convolutional output.
+This results in greater fine stochastic detail in the final image.
+
+The original purpose of Generative Adversarial Networks is to generate unique samples that closely resemble
+the source samples but do not overlap with them, i.e. new samples in the style of the source. Through the aforementioned
+changes StyleGAN gives us finer control over image generation, allowing us to combine and manipulate styles
+in order to receive images with specific characteristics. It achieves this by using a mapping network to
+disentangle the latent vector *z*, retrieve intermediate latent vector *w* and transform it into style *y*,
+and apply these styles to each block, wherein styles applied to earlier blocks affect large scale features and
+styles applied to later blocks affect more fine-grained detail.
+
+The fully expanded synthesis network structure as used in my implementation can be seen in the appendix _a_ in
+image form, as a result of calls to the Tensorflow `plot_model()`
+function, and also in text form in [driver.ipynb](driver.ipynb) as a result of calls to `model.summary()`.
+The discriminator network can be seen in appendix _b_.
+
+>## **Data Split**:
+When training a GAN, samples of real images are passed to the discriminator along with fake images generated by
+the synthesis network. It is the job of the discriminator to identify which images are real and which are fake.
+The discriminator is trained by its losses when deciding between real and fake, and the generator is trained by
+the inverse of the discriminator's loss when deciding on the fake images.
+
+Due to this approach, there is no need for any training, testing or validation splits in this task.
+Where possible, if multiple splits were provided, they were combined into an all-encompassing training set, in
+order to give the model more data to learn from.
+
+>## **Evaluation Method**:
+The simplest method of evaluating GAN output is by visual inspection of the fake images generated by the network.
+To that end, I have visualised the generator outputs throughout training so their evolution can be inspected,
+along with the following measures:
+
+### Adversarial Balance
+We can evaluate whether the generator and discriminator are diverging by observing their relative losses.
+Ideally we want their losses to remain in the vicinity of 0.5 to 1.0, and if one exceeds these values in either
+direction, then we can say that either the generator or the discriminator has become weak relative to the other.
+If this trend continues, and the losses continue to diverge, then the adversaries will stop being able to learn
+anything from each other in subsequent iterations. To show this, I have introduced a measure called
+Adversarial Balance, that comprises a weighted moving average between the losses of the generator and
+discriminator.
+
+We want to see this balance remain in the center, and not move too far up or down.
+This can be seen in action in the animated versions of the output graphs.
+The implementation can be found in `_update_avg_losses()` in [model.py](model.py).
+
+### Generator Variance
+Another measure I have implemented here is the variance among the generated samples.
+First, a measure of the variance in the source data is obtained. Then during training the variance among the
+generated samples is obtained. This variance is then converted to a fraction of the variance in the source
+dataset, giving us our generator variance percentage.
+
+
+Ideally we want our generator's variance to remain close to 100% of the dataset variance throughout training.
+
+
+If our variance drops too low, it is a very strong indicator that the model has undergone mode collapse,
+and further training will not improve it.
+
+Live examples of these can be seen in the animated graphs, below. The implementation can be found in
+`_calculate_variance()` in [model.py](model.py).
+
+>## **Output and Performance**:
+### MNIST Digits Output
+[](https://www.youtube.com/watch?v=3I84iE2FjPg)
+[Click here to view the animated version of this graph.](https://www.youtube.com/watch?v=3I84iE2FjPg)
+
+Excellent results were achieved for MNIST Digits, with good balance and variance maintained throughout training.
+
+### CelebA Faces Output
+[](https://www.youtube.com/watch?v=zU0e2sPdgKU)
+[Click here to view the animated version of this graph.](https://www.youtube.com/watch?v=zU0e2sPdgKU)
+
+Excellent results were also achieved for the CelebA dataset, though due to time constraints only
+5 epochs were trained. Good variance and balance were maintained throughout, which demonstrates that
+further training would have continued to improve the output.
+
+### OAI AKOA Knee MRI Output
+[](https://www.youtube.com/watch?v=RTc3cfCKPXE)
+[Click here to view the animated version of this graph.](https://www.youtube.com/watch?v=RTc3cfCKPXE)
+
+Good results were achieved with the OAI Knee dataset. However, while balance and variance were maintained,
+it appears that convergence was reached as early as epoch 20, with further epochs only continuing to reduce
+the gap between generator and discriminator loss. Due to this, further training may not improve results,
+as there is not much more that the adversaries can learn from each other.
+
+### OASIS Brain MRI Output
+[](https://www.youtube.com/watch?v=ORD4px9rJyE)
+[Click here to view the animated version of this graph.](https://www.youtube.com/watch?v=ORD4px9rJyE)
+
+Mediocre results were achieved with the OASIS Brains dataset. While high variance and good balance were maintained
+for 20 epochs, after epoch 20 the adversaries start to diverge. This resulted in a weakening of the generator over time,
+and eventual mode collapse, with the generator variance going as low as ~13% towards the end. We can visually confirm
+mode collapse, as all generated samples begin to look the same when the variance drops.
+
+The implementation of this graph layout can be found in `_plot_gan_progress()` in [model.py](model.py).
+
+>## **Appendix**:
+#### a) Generator Model Architecture
+
+
+#### b) Discriminator Model Architecture
+
+
+>## **References**:
+[1]: http://yann.lecun.com/exdb/mnist/
+[2]: https://mmlab.ie.cuhk.edu.hk/projects/CelebA.html
+[3]: https://nda.nih.gov/oai
+[4]: https://www.oasis-brains.org/
+[5]: https://arxiv.org/abs/1812.04948
+[6]: https://arxiv.org/abs/1912.04958
+[7]: https://arxiv.org/abs/2106.12423
+
+- StyleGAN1 Paper: https://arxiv.org/abs/1812.04948
+- StyleGAN2 Paper: https://arxiv.org/abs/1912.04958
+- StyleGAN3 Paper: https://arxiv.org/abs/2106.12423
+- MNIST Digits dataset: http://yann.lecun.com/exdb/mnist/
+- CelebA Faces dataset: https://mmlab.ie.cuhk.edu.hk/projects/CelebA.html
+- OAI MRI dataset: https://nda.nih.gov/oai
+- OASIS Brain MRI dataset: https://www.oasis-brains.org/
+- Introduction to StyleGAN: https://machinelearningmastery.com/introduction-to-style-generative-adversarial-network-stylegan/
+- StyleGAN - A Style-Based Generator Architecture for Generative Adversarial Networks: https://www.section.io/engineering-education/stylegan-a-style-based-generator-architecture-for-gans/
+- AI generated faces - StyleGAN explained: https://www.youtube.com/watch?v=4LNO8nLxF4Y
+- StyleGan | Lecture 71 (Part 1) | Applied Deep Learning: https://www.youtube.com/watch?v=hfFAUFsglLc
\ No newline at end of file
diff --git a/recognition/44776859_StyleGAN/driver.ipynb b/recognition/44776859_StyleGAN/driver.ipynb
new file mode 100644
index 0000000000..714ec5f260
--- /dev/null
+++ b/recognition/44776859_StyleGAN/driver.ipynb
@@ -0,0 +1,1005 @@
+{
+ "cells": [
+ {
+ "cell_type": "markdown",
+ "source": [
+ "# Driver Script\n",
+ "- Ensure all dependencies listed in the [README](README.md) are installed.\n",
+ "- Update all `dataset_paths` to your local copy of each dataset (excluding MNIST, which uses tfds).\n",
+ "- Change all `batch_sizes` to what your hardware can accommodate.\n",
+ "- Change all target image dimensions to what your hardware can accept (ensuring not to exceed input dimensions)."
+ ],
+ "metadata": {
+ "collapsed": false,
+ "pycharm": {
+ "name": "#%% md\n"
+ }
+ }
+ },
+ {
+ "cell_type": "code",
+ "execution_count": 1,
+ "metadata": {
+ "collapsed": true,
+ "pycharm": {
+ "name": "#%%\n"
+ }
+ },
+ "outputs": [
+ {
+ "name": "stdout",
+ "output_type": "stream",
+ "text": [
+ "\n",
+ "Tensorflow version: 2.5.0\n",
+ "Tensorflow CUDA is available.\n",
+ "Tensorflow set GPU memory growth to True.\n",
+ "Tensorflow is executing eagerly.\n"
+ ]
+ }
+ ],
+ "source": [
+ "import model"
+ ]
+ },
+ {
+ "cell_type": "markdown",
+ "source": [
+ "# MNIST Digits\n",
+ "Dataset is downloaded automatically using tensorflow_datasets (tfds) library."
+ ],
+ "metadata": {
+ "collapsed": false,
+ "pycharm": {
+ "name": "#%% md\n"
+ }
+ }
+ },
+ {
+ "cell_type": "code",
+ "execution_count": 2,
+ "outputs": [
+ {
+ "name": "stdout",
+ "output_type": "stream",
+ "text": [
+ "MNIST Digits dataset loaded.\n",
+ "Sample from dataset:\n"
+ ]
+ },
+ {
+ "data": {
+ "text/plain": "",
+ "image/png": "iVBORw0KGgoAAAANSUhEUgAAARgAAAEYCAYAAACHjumMAAAAOXRFWHRTb2Z0d2FyZQBNYXRwbG90bGliIHZlcnNpb24zLjMuNCwgaHR0cHM6Ly9tYXRwbG90bGliLm9yZy8QVMy6AAAACXBIWXMAAAsTAAALEwEAmpwYAAAG50lEQVR4nO3dv2uU2xbH4YmIRqxEQxBFMLGxEBt//AWChaiNaKVYKIiFyKQxIiKxstXGRjttU1hIUBAFCWIpqfQUFsIxoEEQYpXbeZtz3ete36/JnXmeMlms94XIx11sZkbGxidWegAB61b7BYDBJTBAjMAAMQIDxAgMELP+V79c/PuvP/UewP+xsfGJf/y5EwwQIzBAjMAAMQIDxAgMECMwQIzAADECA8QIDBAjMECMwAAxAgPECAwQIzBAjMAAMQIDxAgMECMwQIzAADECA8QIDBAjMECMwAAxAgPECAwQIzBAjMAAMQIDxAgMECMwQIzAADECA8QIDBAjMECMwAAxAgPECAwQIzBAjMAAMQIDxAgMECMwQIzAADECA8QIDBAjMECMwAAxAgPECAwQIzBAjMAAMQIDxAgMECMwQIzAADECA8QIDBAjMECMwAAxAgPECAwQIzBAjMAAMQIDxAgMECMwQMz61X4B1o7t27c3Zw4ePFjadfz48dLc+fPnS3MVIyMjzZmbN2+Wds3MzPzu69BzggGCBAaIERggRmCAGIEBYgQGiBEYIEZggJiRsfGJlf/0y8W///qT70LI1NRUae7KlSvNmcplvNVSuWj3+fPn0q69e/c2Z5aWlkq7hsHY+MQ//twJBogRGCBGYIAYgQFiBAaIERggRmCAGIEBYgQGiPGRmatgdHS0OXPs2LHSrnv37jVntmzZUtq1fn37n8Py8nJp1/Pnz0tzb9++Lc1VVD4Oc2xsrLTr4sWLzZk7d+6Udg0zJxggRmCAGIEBYgQGiBEYIEZggBiBAWIEBohx0a7o0KFDzZl+v1/atXPnzubM4cOHS7sqPn36VJp78OBBc+bp06elXfPz86W5Ll24cKE5U/3Iz8plSNqcYIAYgQFiBAaIERggRmCAGIEBYgQGiBEYIEZggJihv8lbuaHb6/V6L168aM5s3LixtGtlZaU0VzE3N9ecmZqaKu1aWFj43ddZVbOzs82ZS5cu5V+En5xggBiBAWIEBogRGCBGYIAYgQFiBAaIERggZqAv2lW+a/nWrVulXZVLdCMjI6Vd3759a848evSotOvy5culuWGwdevW5kz1b1Sd49ecYIAYgQFiBAaIERggRmCAGIEBYgQGiBEYIEZggJiBvsl74MCB5syRI0dKuyofc1m5odvr9XqnTp1qzjx79qy0i387ffp0c6b6caXv37//3deh5wQDBAkMECMwQIzAADECA8QIDBAjMECMwAAxA33R7vr163/0eSdOnCjNvXz5Mvwmg6X6/eEV1e/frnzPNW1OMECMwAAxAgPECAwQIzBAjMAAMQIDxAgMECMwQMxA3+TdsWNHZ7sePnzYnHFDN2N6erqzXdWbvN+/f+/smcPMCQaIERggRmCAGIEBYgQGiBEYIEZggBiBAWIEBogZ6Ju8J0+ebM7s37+/tGtubu4334b/1eTkZGe73r1719ku2pxggBiBAWIEBogRGCBGYIAYgQFiBAaIERggZqAv2n38+LGTGXI2b97cnBkdHS3tWreu/f/lq1evSrvohhMMECMwQIzAADECA8QIDBAjMECMwAAxAgPECAwQM9A3eVn7zpw505zZvXt3adfS0lJzZnFxsbSLbjjBADECA8QIDBAjMECMwAAxAgPECAwQIzBAjIt2RGzbtq00d/fu3c6eefv27ebMwsJCZ8+jzQkGiBEYIEZggBiBAWIEBogRGCBGYIAYgQFiBAaIcZOXiKNHj5bmNmzY0NkzP3z40NkuuuEEA8QIDBAjMECMwAAxAgPECAwQIzBAjMAAMS7a8V/Zs2dPaW5mZqazZ964caM0Nzs729kz6YYTDBAjMECMwAAxAgPECAwQIzBAjMAAMQIDxAgMEOMmLz+Njo42Z65du1batWvXrtLcmzdvmjP3798v7WLtcYIBYgQGiBEYIEZggBiBAWIEBogRGCBGYIAYF+34qd/vN2fOnTtX2rW8vFyau3r1anPmy5cvpV2sPU4wQIzAADECA8QIDBAjMECMwAAxAgPECAwQIzBAjJu8Q2DTpk2luenp6c6e+eTJk9Lc/Px8Z89k7XGCAWIEBogRGCBGYIAYgQFiBAaIERggRmCAGBfthsDjx49Lc5Xvpn79+nVp19mzZ0tzDDYnGCBGYIAYgQFiBAaIERggRmCAGIEBYgQGiBEYIMZN3iEwOTlZmvv69Wtzpt/vl3b9+PGjNMdgc4IBYgQGiBEYIEZggBiBAWIEBogRGCBGYIAYF+2GwL59+1b7FRhSTjBAjMAAMQIDxAgMECMwQIzAADECA8QIDBAjMEDML2/yjo1P/Kn3AAaQEwwQIzBAjMAAMQIDxAgMECMwQMy/AEM1u49RSHAhAAAAAElFTkSuQmCC\n"
+ },
+ "metadata": {},
+ "output_type": "display_data"
+ },
+ {
+ "name": "stdout",
+ "output_type": "stream",
+ "text": [
+ "\n",
+ "MNIST Digits hyperparameter presets loaded.\n",
+ "Generator model constructed.\n",
+ "Discriminator model constructed.\n",
+ "\n",
+ "Model: \"discriminator\"\n",
+ "_________________________________________________________________\n",
+ "Layer (type) Output Shape Param # \n",
+ "=================================================================\n",
+ "image_in (InputLayer) [(None, 28, 28, 1)] 0 \n",
+ "_________________________________________________________________\n",
+ "convstart (Conv2D) (None, 28, 28, 32) 320 \n",
+ "_________________________________________________________________\n",
+ "conv0 (Conv2D) (None, 28, 28, 32) 9248 \n",
+ "_________________________________________________________________\n",
+ "avg_pool0 (AveragePooling2D) (None, 14, 14, 32) 0 \n",
+ "_________________________________________________________________\n",
+ "conv1 (Conv2D) (None, 14, 14, 32) 9248 \n",
+ "_________________________________________________________________\n",
+ "avg_pool1 (AveragePooling2D) (None, 7, 7, 32) 0 \n",
+ "_________________________________________________________________\n",
+ "conv_final (Conv2D) (None, 7, 7, 32) 9248 \n",
+ "_________________________________________________________________\n",
+ "flatten_conv (Flatten) (None, 1568) 0 \n",
+ "_________________________________________________________________\n",
+ "classification_out (Dense) (None, 1) 1569 \n",
+ "=================================================================\n",
+ "Total params: 29,633\n",
+ "Trainable params: 29,633\n",
+ "Non-trainable params: 0\n",
+ "_________________________________________________________________\n",
+ "\n",
+ "Model: \"generator\"\n",
+ "__________________________________________________________________________________________________\n",
+ "Layer (type) Output Shape Param # Connected to \n",
+ "==================================================================================================\n",
+ "const (InputLayer) [(None, 100)] 0 \n",
+ "__________________________________________________________________________________________________\n",
+ "const_expander (Dense) (None, 3136) 316736 const[0][0] \n",
+ "__________________________________________________________________________________________________\n",
+ "const_reshape (Reshape) (None, 7, 7, 64) 0 const_expander[0][0] \n",
+ "__________________________________________________________________________________________________\n",
+ "upscale0 (UpSampling2D) (None, 14, 14, 64) 0 const_reshape[0][0] \n",
+ "__________________________________________________________________________________________________\n",
+ "noise_in0 (InputLayer) [(None, 14, 14, 1)] 0 \n",
+ "__________________________________________________________________________________________________\n",
+ "z0 (InputLayer) [(None, 100)] 0 \n",
+ "__________________________________________________________________________________________________\n",
+ "conv0 (Conv2D) (None, 14, 14, 64) 36928 upscale0[0][0] \n",
+ "__________________________________________________________________________________________________\n",
+ "noise0 (Dense) (None, 14, 14, 64) 128 noise_in0[0][0] \n",
+ "__________________________________________________________________________________________________\n",
+ "mapping_network (Functional) (None, 64) 35584 z0[0][0] \n",
+ " z1[0][0] \n",
+ "__________________________________________________________________________________________________\n",
+ "add_noise0 (Add) (None, 14, 14, 64) 0 conv0[0][0] \n",
+ " noise0[0][0] \n",
+ "__________________________________________________________________________________________________\n",
+ "scale0 (Dense) (None, 64) 4160 mapping_network[0][0] \n",
+ "__________________________________________________________________________________________________\n",
+ "bias0 (Dense) (None, 64) 4160 mapping_network[0][0] \n",
+ "__________________________________________________________________________________________________\n",
+ "ada_in0 (AdaIN) (None, 14, 14, 64) 0 add_noise0[0][0] \n",
+ " scale0[0][0] \n",
+ " bias0[0][0] \n",
+ "__________________________________________________________________________________________________\n",
+ "leaky0 (LeakyReLU) (None, 14, 14, 64) 0 ada_in0[0][0] \n",
+ "__________________________________________________________________________________________________\n",
+ "upscale1 (UpSampling2D) (None, 28, 28, 64) 0 leaky0[0][0] \n",
+ "__________________________________________________________________________________________________\n",
+ "noise_in1 (InputLayer) [(None, 28, 28, 1)] 0 \n",
+ "__________________________________________________________________________________________________\n",
+ "z1 (InputLayer) [(None, 100)] 0 \n",
+ "__________________________________________________________________________________________________\n",
+ "conv1 (Conv2D) (None, 28, 28, 64) 36928 upscale1[0][0] \n",
+ "__________________________________________________________________________________________________\n",
+ "noise1 (Dense) (None, 28, 28, 64) 128 noise_in1[0][0] \n",
+ "__________________________________________________________________________________________________\n",
+ "add_noise1 (Add) (None, 28, 28, 64) 0 conv1[0][0] \n",
+ " noise1[0][0] \n",
+ "__________________________________________________________________________________________________\n",
+ "scale1 (Dense) (None, 64) 4160 mapping_network[1][0] \n",
+ "__________________________________________________________________________________________________\n",
+ "bias1 (Dense) (None, 64) 4160 mapping_network[1][0] \n",
+ "__________________________________________________________________________________________________\n",
+ "ada_in1 (AdaIN) (None, 28, 28, 64) 0 add_noise1[0][0] \n",
+ " scale1[0][0] \n",
+ " bias1[0][0] \n",
+ "__________________________________________________________________________________________________\n",
+ "leaky1 (LeakyReLU) (None, 28, 28, 64) 0 ada_in1[0][0] \n",
+ "__________________________________________________________________________________________________\n",
+ "image_output (Conv2D) (None, 28, 28, 1) 65 leaky1[0][0] \n",
+ "==================================================================================================\n",
+ "Total params: 443,137\n",
+ "Trainable params: 443,137\n",
+ "Non-trainable params: 0\n",
+ "__________________________________________________________________________________________________\n",
+ "\n",
+ "Model architecture plots saved to ./output/\n",
+ "\n"
+ ]
+ }
+ ],
+ "source": [
+ "gan = model.StyleGAN(dataset=None,\n",
+ " dataset_path=None,\n",
+ " dataset_name='mnist digits',\n",
+ " target_image_dims=(28, 28),\n",
+ " epochs=100,\n",
+ " batch_size=512,\n",
+ " z_length=100,\n",
+ " save_progress_plots=False,\n",
+ " show_progress_plots=True,\n",
+ " progress_plot_batch_interval=10,\n",
+ " save_model_checkpoints=False,\n",
+ " model_checkpoint_interval=20,\n",
+ " save_directory='./output',\n",
+ " print_model_summaries=True,\n",
+ " running_in_notebook=True)"
+ ],
+ "metadata": {
+ "collapsed": false,
+ "pycharm": {
+ "name": "#%%\n"
+ }
+ }
+ },
+ {
+ "cell_type": "code",
+ "execution_count": 3,
+ "outputs": [
+ {
+ "data": {
+ "text/plain": "",
+ "image/png": "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VikxMVGenh66+eab9e9/P68XXnjR5mQwLCxMPj6+mjFjpgICAjR48CBlZWUqLCxMP/20XBkZGRo6dIjuueduTZr093vm6G//+ONPNHbss9qyZau1J6agiBw2bIg6dOigxYuX6ujRI2rQoIFGjrxXqakpNr/vrF27toKCKmrOnHnKzMzUhQsX9Pjjo+Tq6qZvv/2v0tIuKCiogipVqmT4Xvfr11e9evXU4sVLdPhwjFq1aqGHH35IUn6v4ZIlS3X27Bn16dNHEyZMVGZmlt2fRdStW0e7d+8p9m2XvXr1VP/+/bR8+c/as2fv/9/SHqnMzAyb38UGBARo4MABWrp0mbKyMjVw4F169NGH9fLLr1qnKc37FhISbLg9HTlyRLNmzdagQQP18cefKCnpnLKz87clX18fPffcs4qNPakpU76Uu7uHBgzor6effkrjxr1hc3Fq4MC7tG3bNn366efW92js2PzfOk+YMNHwvapSpYpuuqmjXn31dcPpBg0aqM2bNzvsgSu4qyYoqIIGDLhThw4d1uHDhw3nuRwWi0Wurq6qXr2abr31Fv3++//sTluxYkVVr17d2qNZlqKjo9W7d285OzsXeaFw8OBBql27lmbOnKVz584pICBA4eF1rHlISIheeOF5xcXF6b///U4pKamqUaO6AgLK2yynqONMUUp6TClKWRzjJ0yYWOinTwU/UXj88VGqWLGiZs+eo+TkFPXq1VNjxz6r114bZ3ORsm3bNoqNjdX330+Xk1P+BZaCi4ojRz5g+DdcqkqVKnJ3d7c5xri6uhT67LKzsyVJoaGV7BbeYWFhiouLU6dOnXTHHbepXLlyOnr0qGbOnGXTe13AyclJ7u7uatq0iRo1aqjPP/+i0DRm7zcASo7CG0Cx+fr66t1337cpSs+ePavZs+dY/33gwAFlZGRo5Mj7NH36DMMe55ycHH300SfWE/zQ0Epq06aN9aQsOTlF3333vXV6JycnnT59Wi+88LwCAgJsenDT09P12WefKy8vTzt37pKrq6tuv/02/fjjT0pNTS207vr166lp06Z6550J1pOiqKhoBQcH6447btdnn31u+F6cOBFrvbAQFRUlX19f3X77bVq16nfl5eVp9+49Nr8T3r9/v9zc3NSlS+dChfeWLVsL9fhefGuhxWJRVFS0Jk+epObNm2n9+j+smYeHhz766GNr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f/z4cc2ePUft27dTSEglxcae1O7du9W6dSvNmzf/uruduDjHeKPtul+/cqpbt47150Rubm5q0qRxoZ8ClUZ4eLgeeuhB/fbbSv388y+G06alpVl7+bt27ar9+w8YHmO3b9+uyMgI1atXzzqihKenp2rUqK7ly382XFedOrV15swZw7uUzN5vAFweCm8ApRIdHa1bb71Fhw4dUkLCKbVv31bBwRXLZNlRUdEaMWK47rjjdh06dEiNGzdW/fr1i5zWw8NDjz76iFavXq3KlSurT587tHLlKrs9olFR0dq1K0rPPPOUfvzxJ8XGxsrDw1PVqlWVq6ur5s2bb9i2ypVDdffdI7R161bVrVtXnTrdpJkzf7AW/tHR0erWrasSEhKUmpqqbt26Obwts8Du3Xvk5OSkkSPv05o1a1S5cmX17NmjzH5fWty//eTJk2rSpLF27tyljIz8h3fFxcXr99//p0ceeUg//bRcMTExcnV1VWhoZYWEBBs+9dnT01NPPTVa69f/ofj4eLm4uKhnzx5KSkqyW3SlpqZqxYpf1afPHcrNzVVMTIxatGihpk2bFPlEX0eOHj2q2bPnaNCggapatao2b96spKRz8vLyVJ06deTn52ctsC5cuKBFi5ZoyJDBCgwM1L59+2SxWBQSEqJ69cL18cefFnu9pXnfpOJtTwUn+Dff3EWbNm1SRkamTpw4oV9++UVdu96sp54aox9/XC4PD3cNGHCnjh07ri1btjps+zPPPC3J/m+9c3NzCz0kr+DhaidOnLDelpt/C6zt74E7duwgX18fm/kHDrxLubm5OnTokNLS0lSpUiX17t1L8fEJNrfVFvVU6ho1qiswsIICAgIkSeHhdeXj46PExNPWuxrGjBmt6OhoxcbGKjc3V7Vr11bPnj2sD+q7WFhYmIKCggqNo1ygYKgue8PXXaxChQoKCwuTs7OzAgLKq1mzZmrdupXWrFlj88DES/37389p27Y/dfz4CUl56ty5s9LT061Pql68eLFefvklPf/8c/r551+UmpqiatWqKSUl5Zq/vbg4x/icnBydOnVKrVu30okTJ5SVlaVjx44rKipK+/fv//8LPPOVmpqinj17ys3NzWHRKkl9+tyhiIg+evDBh+1OU6lSJT3++CidPHlSmzZtVlhYmDVLTk62bi9hYWGqU6e2jh07Jg8PT7Vt20aNGjXU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/EoZGRm655671aBBfZ05c1bffz9de/bY3vrcqVMn9ehxqypWrKhz585r5cpVWr58ucN2XO58fn5+6t+/n+rVC5efn5/OnDmjzZu3aPHiJcrJye/BL+4xtnz58ho8eKDCw8Pl4eGhpKQkbdy4UQsWLLJOU6dObfXv3081atRQVlaWtm7dplmzZik9/e9jcN26dTRs2FCFhIToxIlYTZ8+o3gfwiVKs61fXHQXOHr0qMLDw63/rlq1qhITE23uvjp+/LjOnTunpk2bWAvvoqSmpsrFxdlufrFq1apqxIjhqlKliuLi4jVjxkzt37/fmlssFkVE9NFNN3VUuXLllJCQoKVLl9lcnLp0+5Sk8PBwPffcs3r55Vd04kSs9XOeMuVLNWrUUM2aNVNMTIzeffd9NWvWVBEREapUKUTZ2dmKj4/X7NlztW/fvmL9DQCuHgpvAJfFyanwMxkvvTV44MC7tH37Dn3yyWcKD6+riIg+SklJsfbGhoZW0lNPjVZUVLQ++eRTBQQEaMCAOxUUFKRJkz6QlH91/7nnnpWvbzktXrxYJ0/GKTi4oipWrGizrp49e2j37j2aMmWqqlatojvv7K/Tp88U68TYSKVKIcrJyVF8fLzN6ydPnlSbNq1tprv0RP3MmTPKyMhQpUohhsVsnTp15OzsrD179l7zbS1rTk5OcnJyksVi+f9bzSMUFxen48dPWKepUKGCtm/fruXLf1ZeXp4aN26kMWNG6513JujAgQNavXqNKlasqPr16+njjz+VJOvvOcPDw/X002O0Z89effXVNGVkZKhOndoqX768TeH98MMP6n//W63ly5frlltu0SOPPKTnnvu3zp49W6q/LySkkmJjbW+fzcnJUUJCgipVCrFOI0knT8bZTHfy5En5+PjI19fHsPe2adPGV+w270t5eHioceNG+uWXFVdl/ZfLzc1N99xzt376abkyMjI0dOgQPfjg/crKytbOnTu1atUq9e7dS4899oieeWas9Xf4vXr1VP/+/bR8+c/as2evatSorn79IpWZmWH4bImSzOfj46PU1FT98MMspaamKSQkWJGREfL19dV///udzbSOjrEPPDBSrq5u+vbb/yot7YKCgiqoUqVK1vlr166tZ555Wn/++Zc+/fRz+fh4a8CAO+Xt7WUtCP39/TRmzGgdOnRYn376mfz9/fXQQw/Izc3N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CZ0wYYLhvKNHjzbMp0+fbpjjxpGTk2OYG41H7Wis6hkzZhjmb731lmHepEkTw3z16tV2M29vb8N577jjDsO8SpUqhvmFCxcM8xdffNEwz83NNcyBK6FDhw6mLt/Ly8swHzhwoN3sr7/+KuPW2KpXr55hHhkZWeJlr127tsTzApAqVapkmN+otce1jh5vAAAAAABMROENAAAAAICJKLwBAAAAADARhTcAAAAAACai8AYAAAAAwEQU3gAAAAAAmIjCGwAAAAAAEzGOdxlwNB6to/xGFRQUZJj7+PiUavkZGRmGeePGjQ3zXr162c369+9vOO/EiRMNc0fjL+fl5RnmgOR4G3/mmWdMW3e7du0M86efftowj4uLM8w/++wzw/yXX34xzIFrwe23335V11+a8ewtFoth3rJlS8N8/fr1JV63I++8845pywZuBL179zbMGzRoYJhHR0eXZXNQTPR4AwAAAABgIgpvAAAAAABMROENAAAAAICJKLwBAAAAADARhTcAAAAAACai8AYAAAAAwEQU3gAAAAAAmIhxvFEqbm5udrPRo0ebuu5mzZoZ5qdOnTLMv/vuO7uZo3G6fX19DXPgevfGG28Y5q6urob5qlWrDPO33377stsEXGsWLFhgmEdERJRq+U5Oxv0ja9eutZulpKQYzuvj42OYm/09969//ctuFhsba+q6getdq1atDPPg4GDD3NF5LsxBjzcAAAAAACai8AYAAAAAwEQU3gAAAAAAmIjCGwAAAAAAE1F4AwAAAABgIgpvAAAAAABMxHBiKJU2bdrYze6///5SLXvlypWG+Z49e0q1fCMNGjQwzGNiYgzzvLy8MmwNYI5GjRrZzbp06WI474YNGwzzxx9/vERtAq4nSUlJhrmj7wKLxVKq9RsN+WX2cGDZ2dmG+fPPP2+Yf/nll2XZHKBIRkP6OfoeS0hIKOvmFNuYMWMM81deecUw//nnnw3zDz/88LLbhNKjxxsAAAAAABNReAMAAAAAYCIKbwAAAAAATEThDQAAAACAiSi8AQAAAAAwEYU3AAAAAAAmovAGAAAAAMBEjOMNQ97e3ob5W2+9VeJl5+bmGuYvvPBCiZddWmfOnDHMjxw5coVaApjnscces5u5uroazjt+/HjD/Pz58yVqE3A9WbhwoWHer18/w3zmzJmGuaen5+U2qdjOnTtnmE+aNMkw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HTqsr7/+5rL2NXvHhAED7lSLFs0VEBCg8+fPa/PmLVqwYKGys7PVsWMHRUZGSPr7GPHVV9OsyzE67haco/z888/q0+cOVahQQaNGPW5TCFssFk2cOF4//bRcv/220vp6cHCw3n77Lb322us6evRYib7vX3vtdbVq1cqmt76szkv9/f101113qXHjRnJ1dVV8fLx++GGW9uzZW6zPoji6d++uPXv2Ws+/ly5dpnr1wtW9+63WTsPk5BSbeTp37qT09HRt2bLF+j7Wrl1Lr776mo4dOy5J+u677zVp0ntq27at1qxZo0qVKmnPnr2KiTmimJgjGjx4sCpUqKCUlBT1799fGzZsUGxs4Q7MK+WGL7wzMjKUnp6uZs2aad++/TYnQwU++eRTvf76q1qzZq1WrfpdkpSZmamNGzepU6ebbArvTp06aseOHUWeLLq5uWns2Gd04MBBjR8/UdnZ2erVq6fNlZh27doqKirapug20qpVSyUmJur48eNav36DHn30Yc2bN7/Qxn7o0GFt3bpVd901QO+++14xl91Krq6u+umn5Q6nrVy5sp5+eowWLVqsr7/+Vj4+3ho8eLBGjrxXn37698lPu3Zt9euvv+k//3lH1apV1UMPPagjR45Yr4SOHHmfKlYM0pQpX+rs2bNq3Lixnnzycb3xxpvWnUiS7rrrTs2aNVsJCQlKT0+Xv7+/du7cpfnzFyorK0tt2rTWqFGP6ZVXXlNcXFyRn6EkVa9eXY899oiWLFmqDRs2qmbN/KL3woULNgfFHj26a8mSZRo37k2774GHh4f++OMPzZz5g/Ly8nTLLd00evST+ve/X7QWhlL+SevcufM1b958dep0k0aOvFf79+9TYuIZubm5afToJ7R37z599dVX8vcvryFDBhfr8yrKiROx2rlzl1q2bGktvC9Wrlw5PfLIQ5o3b762bNkqDw93hYXVsuaNGjXU44//Sz/++JOmTftaTk7OatiwgZyc/r7iWJz3RpL69o3UzJmzdOrUKY0YMVwPPfSgkpOTNX/+Ap0/n6wHHhipoUOH6MMP7V9prFAhUG3atNbHH38qd3c3Pfzww+rfv5/++9/vJDn+DN54401NnvyBvv76W23fvl15efkn+i1aNNewYUP1ww+zFBUVrUaNGmr48GE6d+68tm/fbl1/REQfzZu3QLNnz5ZRR3L79u20du06vfXW26patYruuedunTt3Tr/8ssLuPD16dNfChYu0fPnPaty4kYYNG6r9+/dbvyDz8vI0c+YPOnXqlAIDAzVs2FANGzZUU6d+ZV2Gq6ur+vS5Xf/973dKTk7WuXNJOnXqlDp06KDly/P3Y4vFog4d2tsU9Zd64IGRqlOnjmbO/EFHjx5VYGCgAgICbKa5dB+8664Bat26lb7++mudOnVaPXp015gxo/Xvf7+oc+fO6dZbb1GLFs31+edf6PTpRJUvX16VKoVIcrwdFqVz507q2zdS06fP1JEjR1S5cmXde+/dysnJtrkoaLS/jRv3pl555SW9994kHTt2zOa4GR4errS0C5o06QNJFrm5uempp0br8OEYvfHGW/L29ta9996t++67V59++pnNfJmZWXr33Xfl719eI0feq7vuGqAZM2Zq8+YtGjJksJo3b2a9Qu/p6akWLZpf1t1Ijz8+SllZWZow4V1JeRo2bKgef3yUdR8cMWK4XF1dNXHiRF24kK6QkGDrvC1btlCvXj31xRdTdPz4CZUr56uwsDBr3r9/P7Vq1VLffz9dcXHxqlUrTPfee4/S0lK1Y8dOh/Nfyt/fX2PGjNb69X/oq6++VsWKQbr33nuUl5enWbNma/PmLRo6dIgaNKivXbvyL7C6ubmpefNm+uqr/GK+YcOGeuihBzRz5g/au3efAgMDdPfdI+Ti4mJz8cvRsWj58p9VqVIleXt768sv80+qje4+udxjVnHbeb3Yu3evhg79+1kUdevW1cGDB1WvXrhiY2NlsVhUp04dzZgx09R2uLm56fnnx2r9+j/09dffKC8vTy4uLurdu5d8fX2vSOHtqPeyefPmiomJuezC22KxXJG7kszk7e2thg0bav78BTZFtz2jRz+htLQLmjz5I6Wmpqpjx/Z69tln9MILL+ncuXOSJBcXF91++236+utvlJWVpfvvH6m77x6u99//QFLpjgkZGRmaNu0bnT17VqGhobr77uHKzs7SggWLtGnTZlWuXFlNmzbR+PETJcm6fTk67kpSUFAFtW3bVp9++rlycrIL3bWXl5enjRs3qV27tjbnmO3atdWJEyes5/4l/b6/VFmdlz733FidP5+sjz/+RGfPJqlq1arWeYvzWURGRigyMsLa4VWUWrXCbN4TSdq1K0rdunWzO0+nTjfpjz82WLc7F5f8svXi9z0v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zPuHDx/uWFQcxXnnnUsgEOiWu2CwOeMt3h6Ph6NHy7jwwgvCcYpWq5WNGzdFWAmXL3+H22+/ld/97jHUanVEZr61a9cyf/5ZPb5Aeb1efvvb33Pttddw773fQq/XY7VaOXiwNJxYw+/388QTT3LhhV/jrLPmsWTJ1UiSREtLC3v37gtneT377AUcPFgaNU4zZKm+lvHjx0X9oXk8Ht55ZwW33XZLt7YTWbXqC+rq6li06CLuued/0Ov1OJ0uysqO8uyzz4cT8FRXV/O73/2exYsX8/3vfw9JkmhqaooofN8b/vGPf3L55Zdx/fXXkpycjNPppKysvEcL+Ouvv86dd97BD3/4fZxOJ5988mm3leho32FlZSV//OOLXH31lVx22aXYbDY++ODDbpkVe8M///lPbr/9Nn72s59itVp55513w/HrvcXj8fDss89x66238OijP6W+vp433niTBx+8v8exEyaM55lnniIQCOByuaipqeXdd1fwxRerY1oB2tvbGT16FBdccAEJCXosllbeffe9cJKNPXv28Ic/vMCVV17JxRcvwu12c+TIUVat6jlW53TQm+/g9dffYOnS63niiflYrVa+970fsGPHTl555VUWLVrE0qU30NJiYdmyf3fzJuktGzZsRJIkfvKTHyPLMmvXrjspxbu6uppXXnmVSy65mMWLr+bIkaP85z9vcM893+r1HOvWfclVV10ZYdWPxd/+9ncWL76am266EaPRSGtra4/yv/FGyIXyrrvuDJcTe/rpZ8JhKm63m4svXkRmZiayLHe0P4vX6+3xdxiNtWvX4vV6uPjiRVx77RK8Xi+1tbV9unaDwSCvvPIaV155OVdddSWHDh0Ox3OeiNfr5cknn+bGG5fy05/+GJ/Px44doXJiXSktLaWmpobvfe+7aDQatm3bzhtv/Deij9vtYcuWrcyaNTNc4qsvPP/8C9x00418//v/C4ReZv/97+NeSQqFgptvvomUlBTcbjf79x8IJ6xyuVxccskl3HDDdSiVSmpra3nhhT+G3ULffns5NpuNiy9exK233oLb7aaysiq8GNnT+BOxWq08/fQzXH/9dfz85z8LlxN78823IvodOnQIq9VKbm5ut3Csffv28eyzz3HFFZezaNFFBINBGhoaevVbPpE1a9ZQUlLCz372U3Q6Xbic2EAwkHIOFfx+P2Vl5SQn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Xfj9flwuF6ZpYpomt9xyM88993vefPOt3tftMXHiRB555FFSqdQJ++eGw2Huuec+zj9/Abfc8nWeeOJJfve757jiiiv4zGc+fcKR7uLiYvbs2cNzz/2eCy5YyNVXX8399z9AKpXiySefoqur69hn93+55JKLWbNmLc8//wfOPfccHn/8id5r3HTTl/ne9x6kqamZSy65mK985cvce++/A3DmmWfy7LMrWbXql4P+3ETk9KbCW0RERCTH7Ny5i1mzaolGIzQ07Ma2bY4caWHChAnMmlXLW29txuPxUFs7k+LiJb3n5efnM2HCGezYsYN58+byiU9cRl5ePpbVd3Wi2+3m29/+F55//g+9BfFg9Te1eufOndx445fYsmUr27Zt4+jRViZMmIBlWX1eo6fwBdi0aROpVKrf13r99TcA2L//AADbttUde7yPBQvOO+E50Wi0dwR6z569XHvtNb15X3HFp5g3by6maVJQUEB3d+yE16ipqeHgwYM0NTUDsH79a9xww1Ly8/MAOHLkCHv27O03bxHJPSq8RURERHLMzp27uOGGpUQiEXbtSo9u19fXM3v2LGbMmMHKlaswzXQBfM8995FMJvucX1FRznXXXcs999xHa2sr06dP56tfvan3eCKRZM+evcyfP5+33tqMbQ9+r96pU6eycePG457/4Q8fZ9q0acyePYvbb7+dZ599lvb29hNc4X3d3d0Zj8fjcQBSqVTvv9OPbSzLynhOz3mmmb7pcMEFC5kx4yweeOB7RKPdfPrTV1JdXX3CaxgGZPpIBspbRHKPNlcTERERyTG7d++msrKCBQs+0lt479pVzyc/+QnC4TBtbW1Eo93U1zdw5ZX/u/e8srIySkpKyM/3kkwm6ejowDAMLrtscZ/r23aKp59+hmg0wte+9tV+i9gPsiyLq676LOXlZfztb5v6HDNNk6qqKhobG3nxxT+zfft2Jk+eTHPzYZLJJOefv6A39oNTzU+lgoICQqEQ0Wg3Xq+XhQsX9h6LRKJ4vQW9j/fs2cPkyZMYP348ABddtIgDBw4QjargFhmrNOItIiIikmMSiQR79zZSVlZKINABwL59+ygrK+vT8urHP36KJUuuZcWK5UB6mvVPf/oMhw4d4o033uTee1fQ1tbOrl27mDlz5nGvs3LlKq655ot8/es389hjj5NIJPocLygoYPnyZZimhcuVbid23333E4lE+sSZpsmNN36JgoICbNumvb2d3/72d6RSKX7wg8dYuvR6rrrqs9i2zUsvvczGjX87qZ/XYGzYsJHzzpvPPffcjd8foKGhAbfbDcC7777LFVf8L+6++y527apn1apf8tRTP+GrX70J07QIBoM89dR/n/KcRcQ51MdbREREREREJIs01VxEREREREQki1R4i4iIiIiIiGSRCm8RERERERGRLFLhLSIiIiIiIpJFKrxFREREREREskiFt4iIiIiIiEgWqfAWERERERERyaL/D3jXmBR4bsrlAAAAAElFTkSuQmCC\n"
+ },
+ "metadata": {},
+ "output_type": "display_data"
+ },
+ {
+ "name": "stdout",
+ "output_type": "stream",
+ "text": [
+ "\n"
+ ]
+ }
+ ],
+ "source": [
+ "gan.train()"
+ ],
+ "metadata": {
+ "collapsed": false,
+ "pycharm": {
+ "name": "#%%\n"
+ }
+ }
+ },
+ {
+ "cell_type": "markdown",
+ "source": [
+ "# CelebA Faces\n",
+ "NOTE: Please update the path to your local CelebA Faces image folder."
+ ],
+ "metadata": {
+ "collapsed": false
+ }
+ },
+ {
+ "cell_type": "code",
+ "execution_count": 4,
+ "outputs": [
+ {
+ "name": "stdout",
+ "output_type": "stream",
+ "text": [
+ "Loading dataset from C:/img_align_celeba at (64, 64) resolution.\n",
+ "Found 202599 files belonging to 1 classes.\n",
+ "Sample from dataset:\n"
+ ]
+ },
+ {
+ "data": {
+ "text/plain": "",
+ "image/png": "iVBORw0KGgoAAAANSUhEUgAAARgAAAEYCAYAAACHjumMAAAAOXRFWHRTb2Z0d2FyZQBNYXRwbG90bGliIHZlcnNpb24zLjMuNCwgaHR0cHM6Ly9tYXRwbG90bGliLm9yZy8QVMy6AAAACXBIWXMAAAsTAAALEwEAmpwYAAAogUlEQVR4nO2d269WV9X/B561B0DYbDbthrKhxQ0FdjEWKCUarTaNUaOJ3uiNRk3z+sYLb97ExAvjhXkvTervDzASbdQYW208V9mlB6Rll3IoFPbuhn2AFo/U8+m9ItnjM8ezxnyeOtPkl+/nbjzPWmvONdd8Ztb4PmOMuWxoeOzfJoQQDXjVK90BIcT/v2iBEUI0QwuMEKIZWmCEEM3QAiOEaMZrur78f/f9r7NfeuklZ69cubI457e//a2zb7rpJmevWLHC2b///e+dfeONNzr7ypUrRRuveY3vNq/5m9/8xtns9/nz55196dKlog1e4+9//7uz3/zmNzv7T3/6k7P/8Ic/OPvixYtFG7z317/+9c7+17/+5ewzZ850tsHzzcz++Mc/Ovtvf/tb5znLli3r7MOf//znoo1Xv/rVndfI7Kjf/IxtEF7zda97nbNf+9rXFueMjo46m/No+fLlnfbExETn92bl+A0PDzv7TW96k7M5F8fGxpzN52lmNjs76+w1a9Y4m79J/n44DtFvjvfG57F95x3FOWZ6gxFCNEQLjBCiGVpghBDN6NRgtm3b5uwXXnjB2ZEGc/311zubPii1DPrav/71r51N3zq6Jn3MV73Kr5t/+ctfnE0f841vfGPRxqZNm5w9PT3tbGoZ9FGpuVAvMSt1HtrUOzh2hFqTmdm//+0DtbPnwe//8Y9/dH4ffUabfeAzZRtRv3gOv6fGwjavueaaog3ONeoKq1atcjY1GrJhw4bis82bNzub8533ce211zq7Ri9kv+fn5529sLDgbM7tgwcPOpsajZnZ5cuXnb19+/bimAi9wQghmqEFRgjRDC0wQohmLOvKpp56atLZv/vd75zN2A+zUt+gHsL4EfrW9JWj+Idjx445mxoL26Dfyj7RXzcrtST268EHH+zsA9t87rnnijaosVBDoTZBnYE6UKRX8d54Dsf3n//8p7MzTSaC/WAf2GaNrsO4lje84Q3OZjzJX//6184+RZ9Ri8virdjHLVu2FG2Mj487+9Zbb3V2Ns8yPcus1Pf4O6VWynk3MjLibOpAZqVWtG7dOmePb7u9OMdMbzBCiIZogRFCNEMLjBCiGVpghBDN6Ay0Y7AYExEpCJqVQW8UqSjwUXC6cOFC5/dmeRAWAwIZAEWx9LHHHivaWFxcdPb69eudTYGb16CYGgniFOw4ntH49vO9WR4ol9mZYBvBY7JzokRE9pvj2W8AZyTyZm3S5tzlfUVBcLwGn9n+/fudzURFCv9RUCgD65hEy/HdtWuXszl21113XdEG5y/b6IXeYIQQzdACI4RohhYYIUQzOjUY+oMMZooK0/AYBifRb/3FL37hbAYN7du3r2iDgUQzMzPOpg7E459//nlnM8nQrPQ577//fmfTr2WgHe+TgWJmpT/OwK5My8iC5MzyAlJZsSj65wxSjM5hP6hDcI7UFLGizWtmSZ2RBsPxZnAeg/moy/GZ8nyzXLtjETGOBXXPKAjune98p7OpYzLQjmNFXSdKzOV4UhPrhd5ghBDN0AIjhGiGFhghRDM6NZisYHQU20Ffjf/j069dvXq1s+mfR0WWsuLjPIfxPDyebZqZHT58uPOa1HWowdQUVeq3MFOUFNh1fs05GVHxIZIlSBJqFZGuk8Fz+o0hqmmXz5SxNZzL0VhNTU05m8mOHKuhoSFnZ3PCrNQQ165d23kOtVPGtES/h0gnq0FvMEKIZmiBEUI0QwuMEKIZnQ42/UPGtER5EZmvRi2CeQ+8JmNazPJ4EeojL774orPpc/J4s7IgNHWfrKARxy7SBPothp3lFUWaQtYG+8VrcKwjTSzrR6bjRNoR+5XFblAfZB8iDSwrnkXNhW1kcUnRNRiDxecxNzfnbG5cGG3gx/HlXKXmwt8c53K0uRtjfrIC6FfRG4wQohlaYIQQzdACI4RoRqdzzBwf5iZFukKWH0M/lgW66RdH//tTMzl9+rSz6ceyTgf92EjnYWxBTRHppdTEL2R5Pln9kSw/p6ZfGTXXzPrJOZBtVB8dQ7Jr1swjahdZDRpqF7zvKC6MWh5/Q9xYjdfkhn7Dw8NFG/wsy4ujxsJ5xzbNyt9p9Mwi9AYjhGiGFhghRDO0wAghmtFXHAzjSaL/wvkZa1Owjgrr52bnm5mdOHHC2fQpeU1qNvS1o03j+Rn9dcY30P9mG1EsCMeCvnBWe5jUbC6WXSOr0VuTN5TpPNlmcGbl2GT1SHh8pgOZlc8k0xU4z3h+TW3hc+fOOXtiYqKzjSNHjjj7zjvvLNpg/RbmM91www3O5rziby56HtR1anLUzPQGI4RoiBYYIUQztMAIIZqhBUYI0YxOpSYTf6ICxBScWLSYiYYMcnvkkUecHQUvMVBuenra2RR5KZwx+SsSAJlMx2PYL4qKFEOjIkw8JhNkBxF52UbWz2yjtZrAO14zKw4VjU0WSFcjFHddL2qXIi/b7HeszMo/C66//npnM9Bu27ZtzqYge+rUqaKN3bt3O5uBctkzz+7LrBwrBhD2Qm8wQohmaIERQjRDC4wQohmdGsw111zjbGoZUWGaTHtgEiH1lNHRUWdHxaAY8MdzWPSK/aSOEAVIUWPhfdHnzzYwq0kMzTZaoz+eBZdF/eA5/Ragiooq9RuMxzaia2aJnbSzQuORrpDpSwwmG0Sf4jncvC3T2RjgFmkfs7Ozzr755pudTZ1zZGTE2TUFwvi7jZ5ZhN5ghBDN0AIjhGiGFhghRDM6NRj6Yox74X/6ZqXPSP+PhZv4nz03fVpYWCjaoMbCmBX64/SNs03no2MybSKLUYna4GccO5L5vdGGWdkmZ5nOUJO0yfHO9JEsvsSs1Lgy3YbXjIqTk6xQO+8906MGSTa9fPmys1ksjRu1cbM3szLu6+jRo85ev369s3kf/I1FSZ+8VyU7CiFecbTACCGaoQVGCNGMTkeKmz4xJiX6Tz7beI0xLCwmzFwL/v9uZvahD33I2QcPHnQ286Hoz9PXjvqc+dc1Rb272jTLdQL6uZkGE8VhUJfJNlJjPxkLRduszC/jeFI3qMnTygpO8V4HiZPJYoCy+B5+H+kSmd7Ea5w5c8bZzOXbsmVL0QafIe+DOg81S/7Oo7lMfTDL/bqK3mCEEM3QAiOEaIYWGCFEMzo1mKeeesrZGzZscDZ9N7OySPfk5KSz6S9yM3AWKN65c2fRBmNrpqamnM38pkwvifxJxgKw39mmXTUaDY/J6pFkfWQhcrNSy6A+km3sNUitkJMnT3b2i/pIFAfDfmYbz2cxKpEGk2koNflk2fdZDhvhWLHodzRW27dvdzY1MWounDfsU83zqEVvMEKIZmiBEUI0QwuMEKIZfcXBML6E2oeZ2bp165y9Y8cOZz/77LPOpq5DTSCqOfPggw86++zZs8UxS8liPWpiVLL6JCTLv4mukbXBmBbWweHYm5V1lel/019nvAM1magOM58RNTJuGs82opw2xktRq6NOkNX4qdFgaGcbyJFIu+i3rjJ1HMaecVzMzFatWuVszhs+M+an8b75/MzK3wNryvRCbzBCiGZogRFCNEMLjBCiGVpghBDN6KvoNwthR8E3FJAoSlHEJUzuYqCeWSnqUjTMimXXBMFlBacIhbIsMM+sTALkMRR1KbpTQKdgHrVBkZdt8PmxT5EgS5GX84KiIceGCa9mpTidFb/OnnGNAFuzqVzXNWsC7bLvOY94TRYNNzObn5939p49e5zNhOGskFwkbrMfUeGrCL3BCCGaoQVGCNEMLTBCiGZ0ajAs/kQ/d2hoqDiHvjH97/Hx8c4O0Z8/duxYcQyvSf+QOgLJ9BSzPOiK/vogGkBWUPuWW25xNgPWbr/99s7zzcpEN2ob1CGYbEfNJroPBoNRR6N+Qv9948aNxTWp9WTJj4RzINJXMi0u+z4rdh5dI0vCzAIGo/vmb45FwFeuXOnstWvXOpsJyiwSblb+ZqJgvAi9wQghmqEFRgjRDC0wQohmdGow9IPp69VshM7YDOoI9N+feeYZZ0eJjFEC5FLoL2Ybr9UktWXxCpm/Huk+1DcYD8I4pF27djmb/nkUm8ACXnxmfMbZBmdR7BP7OTEx4WxqMFnBI7My5ofPnEXFGG+VzYEW1MwjHkPdjN/X6IuXLl1yNhOKqXFxLjMWKipcxmd8+vTp4pgIvcEIIZqhBUYI0QwtMEKIZnRqMPx/nBrB6tWri3OYr0Qfkv4hfXxuPMWNuc1K/YOFsDJfOCv6E7WRaS7ZJl1RjAr1jKxf1FOoK0R5QtRpsrgW6jjUR6KCU1k/qLtRZ9u7d29xTcZZMJ4n01SyIuFmdfOgHwbRYBg/xefB46lZmpXFuLg5G4tDrVmzxtncmC3SPfkM+Tx6oTcYIUQztMAIIZqhBUYI0YxODYZ+F2HBaLO8NgjPoT/I+IaoDfqpWV2ObAPyKEYl88/7jWeI4hfYj/Pnz3f2ixtsUROLNBjmoVCToZ0VM4/Gip/RP2du0pNPPunsBx54oLgma5jMzc05m7pbvxuz9fpsKS+3CHgNHO+sRk00Lxmfxvow1LNYk4kxLtRezcpYpuh3GaE3GCFEM7TACCGaoQVGCNGMTg2G/jn1kkijoc+Y1QM9fvy4s6lDRHkq/Kwm5qGf76NjXq7/XROHwftgDNBXvvIVZ7Nux9jYWNHGpz71KWczx4dxMYxjon8exWHwGidPnnT2gQMHnH306FFnR8+YY/PSSy85m/NskFywaDO2pVAfyXLYaur+ZvFT2X1FGhnHj21S/2Mc0rZt25wd3Qfzk6ir9UJvMEKIZmiBEUI0QwuMEKIZWmCEEM3oFHmzjdYo7pmVIhTFOV7jypUrzmZQUI3IS1EqE8oGoUWQFaE4lwmVDD6LCjEzke1LX/qSs1lsiM+PAVWRMMpiT/fdd5+zWYQ6C+YzK4XJLCguE1Oj87NnynvNns8gyZNZG9nxZmUQHMeOQn220Rr/CDAzGx4ednYk9kfoDUYI0QwtMEKIZmiBEUI0o1ODYZHpEydOODvyF+nrMtmOwXnUYGhHOk/mn2eaDIl88X433coKBUVk18i0pKiIFaEu861vfcvZn/jEJ5zNBMqsCLWZ2dTUlLOpubCfTIakhhCRaRVZgmtNoGOm29Rck2TaUfb9INrf7Oyss6mXsAg451mke547d87ZLGLVC73BCCGaoQVGCNEMLTBCiGZ0OvGPP/64s6mPUF8xywtKZXEw/J5xNGalL8xzauIsXi79xkBkvrZZrjNkCZjZhvBmZk8//bSzWayIcTEsAh7dB+cJE+OoAdSMBXm5ulqkZWQaS3b8IAWp+o2VqdF9qD/xN8MicCw4RaJiUixmxmLlvdAbjBCiGVpghBDN0AIjhGhGpwbDnIVo0y1Cn502fbfFxUVnR8WxCTWXbLOwQei36He/eUTRMVkBpKyN6Pmw4BdjULgRHuNgGIfEjdbNSh2H409dhxpBzdhksU7Z2NToI4zXyTbfywpSRWTzIisCHumLfEYsiM64JOawsXhUFOPCfmZz9Sp6gxFCNEMLjBCiGVpghBDN6NRgtm7d6mz6elEuDGMeeAwLWTPHgcfzP3yz8j95tsk4jP9ELRf6nByLzP+ONJ3M5++38HgUG0JdhvrVE0884ex9+/Z1XpMbrZuV+U68ryynis8rOofaHAvSZ+Nfk4vU7+Z5NbVcsmP6jcWJnnF27yzCPjo66mzGs61atarzembl+PdCbzBCiGZogRFCNEMLjBCiGZ0aTJbTE2kw9N/o81NTyTZRi/JWeA368PRJs//wo//0M1+YY8Ox+E/ERPDeeZ+ZZmBW+uz0nRkHwzrMNZoYz2GsU7aBe6QrZLVvOK8yfaqmdhGfKe8j009q5lGm+xDeV5QDxPFfu3ats5lbxFwkxslEz4Ob/K1YsSLuMNAbjBCiGVpghBDN0AIjhGiGFhghRDM6FSaKihR/mFRllie2MTGO16RwFhX9ppiWFb/pNzGu5hoUo7m5FcW7qLB11g8KshwLCoBRcS4GUVFI5vN49NFHnb179+7OPkb95DONChgtJRLyM0E1SwrkfUbCJecRk2azwllsoyagk/3gPGlRaJxjxSJwnJtR4COF5CNHjqT9MNMbjBCiIVpghBDN0AIjhGhGpwZz6tQpZ9M3i4Jt6M9dvHjR2dRosuLNUbBfVvgnIysWFX2WBUht2LDB2SzMFOkM9OGpAVDbyIoPRfdB35k2kyEPHz7sbGowkZ5CHSfTxDh2kc7GwlhZIbIsMC+aIxwLwvHnNdmnQYrNZ4W0auYq9UAWGaPmwufDwLsokfHy5cvO5lzthd5ghBDN0AIjhGiGFhghRDM6NRj62/T/mCRllusG1B2o2dDnjBLI+o0/yAo5DbIRGH1QJpjNz887O9IZ6LNnPj/J9KvomCw+h8+UsU5Rm1nhLOo81C6i50edgM+I458lsEa6EMc/ix+hBllTcCoj02BITUIln9HQ0JCzN23a5OwsWdisTGJmobhe6A1GCNEMLTBCiGZogRFCNKPTyWduC2NYajbipn8+MzPjbBYwyoo7m+VFqrKC0OxTTRwMoa7AuA36wVHMEIsmUQ/JimfTrtEZeE2ewwLejGOibVbqIZwXvM+ajfHYb57DDeLYJscyitvg+PEZZlpdFrNiVmom2dzLcvOiWBvObz5TFsnn3OXxkV7ImCFu1tYLvcEIIZqhBUYI0QwtMEKIZnRqMPRz6UtH0A9lDY0TJ044O/vfP6qjQj81i4nIfOcotiPLK6GmQt862/DMrBwrxhqwxgzzm/h8GO9gVmoq9Nd5TY7Fdddd52zmtUTnULtjrssNN9xQXIMw/ob95lixzayAullea4VaBOcZdYkofiTLiarZ3H4pNbFP1DGvXLnibG7ExudBLcqsvI8sj+sqeoMRQjRDC4wQohlaYIQQzejUYKKau0uJ/i+v2ahrKZl+EsUWZLkTWT1X2lGsDa/JY6hNcKwYMxTF1XBs6F/v2LHD2cwTYmzIxo0bizYyDSbTIfg8eV/RZ7zGyMhIZz+5GbuZ2dTUlLM5/twI7KGHHursA/Uss3K8OZ6ZBlOjn/CzLCarZjM3wnvlfVGDOX78uLM5r2qeMWvO9EJvMEKIZmiBEUI0QwuMEKIZWmCEEM3oFHmzxMOoIBITpxgox+LYLBidCZlmpfiWJTuSLMEsOoY2RcMzZ844mwJuFJhEAZDBYt/+9redzeA9Cm8URqM2oiCqpVC8rhHdOf6cN3ymLCA9OTlZXJPBXxQqn3zySWdz7LKN8sziIM6ua/CZ1hQuy+YRRd8sSDQSkvmbYxsLCwvOZtAn52ZUSI5zT0W/hRCvOFpghBDN0AIjhGhGpwaTbb4ebYbFY7j5Ov07Fhanr1zj8w9SbLlf6OeePXvW2Uwa5NhF/nm/QVXUGbLgPrNSX6LuQJ+evjWfZ9RH9otaRaZ1RBpYlkhIm3OCYxEV46KGyPvIij9lhc2ia2TjmRVprwkKpU39is+c8yjSV/hbrwkANNMbjBCiIVpghBDN0AIjhGhGpwaTbX4VJTvSN6MvzDiMLKEy0i7YRs0m8P22kfnCc3NzzmYBJOoOWfyJWTmema6TFRqP4DXoW2eFnmq0DLaR+es1G7pnRcZoZxvMRQwPDzs7i2WqKfpNsoLnWcGpqI1s/md6FWNcopitrHBWL/QGI4RohhYYIUQztMAIIZrRqcHQr802IDcr/TvmttAmLKbNvBWzUqvI4gDok9b8h5/lO3Gz+7e85S3OPnbsmLMj7YL5TOzX6tWrnR3lfi0lipGgdkH/moXDs43ZIjg21IaoZVCXq9HZsuLw7HcWX2JW6k/Mf2J+GfWPmjwtQu2iJp9pKTU6G+H85++WhfmpyZiV98qYoV7oDUYI0QwtMEKIZmiBEUI0o9Op5wbX9Lsi/zzbcIy5SNRkmOMT/d/ebyzBILlK9I2pG3AsuOkZxyHasIzFsKmhcNPyqHD1UqK4pPPnzzub98Gi4NQlbrrpJmez4LqZ2Z49e5xNfYo+P8eKulvUD9YNom7A+B3qJ4wpMivnJvU+9pvzjvM/0keoXWRFvgcpAp7FqDBGi/e9fft2Z3PeRe2qHowQ4hVHC4wQohlaYIQQzdACI4RoRqfIu3nzZmfXBKxR/KTYlolFFFejIj4kC15imzWiL6/BADUmxh09etTZu3fvdvb73ve+og1egyJtVuAoKxpuVhb8OnfuXHHMUihOc+zGx8eLc+69915ns8DR8uXLnc1AvCj4ks+dzyN7PhSFGfhoZnb//fc7m8XP+DyyhNVormaBdNl9kSgQL0uCHRsbczZ3ZZydnXX2zTffXLTB3ThnZmY6+3kVvcEIIZqhBUYI0QwtMEKIZnRqMNRPGOgVBXYxGImBWvTvvve97zmbPn8UzEc/lMcM4scS6hv0c5nAR61j69atnX00KwOkaNOXzjSYKECK/WRyI3UHahWZthFdk4FbfB7UZKJgyqwwNecJC0pxLKPAsPe+973Ofvjhh51NrYJ94vyPilq93OJnDN6LdE+2wfFmACE1GQZPUns1y4vF90JvMEKIZmiBEUI0QwuMEKIZnRrMhQsXnE2/K9IVmMjGokn9blxfEweTFZji91mCmVl5b1nMCb+fnp52NmNezMpEw3Xr1nX2k/fBNpnEZlaO58GDB5391a9+1dl8Prt27XJ2pCn88Ic/dDb99U9/+tPOprZETcYsL7rOeUOtid9HxeUXFxedzWfO8WaMENuMtL9sLmYxXLSj8We/GYfE76kXMjn14sWLRRtsN0s4voreYIQQzdACI4RohhYYIUQzOjWYzMePigNnm5aTrHBNTcxKplXQf6zxJ7MNygi//+Uvf+nsaKwmJiacTW2C+hX7zfiF6D6oZUxOTjqbsTMsfP3Zz37W2VEuE9v41a9+5ewDBw44++6773Z2FFORFe3OCmUxXofxPmblWHC8X3zxRWezMBY1mEiT5DziXM3iZGoKiWfHcGw2bNjgbGpgUZ+ozTGWphd6gxFCNEMLjBCiGVpghBDN6NRg6D/SD4uKHDOWg9pDVh8js83K//nZr343s4q+571l8QiM/aCG8NBDDxVt0MenNsFrsAg7iYqCs1/79+93NvPNOBbf//73nU3dwazUZTh2zD9jwW7mMpmV4837oM7GuKPTp087+6c//WnRBjUX5s3Nzc05mxoLY6GieURdLKv5k20KGLXBfmVtbtq0ydmsx8PC8GblfI9y0iL0BiOEaIYWGCFEM7TACCGa0b2bOqCvxpwGs9Lfo039hDAuJqqxQfqtc5r5uWalj089ij4p438+8IEPOPv5558v2mC8yHPPPefsD3/4w519ZPwCN9gyK2Nl3v72tzubcTCHDx929ne+8x1nR/VzyV133eVs1oepiUPK6r0sLCw4+9ChQ84+fvy4s1kj2azUC+fn553NZ0ptiTbniFl5r1HeWxc1c5ef0WYM0IkTJzr7dMstt6T94Fzthd5ghBDN0AIjhGiGFhghRDO0wAghmtGpOLEQDQOToqCfTJSlAMXkOib8MRjNrEyOo0hI0YptDrK5W5ZAyaAritvRxmtM2ONGYF/72tecfc899zh77969zo6SBhk0xYQ9Jlzye45/VNTqXe96l7MZXLllyxZnU1iOEkkpuFIQ/+53v+ts/jnwkY98xNlREOKlS5ecTSE++zOAom50fDbX+MyyxNwouJXtUtjnnzHsA38/jz76aNEGxf1oHkToDUYI0QwtMEKIZmiBEUI0o69kR/pdUYAUfTX6udwEigFQ3/zmN30Hg8CkLOApoybQLvOFqT8xgJAFp6JiRNu2bXP25z73OWdTZ+AmdUeOHHH2F77whaINBuOxH/yezzTTT6JrMICN+ggLcHOOmJl9+ctfdjbnzcjIiLOZKErNhYF3ZqXWQC2I8z3b+C7S8jjX2EZ2zex6ZvkGftTRqDVRW6UOZ1bOi6iAWoTeYIQQzdACI4RohhYYIUQzOjWYmZkZZzNmhf+3m5Ubhp86dcrZ3ICMPigTzCKdhzEm1Ef6jXuJ4nmyc6gr8Hj6udQQzErdhnEt73//+51NraJm4y/GkzDOiIWvuYka+xQVaWdRKm7W9ta3vtXZ1AiiTek++clPOpuJnMeOHXM2dR0W+GLxKDOzjRs3Ovv8+fPO7reYfJTsyLmYzT3aNXoj2+D4ciO1n/3sZ86+9dZbnf2e97ynaINFwRj31Qu9wQghmqEFRgjRDC0wQohmLBsaHuu5a9OhSe+PUzOgP29W+sI85oUXXug8/vOf/7yzI+2C0AelbpNpNDXQN87yUBgbEhXxYfFrakvUIYaGhpzNvK/IL2axIWpDjz32mLMZA8Hzo7ikrEA342LuvPNOZ7PYtlmpVXDuTU1NOZsFp/h8duzYUbTB8Tp48KCzGbNSswkaybS8bGM2xi1FGgxjZ6iNMjYty1UaHR0t2vjMZz7jbM7nnbf5Z3oVvcEIIZqhBUYI0QwtMEKIZnRqMPMXnnV2TR0V1jihn8v8jmeeecbZX/ziFzuPNyt1Afqx2aZpmR1B7SHzpUmkwTB/hvlLjF9gHFJNPRLmO3GTNMY3UHdgPRnGOZmVPj11NWpNvI+o3zyH/WIb1HkYixNpF4yV4XizX9Q6qI9E95HlFmX5TDVzk+1yc3vGuVAjYz0fxkaZlbrmxz72MWf/13//T9g3vcEIIZqhBUYI0QwtMEKIZnTmIlH/qIkfYR1f5s9QN2A+DX3lSOfJau72C+NkzPINrzLfmfE/Z8+eLdoYHx939sc//nFnUyPgZmPUPj74wQ+mbczOzjqbGhg3NWc8TxQHQz2EcRe33Xabs6lHRZu5cXMw5hKxX9SS2Kenn366aIN6IbUJ6k+MU6rRJDMNJqs7lB1vVv5mGOvEZ8p5w7GMcsNYe4gxQ73QG4wQohlaYIQQzdACI4RohhYYIUQzOkVeikFMVGTAm1kZEEUBicFMFB0ppEUbr1F8o1DMa2RFf2rIxLgsoTIqzsXNxDZv3uzsu+66q/MaN954o7PXrFlTtEEBcP369c6m0MnnxecTjR2TFfl8KBpSAI8KibMYPIPFpqennU2BluL1yZMnizY4b6LN2ZbCuc3ExEjQZYAahWH+6ZH9uVBT4D4ryMaxunDhgrOjomIU6jlveqE3GCFEM7TACCGaoQVGCNGMTg3m9OnTzs427TIrA7GoMzz88MPOpv+XbXYV9aNmg/Cl0HeOEsqyJDO2Qf+7JmCQfiyTHVl8mUmCHP+ozxw/brK1Z88eZ3P8JyYmnM3CT2blM6eWQZ8+K8oencNgMbbJwDwWm6d+YpYXd8o22+PYRm3wuVMfyRIoOTaRlsfxzDZ7o+bF5zU2Nla0wbnKIuy90BuMEKIZWmCEEM3QAiOEaEanBkPoy0W6wiOPPOJsxr0wDoObXWVxA2alb0y/Ntpo/j8N/dyseHOUJMh4EBZzYiHrffv2OZsb03Mcon7QZqIhv890CLNyXvAZ8nmwCFm0uR6LvXOecJ49+6wvjjZIsXLCfmXaRgQ1Fo4nx4Y2z48Se7NnxHtnvBS/5+aHZqX+V1OM30xvMEKIhmiBEUI0QwuMEKIZnRoMc11YyObnP/95cQ5zPngNFqDK/Ngov6PfwshZEZ8a2A9qLmyDfYrukzk79K9ZNInFmJkDFBUWZ8xDlkOVFUSP9BL68NkG7vw+GhvGvTB+ipoMdYMs/iTqB8/JYlSysYuO4b3ymWdFrSJ9kePPGCLGznBOcEO/KKeNzyPKV4rQG4wQohlaYIQQzdACI4RoRqcGQ7/r8ccfd3ZUq4W5R6wnQpv+eRYHYJbXc8lyjbKaG9FnWf5MtvFa5LPymjyGvjXH6oEHHnA2N8Myy4uT85rUDKKC3IRaEfOVsoLpUUzFj370I2efOXPG2ZnuluUZmeU1fDJ9JNOWomOy+CmSxdFEn2X9Zj7axo0bnR3FwXADPxX9FkK84miBEUI0QwuMEKIZnRrME0884WxubhXV5GX9EMZNULdh/g19zqj+Ba+ZxblkmssgGky/8SRR/EjmO3MsWP+FNZK//vWvF228+93vdjY3xqNuwD6wbi3ruZqVGgq1I2oAi4uLzo7iqY4fP+5s6lMcX/arZjM+6h+0eY2sjWgecnx5H/3mEUX3lemBPIdxL3werNFkVsbOMIarF3qDEUI0QwuMEKIZWmCEEM3QAiOEaEanyMtiwDUFuSkEM+hq//79zmbADo+PhDO2y8Agfp8lR0bCWZbAR/GZY3Pttdc6Owr0ygRW9oE2hbco8PEb3/iGs0dGRjr7yTYo5kXCPu+dom620VcUaMcAP14jSyblWEZBcJwXmQDLeUXhPkrazApGcbw5r9jv6M+CTIxmG3xeLCbFQDyzcq4xibkXeoMRQjRDC4wQohlaYIQQzejUYLJAJAZ6mZU+/datW53NBEoG/WSBeGalX5sl9NGXrkkgi4pEL4W+MH3nLBDPrEyEyzQXFglnm5EmRn1qbm6ur35G2gXheFNv4vdZkqdZ+Yw4FtQZ2M8sMTE6J0sSzPSUQeYR4TWol0TPg+dkOtrevXudvXLlSmfzN2lmdvbsWWePjo4Wx0ToDUYI0QwtMEKIZmiBEUI0o9NBpI9Jnz8qpEzfjL4vN1674447nM0NtKJkR16TPjz91qho1VIiP5m6AftBnYH6RxaLEH2WbRiXaUlRAlqWtMk+ML4k01eifmQ6Qvb8omuQrIgYz4+KlGVFqWhnm9hFfWa/eO8cuyyeJyKLlaEuygJh/B1HWt6mTZucHcVchX2rOkoIIQZAC4wQohlaYIQQzejUYOib0T+kb2dmNjY25mxudM5clp07dzqbOkJNoSa2QZ+evjT94ppYD5IVAa/ZmCorXp5pG9RPIt+ZbWS6A8e7puAR28g2MGM8T1b4OjqG/cx0tuj7TG/K5klWlD0iazObi5HOk+k0/H56etrZ8/Pzzt6zZ09xjZmZGWcz57AXeoMRQjRDC4wQohlaYIQQzejUYOhTUh+JNr+iLnPo0CFnX7x40dn33nuvs9/2trc5+8c//nFXF82s9IXp12axHlGMSpanwrFg3Atr6dRoF1kOD8nqlUTXyPJtslo6EdQ3GPdC7S7TZMxy/YP9pl2jbbBf1M14jazOTaTBMH4qy5vLiH5zvCafIfP/WBOItXfuvvvuoo0f/OAHzq7NsdIbjBCiGVpghBDN0AIjhGhGX3EwrMtJnSE6hnEu73jHO5xNzYb/wVPDMStzKejD07fONkqv2TCLfi31Et5HFjNhZnbp0iVn0x/nWNJX5vcR1AD6jcOo0Qg4flmcS03NmSzGhLoDN5Sj1heNf7ZZHseXMVzZHImo2fRvKVlto6gfvA8+j6mpKWfzN8p5aVbWFeJc7IXeYIQQzdACI4RohhYYIUQztMAIIZrRKfJmhYOi4kMUrdatW+fshYUFZ2eJcTUBatkGcVmhppqiPtk1KIhzA7moDV6D48lCyxQyGewXJfQNksi5lJpgvqz4NQXWrJiUWSlU8t74zPk9kyEp+pqZLV++3NmcN3yGWZGxCPaD59QUDu+XbPM2/tEyOTnp7HvuuSdto7afeoMRQjRDC4wQohlaYIQQzehLg8l0CDOzxcVFZ3NztgMHDjj7ox/9qLMZwLNixYqiDW7GxiCgrNAyfemoeDnPiQpfLSUrps0+mpX+OAMEV61a1XlNjgM30DIr/fF+i3zXbJLGscoKcFMTiAq7s6g0g8U4nrwG9aqoOBr7PT4+7uzDhw87exAtieNXU5Tq5cJnyHnxk5/8xNk7duzoPN+sLDBVoz+Z6Q1GCNEQLTBCiGZogRFCNGPZ0PBYdyagEEIMiN5ghBDN0AIjhGiGFhghRDO0wAghmqEFRgjRDC0wQohm/B/5yMC8cEHGCQAAAABJRU5ErkJggg==\n"
+ },
+ "metadata": {},
+ "output_type": "display_data"
+ },
+ {
+ "name": "stdout",
+ "output_type": "stream",
+ "text": [
+ "\n",
+ "CelebA Faces hyperparameter presets loaded.\n",
+ "Generator model constructed.\n",
+ "Discriminator model constructed.\n",
+ "\n",
+ "Model: \"discriminator\"\n",
+ "_________________________________________________________________\n",
+ "Layer (type) Output Shape Param # \n",
+ "=================================================================\n",
+ "image_in (InputLayer) [(None, 64, 64, 1)] 0 \n",
+ "_________________________________________________________________\n",
+ "convstart (Conv2D) (None, 64, 64, 64) 640 \n",
+ "_________________________________________________________________\n",
+ "conv0 (Conv2D) (None, 64, 64, 64) 36928 \n",
+ "_________________________________________________________________\n",
+ "avg_pool0 (AveragePooling2D) (None, 32, 32, 64) 0 \n",
+ "_________________________________________________________________\n",
+ "conv1 (Conv2D) (None, 32, 32, 64) 36928 \n",
+ "_________________________________________________________________\n",
+ "avg_pool1 (AveragePooling2D) (None, 16, 16, 64) 0 \n",
+ "_________________________________________________________________\n",
+ "conv2 (Conv2D) (None, 16, 16, 64) 36928 \n",
+ "_________________________________________________________________\n",
+ "avg_pool2 (AveragePooling2D) (None, 8, 8, 64) 0 \n",
+ "_________________________________________________________________\n",
+ "conv3 (Conv2D) (None, 8, 8, 64) 36928 \n",
+ "_________________________________________________________________\n",
+ "avg_pool3 (AveragePooling2D) (None, 4, 4, 64) 0 \n",
+ "_________________________________________________________________\n",
+ "conv_final (Conv2D) (None, 4, 4, 32) 18464 \n",
+ "_________________________________________________________________\n",
+ "flatten_conv (Flatten) (None, 512) 0 \n",
+ "_________________________________________________________________\n",
+ "classification_out (Dense) (None, 1) 513 \n",
+ "=================================================================\n",
+ "Total params: 167,329\n",
+ "Trainable params: 167,329\n",
+ "Non-trainable params: 0\n",
+ "_________________________________________________________________\n",
+ "\n",
+ "Model: \"generator\"\n",
+ "__________________________________________________________________________________________________\n",
+ "Layer (type) Output Shape Param # Connected to \n",
+ "==================================================================================================\n",
+ "const (InputLayer) [(None, 512)] 0 \n",
+ "__________________________________________________________________________________________________\n",
+ "const_expander (Dense) (None, 2048) 1050624 const[0][0] \n",
+ "__________________________________________________________________________________________________\n",
+ "const_reshape (Reshape) (None, 4, 4, 128) 0 const_expander[0][0] \n",
+ "__________________________________________________________________________________________________\n",
+ "upscale0 (UpSampling2D) (None, 8, 8, 128) 0 const_reshape[0][0] \n",
+ "__________________________________________________________________________________________________\n",
+ "noise_in0 (InputLayer) [(None, 8, 8, 1)] 0 \n",
+ "__________________________________________________________________________________________________\n",
+ "z0 (InputLayer) [(None, 512)] 0 \n",
+ "__________________________________________________________________________________________________\n",
+ "conv0 (Conv2D) (None, 8, 8, 128) 147584 upscale0[0][0] \n",
+ "__________________________________________________________________________________________________\n",
+ "noise0 (Dense) (None, 8, 8, 128) 256 noise_in0[0][0] \n",
+ "__________________________________________________________________________________________________\n",
+ "mapping_network (Functional) (None, 128) 66112 z0[0][0] \n",
+ " z1[0][0] \n",
+ " z2[0][0] \n",
+ " z3[0][0] \n",
+ "__________________________________________________________________________________________________\n",
+ "add_noise0 (Add) (None, 8, 8, 128) 0 conv0[0][0] \n",
+ " noise0[0][0] \n",
+ "__________________________________________________________________________________________________\n",
+ "scale0 (Dense) (None, 128) 16512 mapping_network[0][0] \n",
+ "__________________________________________________________________________________________________\n",
+ "bias0 (Dense) (None, 128) 16512 mapping_network[0][0] \n",
+ "__________________________________________________________________________________________________\n",
+ "ada_in0 (AdaIN) (None, 8, 8, 128) 0 add_noise0[0][0] \n",
+ " scale0[0][0] \n",
+ " bias0[0][0] \n",
+ "__________________________________________________________________________________________________\n",
+ "leaky0 (LeakyReLU) (None, 8, 8, 128) 0 ada_in0[0][0] \n",
+ "__________________________________________________________________________________________________\n",
+ "upscale1 (UpSampling2D) (None, 16, 16, 128) 0 leaky0[0][0] \n",
+ "__________________________________________________________________________________________________\n",
+ "noise_in1 (InputLayer) [(None, 16, 16, 1)] 0 \n",
+ "__________________________________________________________________________________________________\n",
+ "z1 (InputLayer) [(None, 512)] 0 \n",
+ "__________________________________________________________________________________________________\n",
+ "conv1 (Conv2D) (None, 16, 16, 128) 147584 upscale1[0][0] \n",
+ "__________________________________________________________________________________________________\n",
+ "noise1 (Dense) (None, 16, 16, 128) 256 noise_in1[0][0] \n",
+ "__________________________________________________________________________________________________\n",
+ "add_noise1 (Add) (None, 16, 16, 128) 0 conv1[0][0] \n",
+ " noise1[0][0] \n",
+ "__________________________________________________________________________________________________\n",
+ "scale1 (Dense) (None, 128) 16512 mapping_network[1][0] \n",
+ "__________________________________________________________________________________________________\n",
+ "bias1 (Dense) (None, 128) 16512 mapping_network[1][0] \n",
+ "__________________________________________________________________________________________________\n",
+ "ada_in1 (AdaIN) (None, 16, 16, 128) 0 add_noise1[0][0] \n",
+ " scale1[0][0] \n",
+ " bias1[0][0] \n",
+ "__________________________________________________________________________________________________\n",
+ "leaky1 (LeakyReLU) (None, 16, 16, 128) 0 ada_in1[0][0] \n",
+ "__________________________________________________________________________________________________\n",
+ "upscale2 (UpSampling2D) (None, 32, 32, 128) 0 leaky1[0][0] \n",
+ "__________________________________________________________________________________________________\n",
+ "noise_in2 (InputLayer) [(None, 32, 32, 1)] 0 \n",
+ "__________________________________________________________________________________________________\n",
+ "z2 (InputLayer) [(None, 512)] 0 \n",
+ "__________________________________________________________________________________________________\n",
+ "conv2 (Conv2D) (None, 32, 32, 128) 147584 upscale2[0][0] \n",
+ "__________________________________________________________________________________________________\n",
+ "noise2 (Dense) (None, 32, 32, 128) 256 noise_in2[0][0] \n",
+ "__________________________________________________________________________________________________\n",
+ "add_noise2 (Add) (None, 32, 32, 128) 0 conv2[0][0] \n",
+ " noise2[0][0] \n",
+ "__________________________________________________________________________________________________\n",
+ "scale2 (Dense) (None, 128) 16512 mapping_network[2][0] \n",
+ "__________________________________________________________________________________________________\n",
+ "bias2 (Dense) (None, 128) 16512 mapping_network[2][0] \n",
+ "__________________________________________________________________________________________________\n",
+ "ada_in2 (AdaIN) (None, 32, 32, 128) 0 add_noise2[0][0] \n",
+ " scale2[0][0] \n",
+ " bias2[0][0] \n",
+ "__________________________________________________________________________________________________\n",
+ "leaky2 (LeakyReLU) (None, 32, 32, 128) 0 ada_in2[0][0] \n",
+ "__________________________________________________________________________________________________\n",
+ "upscale3 (UpSampling2D) (None, 64, 64, 128) 0 leaky2[0][0] \n",
+ "__________________________________________________________________________________________________\n",
+ "noise_in3 (InputLayer) [(None, 64, 64, 1)] 0 \n",
+ "__________________________________________________________________________________________________\n",
+ "z3 (InputLayer) [(None, 512)] 0 \n",
+ "__________________________________________________________________________________________________\n",
+ "conv3 (Conv2D) (None, 64, 64, 128) 147584 upscale3[0][0] \n",
+ "__________________________________________________________________________________________________\n",
+ "noise3 (Dense) (None, 64, 64, 128) 256 noise_in3[0][0] \n",
+ "__________________________________________________________________________________________________\n",
+ "add_noise3 (Add) (None, 64, 64, 128) 0 conv3[0][0] \n",
+ " noise3[0][0] \n",
+ "__________________________________________________________________________________________________\n",
+ "scale3 (Dense) (None, 128) 16512 mapping_network[3][0] \n",
+ "__________________________________________________________________________________________________\n",
+ "bias3 (Dense) (None, 128) 16512 mapping_network[3][0] \n",
+ "__________________________________________________________________________________________________\n",
+ "ada_in3 (AdaIN) (None, 64, 64, 128) 0 add_noise3[0][0] \n",
+ " scale3[0][0] \n",
+ " bias3[0][0] \n",
+ "__________________________________________________________________________________________________\n",
+ "leaky3 (LeakyReLU) (None, 64, 64, 128) 0 ada_in3[0][0] \n",
+ "__________________________________________________________________________________________________\n",
+ "image_output (Conv2D) (None, 64, 64, 1) 129 leaky3[0][0] \n",
+ "==================================================================================================\n",
+ "Total params: 1,840,321\n",
+ "Trainable params: 1,840,321\n",
+ "Non-trainable params: 0\n",
+ "__________________________________________________________________________________________________\n",
+ "\n",
+ "Model architecture plots saved to ./output/\n",
+ "\n"
+ ]
+ }
+ ],
+ "source": [
+ "gan = model.StyleGAN(dataset=None,\n",
+ " dataset_path='C:/img_align_celeba',\n",
+ " dataset_name='celeb faces',\n",
+ " target_image_dims=(64, 64),\n",
+ " epochs=3,\n",
+ " batch_size=32,\n",
+ " z_length=512,\n",
+ " save_progress_plots=False,\n",
+ " show_progress_plots=True,\n",
+ " progress_plot_batch_interval=10,\n",
+ " save_model_checkpoints=False,\n",
+ " model_checkpoint_interval=20,\n",
+ " save_directory='./output',\n",
+ " print_model_summaries=True,\n",
+ " running_in_notebook=True)"
+ ],
+ "metadata": {
+ "collapsed": false,
+ "pycharm": {
+ "name": "#%%\n"
+ }
+ }
+ },
+ {
+ "cell_type": "code",
+ "execution_count": 5,
+ "outputs": [
+ {
+ "data": {
+ "text/plain": "",
+ "image/png": "iVBORw0KGgoAAAANSUhEUgAAA94AAAMICAYAAAA+Cj0ZAAAAOXRFWHRTb2Z0d2FyZQBNYXRwbG90bGliIHZlcnNpb24zLjMuNCwgaHR0cHM6Ly9tYXRwbG90bGliLm9yZy8QVMy6AAAACXBIWXMAAAsTAAALEwEAmpwYAAEAAElEQVR4nOydd5hV1b3+3zPAMPTee29SpKkoFhSwAYK9xUSTGDVqTIwpN7n3/pLcxGhsiTH2xBs72ECFiIIVpYjSe29D7wMDM3N+f5DZvOud2d/ZAxwNud/P8/A867D3WXvtVfee877rm2rQqG0ajuM4juM4juM4juNkhKyvuwCO4ziO4ziO4ziO8++Mv3g7juM4juM4juM4TgbxF2/HcRzHcRzHcRzHySD+4u04juM4juM4juM4GcRfvB3HcRzHcRzHcRwng/iLt+M4juM4juM4juNkkIpfdwEcx8kMTz/9ZJnn/P7392LRokXlzrtevXq4997f46GH/ohZs2YfSfFMnn76STz77HOYNGly7DmnnjoAN9xwPW666Rbk5+cf8zL8O3LuuedixYoVR9TmXwfDhl2IM888A7Vq1cKUKZ/i6af/Gntux44dMXToYLRr1w5Vq1ZFXl4eli9fgcmTJ2POnLlfYamPHY0aNcLJJ5+Ed96ZiH379n2l165QoQJGjRqJdu3aonXr1sjOzsb113870Xdr1aqFiy8ehW7duqJKlSrYuHET/vGPf+Czz6aWen7t2rXx29/+Bjk5OaWO5wsuOB9nnXUmqlevjhUrVuL551/AmjVrzDKMGDEcffr0Rr169ZBKpZCbm4vx4/+B6dOnR+e0bt0agwadhQ4dOqB27VrYvn07PvtsKt5+ezwKCgqi87p27YqBA09Fu3btUL9+fbzxxli88cbYRHWh3HXXj9G5cycAQEFBAfLy8rB27TrMnDkTH374UXDdr3KOu+uuH2PPnt145JFHjzqve+65GzNmfI6XXx59DEoWcsYZp2PXrl344osvj3neZVGeftC7d29ccMF5aNasGQ4cOIAVK1biz39+BAcOHAAQvz4fPHgQN954U2wZ+vTpg6FDB6Nx48aoXLkytm7diilTPsX48RNQWFgI4ND4GzJkME44oRsaNGiAvLw8LFiwEK+88gp27NgZ5Hfiib1w0UUXoXHjRtixYwfee28S3nln4pFUj+M4CfAXb8f5N+U3v/ltlM7OroS77voxxo0bh1mz5kT/v379+iPKe+fOnfjNb36LDRs2HHU5na+O884bikmTJh8XL96tW7fCyJEXYcyYV7Bo0SLs2rU79tzBg8/B5Zdfhi+++BLPPfcCdu7cgVq1aqF37xNx++234b777seCBQu/wtIfGxo3boQRI4bj448/+cpfvLOzs3H66QOxYsUKLF26DF27dkn0vVQqhdtu+z6qV6+O0aPHYOfOnejbty+++93v4MCBA5g584sS37nsskuRn5+PnJycEsfOP/88DBt2IV5+eTRyc3MxZMgQ3HnnD/HLX/4Xdu3aFVuOKlWq4JNPpmD9+vUoKipC3759cNNNN6KoqAiff/45AKB//35o0KABxo8fj40bN6FFi+a46KIRaN68OR555C9RXt27n4DmzZtjwYIF6N+/f6J6sFiwYAFeeeU1pFIp1KhRA507d8Ill1yMgQNPwz33/CFq69mzZ+M3v/lt9LKWSZ599lkUFBQek7wefvjP2LNn7zHJSznjjNOxdu26r+XFO2k/GDhwIK655iqMHz8BL788BtWqVUXnzp1RoUKF6Bxen4u5/fZbsWTJUrMM1atXw8KFizBhwj+Ql5eHNm3aYMSI4ahVqxaee+55AIfmzt69e+Ojjz7C8uXLUbNmTYwYMRw///nP8Mtf/lf0R5z27dvjlltuxscff4KXX34Zbdu2xSWXXIx0Oo2JE989kipyHKcM/MXbcf5NWb58eZSuXLkyAGDTps3B/zOpVApZWVnRX80tCgoKYvNxQipVqoSDBw9+3cU45lSoUAFFRUVIp9MZyb9x4yYAgEmTJmP//v2x57Vs2RKXXXYpxo17s8SvT9Onz8C77773lby4JCXT9WZRnr64b98+3Hrr7QCAQYPOSvzi3ahRI7Rp0wYPPfQnzJo1CwCwYMFCtG3bBv379y/x4t2hQweccMIJeOutt3D55ZcFxypWrIjzzz8Pb731dqR+Wbp0Ge699/c4++xBeO2112PL8eKLLwWf582bj6ZNm2HAgFOiF+/x48dj9+490TmLFi3CwYMHcd1130C9enWxdes2AMDLL4/GSy+9DADo1atXonqw2Lt3bzB/fvnll/j440/w85//FFdeeUWk7Ni9e09QvkxQ3CfWrz92f0RdvdpWI/yrUJ41D0jWD6pXr44rr7wczz33PD788KPo/7Xf6/rZpk0b1KhRA1OnTjPL8MEHHwafFy5chCpVqmDQoLOiF+/Fi5fgP/7jFygqKorOW7VqNX73u/9Bnz59MGXKFADA8OEXYsmSpfjb354BcGiMVK1aFcOGDcOkSZMT14vjOMnxF2/H+T/K9dd/C82bN8O4cW9i1KiRaNSoEe699z5s2rQJo0aNROfOnVCrVi1s27YN06fPwNix46KFuDSpebG8cPv2HRg6dDAqV66MuXPn4X//9+/RLzjZ2dm49NJL0K1bV9SpUwe7du3CnDlzMGbMqyVeripWrIgrr7wCp5xyCrKyUpgy5VO89NLL5sNAxYoVMXLkRTjppP6oUaMGcnNzMWbMq5gzZ07sd4rv5bHHHkf37t3Ru/eJOHDgACZNmoyxY8dF5zVu3BgjRgxHhw7tUa1aNWzZsgUffvgR3n33veglqlOnTvjJT36M++57AIMGnYUuXTpj+vTp+Otfn8HQoUPQv38/NGrUCAcPFmDFihV48cWXsGnTpugaxXLP2bPnYNiwC1GjRg3MnPkF/va3Z9CiRQtcffVVaNq0CVauXIUnn3wK27ZtS3zv99xzN2rUqIERI4ZjxIjhAA5bDVKpFM4771wMHDgQdevWwdatW/Hmm29HD2hctnnz5uO8885F/fr18eMf/wQAcMUVl6FTp07IycnBjh07MHXqVLz22huxdZ5KpTB8+DCcdtqpqFmzJjZt2oQ333wreui8/vpv4bTTTgUAPPLIw0FZlXPOORu7d+/GuHFvlnqtZctK/oFo4MCBGDLkHDRs2BA7d+7CpEmTMWHChOh48dgYM+ZVXH75ZWjYsAFWr16NZ575e6ASOZp6q1y5stmfOnXqhNtvvw0AcO+9vwcAbNmyBXfd9VMAQIsWLXD55ZehXbu2KCgowOzZc/DSSy9HvwIX9+vHH38CJ5zQDb169cLKlSvxhz/cH9sux4LiX/X27csL/j8vLw+pVHhuKpXC1VdfiXHjxiEvLzwfOPSLXNWqVTF9+ozo/w4cOIAvv5yF7t27my/epbFnzx5UrHj4sae0l9pVq1YDAGrUqBm9eH8VfyRZu3YtJk2ajCFDBuP551/A/v37S5Wan3/+eVF/y8vbh9WrV+Opp56O2r1atWq4+OJR6NWrJ6pVq4atW7di8uT3o18wn376Sbz44kuoV68uTj75ZOTl7cPPfvbzElLzESOGY9Cgs/DQQ3/ENddcjaZNm2LVqlV44omnkJ+fj+uu+wa6du2Cbdu249lnn8PChYcVJSo1Tzqeypoj77rrx2jdujVat24dzQ9PPfU0PvlkSplzCpdD17wlS5YkaqMk/aBfv74AgE8+mVLGmSH9+/fD/v37oz9WlYc9e/YEv6aXpo7ZuHEj8vPzUbNmjej/WrRoiUmTJgXnzZs3D0OHDkG7du2wePHicpfFcRwbf/F2nP/D1KtXD5deegnGjn0Tu3btwpYtW1C9enXs3bsXL774EvbuzYvkrjVq1MD//u/fzfz69euLtWvX4pln/o66devg8ssvw8UXj8Kzzz4HAKhcORtZWVl45ZXXsHv3btStWxcXXngBbr75e7j//geDvIYOHYJly5bjiSeeQNOmTTFq1EgcPHgQo0ePib3+LbfchDZt2uD118di8+ZN6NevH2677fv41a9+U6Yn9LLLLsWsWbPx5z//BZ06dcTw4cOwZ8+e6Je2OnVqIzc3F599NhX79+9Hy5YtMGLEcFSqVAlvvz0+yOtb37oOn3zyCSZOfDf6hbFOnTp4773J2Lp1K6pUycGZZ56Jn/3sp/j5z/8jeFBq27YtqlevgeeffwF169bFFVdcjoMHD6Bt27YYP34C8vPzcdVVV+K6676BBx44XGdl3fvDD/8Zd931Y8yY8Xn0S0zxQ+/VV1+JAQMGYOzYN7F69Sp07doV11//Tezduyfw8Ldv3x4NGjTE6NGv4MCBA//8VfQWVKqUjWee+V/k5e1Dgwb10aRJE7OuR468COeeOxRjx47DihUr0bdvb9x443cBAFOnTsO4cW9i+/ZtGDZsGO65514cOHAw1hbRsWMHLFiwMPh1x+Lcc4di1KiRmDDhH1i4cNE/Je0jcOBAfrCnQN26dXHZZZfgzTffwsGDB3DZZZfipptuxC9/+V/ROUdTb40bNzL706pVq/DSSy/j8ssvw8MP/xk7duxEQcGhvlSjRnX85Cc/xvr1G/D440+gcuUcXHLJKPzoRz/Er3716+CPU5dddilmzpyJRx55NKqju+76MQDgnnvuTVRn5WHdunVYtmwZLrroIvztb89g165d6NOnN9q3b48HHngoOPess85EpUqVMGnSZJx88kkl8mrSpDEKCwuxcePG4P83bNiA/v37JSpPVlYWKleujJ49e+CEE7rh0UcfM89v374dioqKkJubmyj/Y8m8efNw/vnnoVWrVqX+kWnAgFNw4YUXYPToMVi3bj2qV6+OLl06R4qmSpUq4Sc/+TFq1KiJsWPHYsOGXDRq1BANGzYM8jn33KFYvHgJnnjiSaRS8XvsZmdn47rrvhHMO9/5zg04eLAAc+bMweTJk3Heeefi5pu/hzvvvMtUliQZT2XNkc8++yxuvvlmbN68OfpD2+bNh17Ky5pTiiltzSv+g+mR7nnCtG3bFrm5uRg4cCAuvPB81KxZE6tXr8YLL7yEZcuWxX6vX7+++OKLLxOrc1KpFCpVqoRWrVrinHPOxvvvf2Ce37x5c1SuXDmYRytVqljiD9nFeww0bdrEX7wdJwP4i7fj/B+mRo0a+MMf7g9eSrdv3x5sirN06VLk5+fj+uu/heeee978xbmwsBB/+tOfowf8pk2boH///tGL9+7de/D3vz8bnZ+VlYUtW7bg5z//KerWrRv8grt//3785S+PIp1OY86cuahUqRIuuOB8vP32eOzdW9I/2KVLZ/Ts2RN3331P9MAwb958NGrUCBdeeAH+8hd706B169ZHf1iYN28eatSogQsuOB+TJ7+PdDqNBQsWBj7hJUuWIDs7G2eccXqJF+8ZMz4v8YsvS19TqRTmzZuPhx56ACee2AtTpnwaHcvJycGf/vRw9DLeuXMnnHHGGbj77t9j8eJDv8zUrl0b1157DbKzs3HgwIFE97569RoUFhZi+/btgcyxYcOGOPPMM/H003+LfqmdP38BateuheHDhwUvkFWrVsV///evAm9tmzZt8NhjT0S/1JT14FqtWjUMHnwO3nzzLbz55ltRfdepUxcjRgzH1KnTsHnzZmzatBkAsGLFSnNjqdq1awf9ppisrMMvFOl0Gul0Gjk5ORg+fBjefPOtSM0wf/58ZGdnY9iwC6O2Li7nb397d/RrWyqVwq23fh+NGzdGbm7uUddbWf1p//790cvfqlWrsXXr1ujcoUOHAgDuv/+BSCmyceNG/PKX/4G+ffsELxrLly/Hs88+H9RN0j9SHCkPPPAQbr31+7j77kM+1oKCAjz99F+DX0WrVauGiy66CE888WTsnFKtWjXk5+eX+KVx7948VK5cGRUqVDDno7Zt2+IXv/h5VIbnnnve9AbXrFkTF154AaZM+dS0N2SK7du3R+UojTZt2mDu3HmYPPn96P9mzpwZpQcMOAVNmzbF//t/v47mdK7zYnbu3FXmHyCAQxal5557IZpTiued1157Hf/4xztRmX/zm1+jU6eO5iaGZY0noOw5cv36DThwIB+7d+8O5rAkc0oxpa15DRo0QGFh4TFRNtSqVRONGzfGsGGH/kCyZ88enHfeufjhD3+An/3sP0rdl6Bjxw6oW7cupk2bXkqOpfPoo4+gUqVKAA79um5tZJdKpXDllVcgNzcX8+bNj/5/06bNaN26dXBumzZtAByqU8dxjj3+4u04/4fZtm1bqb8EDx58Ds4443TUr18f2dnZ0f/Xq1cvkEYrCxcuCh7q16/fgBo1agQPyKeccjKGDBmCRo0aBpspNW7cKHiB+uKLL4MHoc8/n4lRo0aiWbOm0Qso07VrV+zYsQNLly4NXroWLFiAU08dUFZVlPDgzZw5E2eccTrq1KmDbdu2oWLFirjggvNx8skno169uoFkNSsrK7jv2bNL7vTetm1bjBx5EVq1aonq1atH/9+oUaPgvJUrVwa/gG/cuAkHDx4MNt0pboPatWtj06ZNR3XvXbp0RjqdxsyZM4Pvzp+/EP3790cqlYraYdWqVSUeHNesWYOLLx6F6tWrYcGChaW+BDPNmjVF5cqVMWPGjOD/p02bjm9/+3rUqFEDu3fHb6RWGvrA3KdPH9xyy+GdgSdM+Adefnk02rVrh5ycHMyYMUPqaSGGDx/2T7n4ofJv2bI16OvFHti6desgNzf3qOutPP1JadOmNebNmxe8HK5YsQKbN29Ghw7tgxcN3kyxmD/84b7YvI+WVCqF73znBlSvXg1/+cuj2LVrN3r06I5vfeub2LNnD+bOnQcAGDVqJFasWG7aQIDS5b0qWY9j7dq1+NWvfo2qVauiR48euPrqq7B///5SfbQVKlTATTd9D/n5+SX84V8d9o2tXr0GV199GkaMGI7Zs+dg5cqVQf106dIFq1evKVPdU9r8VBqH5p3Dc23xeOCX+Y0bi+eiOmZeZY0nIPkcqZRnTiltzVu8eDG+850bzWskJZXKQk5ODh555C9RXz+8L8FZpVpwTjrpJOzZsxdz5yaPvvA///M7VK6cjTZt2mD48GG4+uqroj9wKxdfPArt27fD739/T/CHqvfffx/XXnsNTj99IGbM+Bxt2rTB0KFDAGT+j3OO838Vf/F2nP/DlLZT9ODBg3H55Zfi7bfHY9GiRdi7Nw9t2rTGtddeg0qV7ClDfZoFBQXIyspCxYqHJG29e5+I73zn25g0aTJeffVV7N27F7Vq1cKtt34/+ut9MfryVfziUqtW7VKvXb16ddSuXRtPPvl4iWNJNonZvTt8MSqum9q1D/ncL730Epx++kC88cY4rF69Cnl5eTjxxF4YNmwYKlWqFPwqu3NnmFfdunXxox/dgRUrVuCZZ/6OHTt2oLCwALfffnuJ+9Y6LCwsxP79+4MH7OLdh4vb42juvfgPI8VeaqV27drRL3F6XwDwl788hlGjRuKKKy5HtWrVsHr1arz00suxu4gXt5/mtWvXoTA31apVLdeL944dO1C3bvjQv2DBAvzqV78GANx2263R/9eocehh/je/+XWpedWte3hDLfUoF0swi9vraOutPP1JqVWrNtatKym937VrV4lfqqydvzNBz5490LNnT/z0pz+PXrQWLVqEunXr4NJLL8XcufPQtGlTDBx4Gu6++x5UqVIFAKI/8FWpUgVFRUU4ePAg9u7di5ycnOCPGMAhBUF+fn6ZffvAgQNYuXIVgENqhCpVquCSSy4u9cX729++Ac2aNcVvf3t3qX7zr4I6dWoDiG+zjz/+GDk5OTjjjNMxYsRw7N69G++//z5ef30s0uk0qlevhp07d5R5naR9Im7e4fopboOy1oayxlN55kilPHOKFR3hWFCsxlq48LDyZ//+/Vi1ahWaNGla4vysrCz06dMbn3/+ebk2M1u9+tBeBEuWLMWePXvw7W/fgH/84x1s3rw5OO+ss87EuecOxWOPPYHly1cExz766GO0aNEC1157Db75zeuQn5+P0aPH4Jprrv7K5w3H+b+Cv3g7zv9pSv6a1K9fH0yfPgOvvvpa9H9Nm5Z8YDgS+vbti2XLlgV/me/YsWOp59aoUSP4XCy/jHuw3Lt3L7Zt24aHH/7zEZWtRo1Q3lm8CU1x3NN+/frivfcmBZtw9ejRIya3sF67dz8B2dnZ+OMfH448fFlZWahWreoRlVU5mnvfs2cvCgoK8Lvf/R7pdMlfOcIHsJL9ZceOHXj66b8ilUpFoW1uu+1W3HnnXaVaAorbr2bNmsHxmjVrRfdSHhYvXoJu3boGL2d5eXnRCxfHRS7O+8EHHyr1wbI8vt6jrbfy9aeQnTt3lCpHrlmzJlatWiX/+9Xunt64cRPk5+eXUMasWrUm2gm6UaOGqFixYiQDZ+6//w/48MOP8Le/PYMNG3JRoUIFNGrUELm5h33eTZo0xoYN5fdgr1q1CgMHnlZCon7llZfjxBN74b777v9avN3FdOvWDQUFBVi1amWpxw+FeZqIiRMnok6dOjjllJMxatRIbN++A++//wH27Nlbws8dl8+/GkczR5ZvTsnsvW/YsAFFRUVIlZBlpEqt9y5duqBmzZpl7mZuUTzmGzSoH7x49+nTG1dffRVGjx4TxK8vJp1O47nnnsdrr72OOnXqYMuWLWjSpDGA0jeldBzn6InfVcNxnP+TVKqUHbysACh146MjITu7Uom8Tzml9LxPPLFX8PDSp09v5Ofnl/pLH3DoV85atWph//58rFy5qsS/sujd+0T53Bs7duyIfrXUUEypVCpxTN9KlSohnU4H8r1+/foG8uKjIem9FxYWlvj1aOHCBcjKykKVKlVK/W7SX2HS6TSWL1+OsWPHonLlyqhXr16p561btx75+fno27dP8P/9+vVFbm5uucMnvfvue5E3tyyWLl2G/Px81K5du9R73b8//ldm5WjrLUl/0l8Fi1m+fAVOOKEbcnIqR//XunVrNGjQoMw4wJlm69atqFy5Mho3DuXBrVu3wpYtWwAc+pXu97+/N/hXvE/CAw88GP0xYunSpcjLy0Pfvn2jfLKzs9GzZ88yJeql0aFDe2zbti1om/PPPw9nn302nnjiya+17po3b45Bg87Cp59+lqgfbt++HW+/PR6bNm2K/jC6YMECtGzZAs2bN890cY85SefIgoKCEuPhWM8pR8OsWbOQlZWFzp07R/9XpUoVtG7dqlQLwEkn9ceOHTuOalO39u3bAwA2b94S/V+nTp3w3e9+B++9Nyny48eRl5eHdevWIT8/H2eddRaWLFn6tf4BynH+nfFfvB3HCZg/fz7OOedsLF++HJs2bcYpp5yERo3K/hUlCfPmzce1116DCy+8AMuXL0f37t3RpUvp8YFzcnJw003fw4cffohmzZph2LALMWnS5NhfROfNm4+5c+fhzjt/iLffHo/169cjJ6cKWrZsgUqVKuGVV141y9asWVN84xvX4vPPP0fHjh0xcOBpeOGFF6NfKebPn49Bg87Cpk2bsHfvXgwaNKhMeWUxCxYsRFZWFq6//lv46KOP0KxZMwwdOqTcv+7GkfTeN2zYgB49umPO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bcKmTZt2Q6lqw670g1q2QZW6ujoAQKVSqfm1/m8dE7uL/+3397+RprbZ7pizjPl/lXbt2uGf//kfsX79e7jtttuxZMkS1NXVoVOnzhg3bizeeecdTJny9F+1jO/3PF5fX4+tW7e+L9eqrvcbNmzYY/7AofTt2wef+MTHcccdd2LatGcxatRIfPKTn8A113wDL7/8CgDgIx/5CLp3747rrrseq1evxtixY/DFL34eX/rSl7FmzRq0bNkSvXr1wt1334PFixdhr732xvnnn4fPf/5z+PKXv4KtW7di+PDhGDNmNL773e+iU6dO+Ju/+QheeGEW3nnnHbRu3QoXXHA+fvCD+AfJWvK//sV7r732woAB/fHtb3+n+PV21ao3i7+eANtkoe3bt8f5538I55//IQDAJz7xKXzve9/B9df/MvnlbPDgwfjc5/4WX/ziVY0u5G3btsX5538IQ4cOAQDMn78AN974e6xcuRIAcMIJEzFgQH987WtXY9GixcX3Vq5ciVmzZm2XX4sWLTBmzGh84xvXolWrlpgw4Uj84Q83b3feww8/ghNPPAH33/8gFi4s98vOAQccgA9/+EL86U8P4aab/lD8+xtvvIEFC17GI4/8OTm/b9++OPfcs9G7d2+sW7cO06c/j5tvvgXvvfdeUY/Lli3DunXrcPTRR6FSqeDJJ5/CzTffUrwcVP9aNWbMaOyzzz5YtmwZbr319uLeBwwYgH/4h7/H9773fZxxxuno2bMHfvjDH2HZstdwwQUfQp8+fdC6dWssX74ct99+B55/fkZxbW3Dyy+/AgAwcuRInHnm6ejUqRPefvttPProX3D33fcU93Xttd/AE088iQMPPBCjRo3ErFmz8eMf/2S7+urduzfOPvss9OrVE82bN8eSJUvwhz/cjAULXi7Ouf76X+C///tXGDx4MA45ZBjWrl2L2267A5MnT07yufTSS9CtW1csW/YabrvttlLttXnzpqLPrVmzBosXL8asWbPwb//2ZZx88km44447i7pYunQpfvvb3xX3f8YZp6NTp47YuHETli5dgh//+KdFXoccMgynn/5BdO/eHRs3bsT8+Qvwox/9GJs3b87WDf+qXP1V8Sc/+SmOPfYYHHTQQXjtteW47rrrUalsxWWXXYoePXpg0aJF+PnPr8Mbb2xTZYwfPw4XXfRhfOpT/x+Ahr9C3333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fv0KqdS2vA4uNhBqKup57du3L1avXp39tXtH9O7dG82bNy98WsA220dZJk2ahE996pN4/fXXsXbt2uKv842xcOFC1NfXY+DAAaUsKcC2B69NmzahX79+xQJYV1eHvn37JH/Ff++9DZg6dRqmTp2GJ554Al/60r+gY8eOWLFi2zhtvB/e1ui88uabb6JDhw6F1WZnqL5M7ujXDmDbXHHkkePRunWrYm44+OCDUV9fnzx4d+/ebbvxu2nTpuQeJk16DCeddBL2229fzJs3L5mndlyO13DAAQegXbt2xa8vHTq0R9u2bZP+unr1avzlL5Pwl79Mwsknn4SJEz9Q/IV/8+bNmDFjJmbMmIl7770P//mf30W/fgdjwYIF2LRpE9q3b7edyojJfb8xJdWyZa/h8MMPS7ys/fodjE2bNhV/ENy8eTOmTp2GMWNGY99998XatWsxZ87cIo+FCxehS5cuu7S+VNmypfG1fHewO8v5fwsvvTQHF198EdavX19saDR37lwMGjQQ/fr1w29+87viDzaN/dG8XbsDccEF5+Pqq/8db7zxBvr27YuPf/xjxfHNm7dgwYKXceihh2LatGcbfZFYtGhRsSkeADz55FN48smn8KlPfQItW7YIr1+FfaFbt25Fs2b1qFSAd955J/nDnsIvbueccxbeeustXHfd9di6dSs+//m/K37JLUfT/pi/p/Duu+9i1qzZOP744/Dww4+E97Zw4SK0adMGlcrWRi1MZdnZsdav38FYvXpN8nzcrl275JzGnxXLzbtlmTx5Cs4552z06dMHhx9+eLKJ7q6u98zueC5duHAhxo4dg3333bfRPxbtrnlvwYKXMXjw4GT/mcGDB2PBgvnbnbtx40Zs3LgRe++9N4YOHYKbb76lONasWbPkpXtHCoRLL70EN9108/9s2liXKOeaNWtWs/Uix/t7tb8C++yzD/7+77+AMWPGoHv37mjfvj0OO2wUTj75JLz44kvFg/Ibb6xC//790LZt2+TX3vXr12Pq1Gk4//wPYc6cOWHHmzx5CtauXYu//dv/D/3790f79u3Rv38/nH/+h9CxY0cAwIMP/gnz5s3HF7/4BUycOLGQpw8ePBgjRhxayBEPOeQQ7LvvvvjLXyZh6dJlyX9PP71t07fcX6keeOBBtGjRAiNGjAjrZvXq1bjxxt/juOOOxcc+dgUGDhyI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\n"
+ },
+ "metadata": {},
+ "output_type": "display_data"
+ },
+ {
+ "name": "stdout",
+ "output_type": "stream",
+ "text": [
+ "\n"
+ ]
+ }
+ ],
+ "source": [
+ "gan.train()"
+ ],
+ "metadata": {
+ "collapsed": false,
+ "pycharm": {
+ "name": "#%%\n"
+ }
+ }
+ },
+ {
+ "cell_type": "markdown",
+ "source": [
+ "# AKOA Knees\n",
+ "NOTE: Please update the path to your local OAI AKOA Knee image folder."
+ ],
+ "metadata": {
+ "collapsed": false
+ }
+ },
+ {
+ "cell_type": "code",
+ "execution_count": 6,
+ "outputs": [
+ {
+ "name": "stdout",
+ "output_type": "stream",
+ "text": [
+ "Loading dataset from C:/AKOA_Analysis at (64, 64) resolution.\n",
+ "Found 18680 files belonging to 1 classes.\n",
+ "Sample from dataset:\n"
+ ]
+ },
+ {
+ "data": {
+ "text/plain": "",
+ "image/png": "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\n"
+ },
+ "metadata": {},
+ "output_type": "display_data"
+ },
+ {
+ "name": "stdout",
+ "output_type": "stream",
+ "text": [
+ "\n",
+ "OAI AKOA Knee hyperparameter presets loaded.\n",
+ "Generator model constructed.\n",
+ "Discriminator model constructed.\n",
+ "\n",
+ "Model: \"discriminator\"\n",
+ "_________________________________________________________________\n",
+ "Layer (type) Output Shape Param # \n",
+ "=================================================================\n",
+ "image_in (InputLayer) [(None, 64, 64, 1)] 0 \n",
+ "_________________________________________________________________\n",
+ "convstart (Conv2D) (None, 64, 64, 64) 640 \n",
+ "_________________________________________________________________\n",
+ "conv0 (Conv2D) (None, 64, 64, 64) 36928 \n",
+ "_________________________________________________________________\n",
+ "avg_pool0 (AveragePooling2D) (None, 32, 32, 64) 0 \n",
+ "_________________________________________________________________\n",
+ "conv1 (Conv2D) (None, 32, 32, 64) 36928 \n",
+ "_________________________________________________________________\n",
+ "avg_pool1 (AveragePooling2D) (None, 16, 16, 64) 0 \n",
+ "_________________________________________________________________\n",
+ "conv2 (Conv2D) (None, 16, 16, 64) 36928 \n",
+ "_________________________________________________________________\n",
+ "avg_pool2 (AveragePooling2D) (None, 8, 8, 64) 0 \n",
+ "_________________________________________________________________\n",
+ "conv3 (Conv2D) (None, 8, 8, 64) 36928 \n",
+ "_________________________________________________________________\n",
+ "avg_pool3 (AveragePooling2D) (None, 4, 4, 64) 0 \n",
+ "_________________________________________________________________\n",
+ "conv_final (Conv2D) (None, 4, 4, 32) 18464 \n",
+ "_________________________________________________________________\n",
+ "flatten_conv (Flatten) (None, 512) 0 \n",
+ "_________________________________________________________________\n",
+ "classification_out (Dense) (None, 1) 513 \n",
+ "=================================================================\n",
+ "Total params: 167,329\n",
+ "Trainable params: 167,329\n",
+ "Non-trainable params: 0\n",
+ "_________________________________________________________________\n",
+ "\n",
+ "Model: \"generator\"\n",
+ "__________________________________________________________________________________________________\n",
+ "Layer (type) Output Shape Param # Connected to \n",
+ "==================================================================================================\n",
+ "const (InputLayer) [(None, 512)] 0 \n",
+ "__________________________________________________________________________________________________\n",
+ "const_expander (Dense) (None, 2048) 1050624 const[0][0] \n",
+ "__________________________________________________________________________________________________\n",
+ "const_reshape (Reshape) (None, 4, 4, 128) 0 const_expander[0][0] \n",
+ "__________________________________________________________________________________________________\n",
+ "upscale0 (UpSampling2D) (None, 8, 8, 128) 0 const_reshape[0][0] \n",
+ "__________________________________________________________________________________________________\n",
+ "noise_in0 (InputLayer) [(None, 8, 8, 1)] 0 \n",
+ "__________________________________________________________________________________________________\n",
+ "z0 (InputLayer) [(None, 512)] 0 \n",
+ "__________________________________________________________________________________________________\n",
+ "conv0 (Conv2D) (None, 8, 8, 128) 147584 upscale0[0][0] \n",
+ "__________________________________________________________________________________________________\n",
+ "noise0 (Dense) (None, 8, 8, 128) 256 noise_in0[0][0] \n",
+ "__________________________________________________________________________________________________\n",
+ "mapping_network (Functional) (None, 128) 66112 z0[0][0] \n",
+ " z1[0][0] \n",
+ " z2[0][0] \n",
+ " z3[0][0] \n",
+ "__________________________________________________________________________________________________\n",
+ "add_noise0 (Add) (None, 8, 8, 128) 0 conv0[0][0] \n",
+ " noise0[0][0] \n",
+ "__________________________________________________________________________________________________\n",
+ "scale0 (Dense) (None, 128) 16512 mapping_network[0][0] \n",
+ "__________________________________________________________________________________________________\n",
+ "bias0 (Dense) (None, 128) 16512 mapping_network[0][0] \n",
+ "__________________________________________________________________________________________________\n",
+ "ada_in0 (AdaIN) (None, 8, 8, 128) 0 add_noise0[0][0] \n",
+ " scale0[0][0] \n",
+ " bias0[0][0] \n",
+ "__________________________________________________________________________________________________\n",
+ "leaky0 (LeakyReLU) (None, 8, 8, 128) 0 ada_in0[0][0] \n",
+ "__________________________________________________________________________________________________\n",
+ "upscale1 (UpSampling2D) (None, 16, 16, 128) 0 leaky0[0][0] \n",
+ "__________________________________________________________________________________________________\n",
+ "noise_in1 (InputLayer) [(None, 16, 16, 1)] 0 \n",
+ "__________________________________________________________________________________________________\n",
+ "z1 (InputLayer) [(None, 512)] 0 \n",
+ "__________________________________________________________________________________________________\n",
+ "conv1 (Conv2D) (None, 16, 16, 128) 147584 upscale1[0][0] \n",
+ "__________________________________________________________________________________________________\n",
+ "noise1 (Dense) (None, 16, 16, 128) 256 noise_in1[0][0] \n",
+ "__________________________________________________________________________________________________\n",
+ "add_noise1 (Add) (None, 16, 16, 128) 0 conv1[0][0] \n",
+ " noise1[0][0] \n",
+ "__________________________________________________________________________________________________\n",
+ "scale1 (Dense) (None, 128) 16512 mapping_network[1][0] \n",
+ "__________________________________________________________________________________________________\n",
+ "bias1 (Dense) (None, 128) 16512 mapping_network[1][0] \n",
+ "__________________________________________________________________________________________________\n",
+ "ada_in1 (AdaIN) (None, 16, 16, 128) 0 add_noise1[0][0] \n",
+ " scale1[0][0] \n",
+ " bias1[0][0] \n",
+ "__________________________________________________________________________________________________\n",
+ "leaky1 (LeakyReLU) (None, 16, 16, 128) 0 ada_in1[0][0] \n",
+ "__________________________________________________________________________________________________\n",
+ "upscale2 (UpSampling2D) (None, 32, 32, 128) 0 leaky1[0][0] \n",
+ "__________________________________________________________________________________________________\n",
+ "noise_in2 (InputLayer) [(None, 32, 32, 1)] 0 \n",
+ "__________________________________________________________________________________________________\n",
+ "z2 (InputLayer) [(None, 512)] 0 \n",
+ "__________________________________________________________________________________________________\n",
+ "conv2 (Conv2D) (None, 32, 32, 128) 147584 upscale2[0][0] \n",
+ "__________________________________________________________________________________________________\n",
+ "noise2 (Dense) (None, 32, 32, 128) 256 noise_in2[0][0] \n",
+ "__________________________________________________________________________________________________\n",
+ "add_noise2 (Add) (None, 32, 32, 128) 0 conv2[0][0] \n",
+ " noise2[0][0] \n",
+ "__________________________________________________________________________________________________\n",
+ "scale2 (Dense) (None, 128) 16512 mapping_network[2][0] \n",
+ "__________________________________________________________________________________________________\n",
+ "bias2 (Dense) (None, 128) 16512 mapping_network[2][0] \n",
+ "__________________________________________________________________________________________________\n",
+ "ada_in2 (AdaIN) (None, 32, 32, 128) 0 add_noise2[0][0] \n",
+ " scale2[0][0] \n",
+ " bias2[0][0] \n",
+ "__________________________________________________________________________________________________\n",
+ "leaky2 (LeakyReLU) (None, 32, 32, 128) 0 ada_in2[0][0] \n",
+ "__________________________________________________________________________________________________\n",
+ "upscale3 (UpSampling2D) (None, 64, 64, 128) 0 leaky2[0][0] \n",
+ "__________________________________________________________________________________________________\n",
+ "noise_in3 (InputLayer) [(None, 64, 64, 1)] 0 \n",
+ "__________________________________________________________________________________________________\n",
+ "z3 (InputLayer) [(None, 512)] 0 \n",
+ "__________________________________________________________________________________________________\n",
+ "conv3 (Conv2D) (None, 64, 64, 128) 147584 upscale3[0][0] \n",
+ "__________________________________________________________________________________________________\n",
+ "noise3 (Dense) (None, 64, 64, 128) 256 noise_in3[0][0] \n",
+ "__________________________________________________________________________________________________\n",
+ "add_noise3 (Add) (None, 64, 64, 128) 0 conv3[0][0] \n",
+ " noise3[0][0] \n",
+ "__________________________________________________________________________________________________\n",
+ "scale3 (Dense) (None, 128) 16512 mapping_network[3][0] \n",
+ "__________________________________________________________________________________________________\n",
+ "bias3 (Dense) (None, 128) 16512 mapping_network[3][0] \n",
+ "__________________________________________________________________________________________________\n",
+ "ada_in3 (AdaIN) (None, 64, 64, 128) 0 add_noise3[0][0] \n",
+ " scale3[0][0] \n",
+ " bias3[0][0] \n",
+ "__________________________________________________________________________________________________\n",
+ "leaky3 (LeakyReLU) (None, 64, 64, 128) 0 ada_in3[0][0] \n",
+ "__________________________________________________________________________________________________\n",
+ "image_output (Conv2D) (None, 64, 64, 1) 129 leaky3[0][0] \n",
+ "==================================================================================================\n",
+ "Total params: 1,840,321\n",
+ "Trainable params: 1,840,321\n",
+ "Non-trainable params: 0\n",
+ "__________________________________________________________________________________________________\n",
+ "\n",
+ "Model architecture plots saved to ./output/\n",
+ "\n"
+ ]
+ }
+ ],
+ "source": [
+ "gan = model.StyleGAN(dataset=None,\n",
+ " dataset_path='C:/AKOA_Analysis',\n",
+ " dataset_name='oai akoa knees',\n",
+ " target_image_dims=(64, 64),\n",
+ " epochs=60,\n",
+ " batch_size=32,\n",
+ " z_length=512,\n",
+ " save_progress_plots=False,\n",
+ " show_progress_plots=True,\n",
+ " progress_plot_batch_interval=10,\n",
+ " save_model_checkpoints=False,\n",
+ " model_checkpoint_interval=20,\n",
+ " save_directory='./output',\n",
+ " print_model_summaries=True,\n",
+ " running_in_notebook=True)"
+ ],
+ "metadata": {
+ "collapsed": false,
+ "pycharm": {
+ "name": "#%%\n"
+ }
+ }
+ },
+ {
+ "cell_type": "code",
+ "execution_count": 7,
+ "outputs": [
+ {
+ "data": {
+ "text/plain": "",
+ "image/png": "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/e9v7Te/+c1dH/cvlL44RzCfumQY9zmWu/A+tMlGG23UXfe+972vtS2VY8zZj6ee5evox16DZ349J7FXVa2M35FdPW8cs+f76quvbm3K77bffvvuOvq/Sygyd9Dn7f8co+3K+aY0q6rPPzvvvHNrk1pe1e/RbQPuDUZl3xjLnl/uTz/84Q93fWeddVZr810sCaAPeg2mTSzR4Jj333//1nYepxSV3xtVfW6yFIX5gntXrntVVccee2xrew/EbwDnf8pxmMO22Wab7jrakbIwg/M08nfbn3M6vR9NObEgCIIgCIIgCIIg+K0iH95BEARBEARBEARBMEfkwzsIgiAIgiAIgiAI5oh1SuM949Cb/z/CSPtJrRg1u9ZxU2/IklhV/VH01EtYN8Cj+T//+c93fSz58exnP7vro16CuhxrODiuX6UsBW1JbcnrXve67rorrriitalVqeq1UCONC8u+WH98ww03rHZMVb0++4UvfGFrs2xBVa8tdLms8847r7V33XXXro86S+oFrSOiPsh+xT7q7ap67R9t9653vau7jhqXkUaH17G0QlXvIyxxVtXr6KxBnI1x+Yq+tMLawkKttKf1ZYyhkQbUv3O5minwntbG8tn0A8f5tttu29rWPjOerQukhpBnHHh+qVsanRHg0hf8mzpMxxdjw+Pn72gf25v3sDaMumvr9Jln+TvPBefJ4x/lNOYZxontyJh1H8thUXNY1efykcaO9rENzjjjjNZmCTFrs/k7+zfz4qhM0bywsGRJG59ztP2B4LyOxj16h9F1nFfmfZfUY47mmQ1V/Xkv1113XddHrSn9y2ULqev3/ek33hvQF3l/rhtV/b7EeZLxx7lxDNPPrYNmnFrHyudxjfd19Fnr6KmV996A5deoG7YOnXPvGKMOlHryqt523G+ddtpp3XXM3yMd9wgco+OC95zS784rlhcWFtr8OA6JUXm0UQnXiy++uLW322677jr+7Xnjukt7OQ5HJc+YR72ucL3j/o7nEVX15+NYf8xYt1/wzAPGBve0VX3ce/3hfoD7BM8Tf8ecVdXHns8fYS6hDRgzVX1O8NrENdlxyftzHC6XOdpDM2e6j3pzzi8141W9b3meODe8xygWRnvOqdLVa/J1mn/xDoIgCIIgCIIgCII5Ih/eQRAEQRAEQRAEQTBHrFNU8xkFxxQ8UqRMYxmVkCGN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xt/q7+fndflaY1wyiIlRvLBv+SDX0j5LZOOptXapfXWR/jg9pvW0h5vFzd3vfo963vNeMPm7XxdvftMb6v/8nx9V1ap73J//AvuSVdbPle9wi2Kb+Ytz9Tu/0+/Ruee6693u1vX94uc/b23aeD2NYxn87jZYq6uUV+y6g1ghGG+r+D/gvqVLVo6TseEcwFH47vShX8BWnoufYW95e9nYc0qstxS+hoE4xzD2uJevqrrtbVbuO20DXsu59lpwm8E9bnPblXP6n//xH10fv026efJ6gvadf/d3J+9xR3wP/OhH/95dd8uylePnfr2qn9Opfdod73inevaz/6RGWGc+vP/t335Yr3n1K6qqaptttun6rr32Wlz3b13fXe9619a+RR9cDBI6yO/93u91133ve99r7V/8op+In/zkJ619pzvdaXL8/Gh2wiX4gVhVteWWW7b2Vltt1dp3v/vdu+v40ea+f/3Xf21tJ8T73ve+rX3z177c2t4g3ete92ptfvhV9Tb40Y9+1NpOBAy0nyPZVvWJ1DbmfX74wx+u9jdV/bvdcMMNXd9DH/rQ1v7f//t/d33f//73V/ss2+oud7lLa/Odq3qf+eIXv9j1/QeSyM0339za9M2qquuuu6617SNf/vLKudlkk01a+8c//nF3HW3sDRLnzXMzs/mL/tcrah74wfe/Vy98wXOqatV543zfDv+jyX/bLwjGl+OQ9/C88X+S3P/+929t+z/zg/2Csef54DzyulUWVPSN/sefFzJe2y36uj//9oLBPtrK/jPKW/yd/6cX+2hvzxPfzfe44x3v2NrMMVVV//mf/9na9C3fYzT+qXmq6mOK47d9OE/u47ut6Tyt6f/I9Rhf/do3T/7u1uDff/Rv9da3/FNVVe24445d32c/+9nW/sEPftD1cU3z/5SkrTkHjOeqPm69jnMt4T08B93//P4V/qfG0okPY+cxjuPOd75z18exeFyMA+Y422CUJ5mveB3jZnRdVW9X25g2+D//5//UFHid13ja377N5/HdRvsEY/Thwb7/+q+V/5PI4+D82sbM7XwX79k4Zo+J9r/nPe/Z9c32Nv/rxX838Ra3Dv/n//yojnnPW6uq6vd///e7Pu5L7Lu0ufdOU3nT+YF76KOOOqrr+9rXvtbatLH3R8z7G220UdfHOfXazXlkn3Mor/M6S79wbPwuPvAY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L3npb3sovzLOPPOs+tSnzvltD+PXxo477lBHHHF43fOe96wf/OAHddJJJ9eVV36+9S8sLNThhx9au+yyS93lLnepf//3f69LL72sTjnlE7VixYqqqrrtbW9bRx756Nphh+3rjne8Y/3bv/1bnXfeBXX22We3+xx11ONq9913r1/84uf1sY+dWJdeelnr23bbbeuQQx5er3zlq39zLw78/+LD+9nPfnbd9ra3qfe+9331/e9/v+50p9+tzTbbtO54xzv8xseydOnSesEL/qw23PB+9YlPnFpf+cpX6ic/+Wnd8573rG233aYe/vCD6sMf/mj3m7322qvOPfe82m23Xev3f//367vf/e4q912xYkU9+tFH1Dve8a5faTx7771XPfnJT6pLL7203va2d9QPf/jDuvOdf7c22mijesITHl8vfvFvPzEtXbq0+7D8f+15a4prrrm23vWud9eSJUvqTne6U22++YPrsMMOrV133aVe+9rX1S9+8Yuqqvqv//qvuY1hZpv/+I//uNX3uuWWW+qWW25ZC6OaD26NH8xzDmZYWFioqqrFxcW5P+v/1phYW/h//f3+X8SvOmdrI2cFwf9fcfe7371e9KL/WT/96c/q5JM/Xt/61rdqYWGhNtjg92q33XatH//4x3XZZZf/Vsf4m87jS5YsaR+D88Zsvf/5z3++zvwPDuMBD9iknvnM/1GnnPKJuuKKK2vHHXeoZz3rmfXKV76qbrrpa1VVdcghB9e+++5X73nPMfWtb32r7ne/+9Yf/uHTa9myZXXqqadVVdXRRz+utthii3r3u99TP/jBD2uzzTatpz71KfXjH/9nXXLJpbXtttvWLrvsXP/0T/9UG2ywQT3taX9QV199Tf34xz+u293utnX00UfVm940/gfJeeL/+Q/v29/+9rXZZpvWP/7j69q/3v7rv/5bff3rX2/X/OVf/kXd4x73qKOOelwdddTjqqrqmc98dr3+9a+rY455X/cvZ1tssUU9//l/Wn/+53+52oX8Lne5Sx111ONqq622rKqqr371xvrwhz9S3//+96uq6qCDDqzNNtu0XvGKv61vfOOb7Xff//7365prrlnlfuuvv37tssvO9apXvaZue9vb1J577lHHH3/CKtedc8659bCHHVRnnvkvdfPNa/YvO3e9613rCU94fJ199qfqox89vv33H/7wh3Xj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\n"
+ },
+ "metadata": {},
+ "output_type": "display_data"
+ },
+ {
+ "name": "stdout",
+ "output_type": "stream",
+ "text": [
+ "\n"
+ ]
+ }
+ ],
+ "source": [
+ "gan.train()"
+ ],
+ "metadata": {
+ "collapsed": false,
+ "pycharm": {
+ "name": "#%%\n"
+ }
+ }
+ },
+ {
+ "cell_type": "markdown",
+ "source": [
+ "# OASIS Brains\n",
+ "NOTE: Please update the path to your local OASIS Brain training images folder."
+ ],
+ "metadata": {
+ "collapsed": false
+ }
+ },
+ {
+ "cell_type": "code",
+ "execution_count": 10,
+ "outputs": [
+ {
+ "name": "stdout",
+ "output_type": "stream",
+ "text": [
+ "Loading dataset from C:/OASIS_brains/keras_png_slices_train at (64, 64) resolution.\n",
+ "Found 9664 files belonging to 1 classes.\n",
+ "Sample from dataset:\n"
+ ]
+ },
+ {
+ "data": {
+ "text/plain": "",
+ "image/png": "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\n"
+ },
+ "metadata": {},
+ "output_type": "display_data"
+ },
+ {
+ "name": "stdout",
+ "output_type": "stream",
+ "text": [
+ "\n",
+ "OASIS Brains hyperparameter presets loaded.\n",
+ "Generator model constructed.\n",
+ "Discriminator model constructed.\n",
+ "\n",
+ "Model: \"discriminator\"\n",
+ "_________________________________________________________________\n",
+ "Layer (type) Output Shape Param # \n",
+ "=================================================================\n",
+ "image_in (InputLayer) [(None, 64, 64, 1)] 0 \n",
+ "_________________________________________________________________\n",
+ "convstart (Conv2D) (None, 64, 64, 256) 2560 \n",
+ "_________________________________________________________________\n",
+ "conv0 (Conv2D) (None, 64, 64, 256) 590080 \n",
+ "_________________________________________________________________\n",
+ "avg_pool0 (AveragePooling2D) (None, 32, 32, 256) 0 \n",
+ "_________________________________________________________________\n",
+ "conv1 (Conv2D) (None, 32, 32, 256) 590080 \n",
+ "_________________________________________________________________\n",
+ "avg_pool1 (AveragePooling2D) (None, 16, 16, 256) 0 \n",
+ "_________________________________________________________________\n",
+ "conv2 (Conv2D) (None, 16, 16, 256) 590080 \n",
+ "_________________________________________________________________\n",
+ "avg_pool2 (AveragePooling2D) (None, 8, 8, 256) 0 \n",
+ "_________________________________________________________________\n",
+ "conv3 (Conv2D) (None, 8, 8, 256) 590080 \n",
+ "_________________________________________________________________\n",
+ "avg_pool3 (AveragePooling2D) (None, 4, 4, 256) 0 \n",
+ "_________________________________________________________________\n",
+ "conv_final (Conv2D) (None, 4, 4, 32) 73760 \n",
+ "_________________________________________________________________\n",
+ "flatten_conv (Flatten) (None, 512) 0 \n",
+ "_________________________________________________________________\n",
+ "classification_out (Dense) (None, 1) 513 \n",
+ "=================================================================\n",
+ "Total params: 2,437,153\n",
+ "Trainable params: 2,437,153\n",
+ "Non-trainable params: 0\n",
+ "_________________________________________________________________\n",
+ "\n",
+ "Model: \"generator\"\n",
+ "__________________________________________________________________________________________________\n",
+ "Layer (type) Output Shape Param # Connected to \n",
+ "==================================================================================================\n",
+ "const (InputLayer) [(None, 512)] 0 \n",
+ "__________________________________________________________________________________________________\n",
+ "const_expander (Dense) (None, 4096) 2101248 const[0][0] \n",
+ "__________________________________________________________________________________________________\n",
+ "const_reshape (Reshape) (None, 4, 4, 256) 0 const_expander[0][0] \n",
+ "__________________________________________________________________________________________________\n",
+ "upscale0 (UpSampling2D) (None, 8, 8, 256) 0 const_reshape[0][0] \n",
+ "__________________________________________________________________________________________________\n",
+ "noise_in0 (InputLayer) [(None, 8, 8, 1)] 0 \n",
+ "__________________________________________________________________________________________________\n",
+ "z0 (InputLayer) [(None, 512)] 0 \n",
+ "__________________________________________________________________________________________________\n",
+ "conv0 (Conv2D) (None, 8, 8, 256) 590080 upscale0[0][0] \n",
+ "__________________________________________________________________________________________________\n",
+ "noise0 (Dense) (None, 8, 8, 256) 512 noise_in0[0][0] \n",
+ "__________________________________________________________________________________________________\n",
+ "mapping_network (Functional) (None, 256) 74432 z0[0][0] \n",
+ " z1[0][0] \n",
+ " z2[0][0] \n",
+ " z3[0][0] \n",
+ "__________________________________________________________________________________________________\n",
+ "add_noise0 (Add) (None, 8, 8, 256) 0 conv0[0][0] \n",
+ " noise0[0][0] \n",
+ "__________________________________________________________________________________________________\n",
+ "scale0 (Dense) (None, 256) 65792 mapping_network[0][0] \n",
+ "__________________________________________________________________________________________________\n",
+ "bias0 (Dense) (None, 256) 65792 mapping_network[0][0] \n",
+ "__________________________________________________________________________________________________\n",
+ "ada_in0 (AdaIN) (None, 8, 8, 256) 0 add_noise0[0][0] \n",
+ " scale0[0][0] \n",
+ " bias0[0][0] \n",
+ "__________________________________________________________________________________________________\n",
+ "leaky0 (LeakyReLU) (None, 8, 8, 256) 0 ada_in0[0][0] \n",
+ "__________________________________________________________________________________________________\n",
+ "upscale1 (UpSampling2D) (None, 16, 16, 256) 0 leaky0[0][0] \n",
+ "__________________________________________________________________________________________________\n",
+ "noise_in1 (InputLayer) [(None, 16, 16, 1)] 0 \n",
+ "__________________________________________________________________________________________________\n",
+ "z1 (InputLayer) [(None, 512)] 0 \n",
+ "__________________________________________________________________________________________________\n",
+ "conv1 (Conv2D) (None, 16, 16, 256) 590080 upscale1[0][0] \n",
+ "__________________________________________________________________________________________________\n",
+ "noise1 (Dense) (None, 16, 16, 256) 512 noise_in1[0][0] \n",
+ "__________________________________________________________________________________________________\n",
+ "add_noise1 (Add) (None, 16, 16, 256) 0 conv1[0][0] \n",
+ " noise1[0][0] \n",
+ "__________________________________________________________________________________________________\n",
+ "scale1 (Dense) (None, 256) 65792 mapping_network[1][0] \n",
+ "__________________________________________________________________________________________________\n",
+ "bias1 (Dense) (None, 256) 65792 mapping_network[1][0] \n",
+ "__________________________________________________________________________________________________\n",
+ "ada_in1 (AdaIN) (None, 16, 16, 256) 0 add_noise1[0][0] \n",
+ " scale1[0][0] \n",
+ " bias1[0][0] \n",
+ "__________________________________________________________________________________________________\n",
+ "leaky1 (LeakyReLU) (None, 16, 16, 256) 0 ada_in1[0][0] \n",
+ "__________________________________________________________________________________________________\n",
+ "upscale2 (UpSampling2D) (None, 32, 32, 256) 0 leaky1[0][0] \n",
+ "__________________________________________________________________________________________________\n",
+ "noise_in2 (InputLayer) [(None, 32, 32, 1)] 0 \n",
+ "__________________________________________________________________________________________________\n",
+ "z2 (InputLayer) [(None, 512)] 0 \n",
+ "__________________________________________________________________________________________________\n",
+ "conv2 (Conv2D) (None, 32, 32, 256) 590080 upscale2[0][0] \n",
+ "__________________________________________________________________________________________________\n",
+ "noise2 (Dense) (None, 32, 32, 256) 512 noise_in2[0][0] \n",
+ "__________________________________________________________________________________________________\n",
+ "add_noise2 (Add) (None, 32, 32, 256) 0 conv2[0][0] \n",
+ " noise2[0][0] \n",
+ "__________________________________________________________________________________________________\n",
+ "scale2 (Dense) (None, 256) 65792 mapping_network[2][0] \n",
+ "__________________________________________________________________________________________________\n",
+ "bias2 (Dense) (None, 256) 65792 mapping_network[2][0] \n",
+ "__________________________________________________________________________________________________\n",
+ "ada_in2 (AdaIN) (None, 32, 32, 256) 0 add_noise2[0][0] \n",
+ " scale2[0][0] \n",
+ " bias2[0][0] \n",
+ "__________________________________________________________________________________________________\n",
+ "leaky2 (LeakyReLU) (None, 32, 32, 256) 0 ada_in2[0][0] \n",
+ "__________________________________________________________________________________________________\n",
+ "upscale3 (UpSampling2D) (None, 64, 64, 256) 0 leaky2[0][0] \n",
+ "__________________________________________________________________________________________________\n",
+ "noise_in3 (InputLayer) [(None, 64, 64, 1)] 0 \n",
+ "__________________________________________________________________________________________________\n",
+ "z3 (InputLayer) [(None, 512)] 0 \n",
+ "__________________________________________________________________________________________________\n",
+ "conv3 (Conv2D) (None, 64, 64, 256) 590080 upscale3[0][0] \n",
+ "__________________________________________________________________________________________________\n",
+ "noise3 (Dense) (None, 64, 64, 256) 512 noise_in3[0][0] \n",
+ "__________________________________________________________________________________________________\n",
+ "add_noise3 (Add) (None, 64, 64, 256) 0 conv3[0][0] \n",
+ " noise3[0][0] \n",
+ "__________________________________________________________________________________________________\n",
+ "scale3 (Dense) (None, 256) 65792 mapping_network[3][0] \n",
+ "__________________________________________________________________________________________________\n",
+ "bias3 (Dense) (None, 256) 65792 mapping_network[3][0] \n",
+ "__________________________________________________________________________________________________\n",
+ "ada_in3 (AdaIN) (None, 64, 64, 256) 0 add_noise3[0][0] \n",
+ " scale3[0][0] \n",
+ " bias3[0][0] \n",
+ "__________________________________________________________________________________________________\n",
+ "leaky3 (LeakyReLU) (None, 64, 64, 256) 0 ada_in3[0][0] \n",
+ "__________________________________________________________________________________________________\n",
+ "image_output (Conv2D) (None, 64, 64, 1) 257 leaky3[0][0] \n",
+ "==================================================================================================\n",
+ "Total params: 5,064,641\n",
+ "Trainable params: 5,064,641\n",
+ "Non-trainable params: 0\n",
+ "__________________________________________________________________________________________________\n",
+ "\n",
+ "Model architecture plots saved to ./output/\n",
+ "\n"
+ ]
+ }
+ ],
+ "source": [
+ "gan = model.StyleGAN(dataset=None,\n",
+ " dataset_path='C:/OASIS_brains/keras_png_slices_train',\n",
+ " dataset_name='oasis brains',\n",
+ " target_image_dims=(64, 64),\n",
+ " epochs=30,\n",
+ " batch_size=32,\n",
+ " z_length=512,\n",
+ " save_progress_plots=False,\n",
+ " show_progress_plots=True,\n",
+ " progress_plot_batch_interval=10,\n",
+ " save_model_checkpoints=False,\n",
+ " model_checkpoint_interval=20,\n",
+ " save_directory='./output',\n",
+ " print_model_summaries=True,\n",
+ " running_in_notebook=True)"
+ ],
+ "metadata": {
+ "collapsed": false,
+ "pycharm": {
+ "name": "#%%\n"
+ }
+ }
+ },
+ {
+ "cell_type": "code",
+ "execution_count": 11,
+ "outputs": [
+ {
+ "data": {
+ "text/plain": "",
+ "image/png": "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L2/hcLbtdnr9yWfPnt3pypFz5syZTlqjcyf9DEdFunnzFmTOnBkFCxbwfgksXLgQNm/eQsdtTncjJr6PhQoVRIkSJVC3bh3vmDZtWqNNm9Z48MGH3B83mG3btoXwoUf973ucQExMDBISEnD11X1x9dV9vaPuuOM2bN26DY899vipv/A5pEqVKjh69CjWrk1Kt/7EiROYOHEiJk6ciDx58qBhwwbo1asnfv99N6ZO/RH79yen8XOHOs+fjbMZI09vTDm7716wYEHcd989SExM9BQhoY8vgCxZsuCJJ9L2pZdffhE//TQNn3zyabrvPX78ODZs2ID8+fOnqcuWLRuqVauG8eO/S+ed555TdZmdO3chOTk53WsVQoSHFt5CZECio2PSSMVOtRlMuMTERKc5d8OG6Z+7Vq2a+Oab4e4hsU6d2khJSUn3lz7g5K+c7du3w6FDKae1gEqldu1amDp1Kr2ujd27d7sHe5uKKSoqKuycvtHR0Thx4oQnH65Xr+452wE23O9+7NixNL8eLV2aiEyZMiFbtmxYsmTJGV/DiRMnsHr1aowaNQp///vjyJs3b7qL6I0bNyElJQV169bxdiKvV68utmzZctrpk374YRIaNmyALl06h9zZPJWVK1chJSUFuXPnxoIFp5Z9BnG27RZOf7K/CqayevUatGzZwvtVtmTJksifP79nSTjXpC6Ag35hW7lyJQ4cOIC6des6v21MTAxq1PC9qL/99ht69OiOHDlyuB2Ry5cvjyxZsrhf0z/55FNkzernO7799luxbNlyTJkyNaQy4tixY1iyZAkqVaro/X/lypWQkpKCbdu24fjx43j+eX9zuVy5cuL222/DsGHfpOuNjiTFihVDq1YtMWPGf8P6pf3333/HuHHj0aRJY/eH0cTERNStWwfFihXDhg0bIn3J55Rwx8ijR4+miYdzPaaEIleuXHjggfuwbdt2vPfeB2H9AWPFipVp+lm1alXRqVNHvPLKq9i+fXvI92bJkgWXXXZZujFdu3YtREdHe7aSSBAdHY1q1aqdMk95oUIFER8f7+X7FkKcHlp4C5EBWbJkCdq0aY3Vq1dj27btaNjwchQseOpfUcJh8eIluP7669ClS2esXr0a1apVQ6VK6ecTjY2NxR133I6ffvoJRYsWRdeuXTB58pSQv4guXrwEixYtRv/+D2DcuPHYtGkT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RVEURVEUxY3owltRFEVRFEVRFEVR3IguvBVFURRFURRFURTFjejCW1EURVEURVEURVHciC68FUVRFEVRFEVRFMWN6MJbURRFURRFURRFUdyILrwVRVEURVEURVEUxY3owltRFEVRFEVRFEVR3IguvBVFURRFURRFURTFjejCW1EURVEURVEURVHciC68FUVRFEVRFEVRFMWNeF3vAuSWkiVLY/xnE653MRQlTxMUFOSW82r/VZRrg/ZhRbl50f6rKDcvuem/juIlKjmvQVkURVEURVEURVEUJV+iUnNFURRFURRFURRFcSO68FYURVEURVEURVEUN6ILb0VRFEVRFEVRFEVxI7rwVhRFURRFURRFURQ3ogtvRVEURVEURVEURXEjuvBWFEVRFEVRFEVRFDeiC29FURRFURRFURRFcSO68FYURVEURVEURVEUN6ILb0VRFEVRFEVRFEVxI7rwVhRFURRFURRFURQ3ogtvRVEURVEURVEURXEjuvBWFEVRFEVRFEVRFDeiC29FURRFURRFURRFcSO68FYURVEURVEURVEUN6ILb0VRFEVRFEVRFEVxI7rwVhRFURRFURRFURQ3ogvv/8iECd+iUaNG17sYyk1M4cKFMWHCtwgNDb0q53v22f/DnXcOuSrncsXVaPctW7bA559/epVKdO3ITf1ei3ug5B3GjHkXnTp1vN7FyNPoXK0oys1Oz5498Oabb1zvYij/Aa/rXYBrgb9/YfTs2RN169ZBkSJFkJh4EcePH8f8+X9g165dADIffP76awkWLvzT7eXx9PTE7be3R7NmzVCyZAk4nU6cPXsO27dvx19/LUFMTIxxfLlyZfHqq68gMvIARo9+N9v5Jkz4FmlpaXjppZcRFXXW+vdRo+6Cv39hjBs33rY81apVQ6dOHVGlSmX4+fkhNjYWhw8fxtKlf2P37j1X56KvAdfyHl5rRo26C61atQQApKWlITExEcePn8DGjRuxbFk40tPTrWM/++xzpKenubU8TzzxFBITE//TOdatW49t27ZfpRJlMWHCt/jssy+wcePGq37u3HIt7oFyeYKCgvD+++/hzTffwqFDh693cZRrgKt572qMWYqSnwkICEDXrl1Qr15dFCtWDBcvXsSZM2ewdu06rFixEsnJIpXLsAABAABJREFUyde7iLmiZ88eaNSoEV599bXrXZQr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\n"
+ },
+ "metadata": {},
+ "output_type": "display_data"
+ },
+ {
+ "name": "stdout",
+ "output_type": "stream",
+ "text": [
+ "\n"
+ ]
+ }
+ ],
+ "source": [
+ "gan.train()\n"
+ ],
+ "metadata": {
+ "collapsed": false,
+ "pycharm": {
+ "name": "#%%\n"
+ }
+ }
+ }
+ ],
+ "metadata": {
+ "kernelspec": {
+ "name": "base",
+ "language": "python",
+ "display_name": "base"
+ },
+ "language_info": {
+ "codemirror_mode": {
+ "name": "ipython",
+ "version": 2
+ },
+ "file_extension": ".py",
+ "mimetype": "text/x-python",
+ "name": "python",
+ "nbconvert_exporter": "python",
+ "pygments_lexer": "ipython2",
+ "version": "2.7.6"
+ }
+ },
+ "nbformat": 4,
+ "nbformat_minor": 0
+}
\ No newline at end of file
diff --git a/recognition/44776859_StyleGAN/model.py b/recognition/44776859_StyleGAN/model.py
new file mode 100644
index 0000000000..a6c38bd152
--- /dev/null
+++ b/recognition/44776859_StyleGAN/model.py
@@ -0,0 +1,709 @@
+"""
+StyleGAN implementation.
+
+@author Christopher Atkinson
+@email c.atkinson@uqconnect.edu.au
+"""
+
+import os
+
+# Suppress tensorflow logging:
+os.environ['TF_CPP_MIN_LOG_LEVEL'] = '2'
+
+import tensorflow as tf
+
+# Set tf memory growth, verify version and cuda/gpu functionality.
+print(f'\nTensorflow version: {tf.__version__}')
+print(f'Tensorflow CUDA {"is" if tf.test.is_built_with_cuda() else "is not"} available.')
+gpus = tf.config.experimental.list_physical_devices('GPU')
+if gpus:
+ try:
+ for gpu in gpus:
+ tf.config.experimental.set_memory_growth(gpu, True)
+ print('Tensorflow set GPU memory growth to True.')
+ except RuntimeError as e:
+ print(e)
+print(f'Tensorflow {"is" if tf.executing_eagerly() else "is not"} executing eagerly.')
+
+import tensorflow_datasets as tfds
+
+from tensorflow.keras import Model
+from tensorflow.keras.layers import Input, Add, Dense, Flatten, Reshape, LeakyReLU, ReLU, \
+ Conv2D, AveragePooling2D, UpSampling2D
+from tensorflow.keras.initializers import GlorotNormal
+from tensorflow.keras.layers.experimental.preprocessing import Rescaling
+from tensorflow.keras.optimizers import Adam
+from tensorflow.keras.losses import BinaryCrossentropy
+from tensorflow.keras import backend as K
+
+import numpy as np
+from numpy import average
+import itertools
+import matplotlib as mpl
+from matplotlib import pyplot as plt, gridspec, colors, cm
+from matplotlib.ticker import FuncFormatter
+from IPython import display
+import time
+
+# Colours used in plots.
+dark = '#191b26'
+darker = '#151722'
+cream = '#b3b5be'
+mint = '#67a39a'
+
+# Setting matplotlib to dark mode.
+mpl.rcParams['text.color'] = cream
+mpl.rcParams['axes.labelcolor'] = cream
+mpl.rcParams['axes.facecolor'] = dark
+mpl.rcParams['axes.edgecolor'] = cream
+mpl.rcParams['figure.facecolor'] = darker
+mpl.rcParams['xtick.color'] = cream
+mpl.rcParams['ytick.color'] = cream
+
+
+class AdaIN(tf.keras.layers.Layer):
+ """
+ Apply instanced scale and bias to normalised input.
+ """
+ def __init__(self, epsilon=1e-5, **kwargs):
+ super(AdaIN, self).__init__(**kwargs)
+ self.epsilon = epsilon # To avoid dividing by zero.
+
+ def call(self, inputs, *args, **kwargs):
+ """
+ Normalises x, then applies individual scale and bias to each channel(feature) of x,
+ for every element in the batch.
+ """
+ x, scale, bias = inputs
+
+ # Reshape (batch*len) y vectors into (batch,1,1,len) to support batched multiplication.
+ scale = tf.reshape(scale, shape=(-1, 1, 1, tf.shape(scale)[-1]))
+ bias = tf.reshape(bias, shape=(-1, 1, 1, tf.shape(bias)[-1]))
+
+ # Normalise input to be centered on 0 with standard deviation of 1.
+ mean = K.mean(x, axis=(1, 2), keepdims=True)
+ stddev = K.std(x, axis=(1, 2), keepdims=True) + self.epsilon
+ x_norm = (x - mean) / stddev
+
+ return (x_norm * scale) + bias
+
+
+class StyleGAN:
+ """Tensorflow 2 StyleGAN implementation."""
+
+ def __init__(self, dataset=None, dataset_path=None, dataset_name='', target_image_dims=(64, 64),
+ epochs=999, batch_size=32, z_length=100, save_progress_plots=True, show_progress_plots=True,
+ progress_plot_batch_interval=50, save_model_checkpoints=False, model_checkpoint_interval=15,
+ save_directory='./output', print_model_summaries=True, running_in_notebook=False):
+ """
+ Initialise generator and discriminator, and read in dataset.
+
+ :param dataset: (Optional) pass in your own dataset.
+ :param dataset_path: Path to local dataset. Path should lead to a folder of images.
+ :param dataset_name: Key words to describe the dataset (eg. 'oasis', 'knee', 'mnist').
+ :param target_image_dims: The desired dimensions to reshape the input to and shape the output to.
+ Dimensions must be square and must not exceed the input data dimensions.
+ :param epochs: Number of epochs to train for.
+ :param batch_size: Number of samples per batch. Lower this if training fails due to OOM.
+ :param z_length: Length of the latent vector z. 100 is sufficient for MNIST Digits, but larger datasets
+ require ~512 to avoid mode collapse.
+ :param save_progress_plots: Whether to export progress plots.
+ :param show_progress_plots: Whether to show progress plots (only set to true if running in jupyter notebook)
+ :param progress_plot_batch_interval: How often to generate a new progress plot.
+ :param save_model_checkpoints: Whether or not to save model checkpoints.
+ :param model_checkpoint_interval: How many epochs to have elapsed before saving a new model checkpoint.
+ :param save_directory: Path to save progress plots and checkpoints to.
+ :param print_model_summaries: Whether to print summaries of models upon creation.
+ :param running_in_notebook: Whether this is being executed in a jupyter notebook.
+ """
+ self.dataset = dataset
+ self.epochs = epochs
+ self.batch_size = batch_size
+ self.z_length = z_length
+ self.jupyter = running_in_notebook
+ self.save_progress_plots = save_progress_plots
+ self.show_progress_plots = show_progress_plots
+ self.progress_interval = progress_plot_batch_interval
+ self.save_model_checkpoints = save_model_checkpoints
+ self.model_checkpoint_interval = model_checkpoint_interval
+
+ # Set up output directories.
+ self.save_directory = save_directory
+ self.plot_directory = save_directory + '/progress_plots'
+ self.checkpoint_directory = save_directory + '/model_checkpoints'
+ for path in (self.save_directory, self.plot_directory, self.checkpoint_directory):
+ if not os.path.exists(path) and os.access(os.path.dirname(path), os.W_OK):
+ os.makedirs(path, exist_ok=True)
+ print(f'Created folder: {path}')
+
+ self.max_graphed = 50 # Number of loss values to use in progress plot.
+ self.colorbar_norm = mpl.colors.TwoSlopeNorm(vmin=-1.05, vcenter=-0.1, vmax=1.05)
+
+ # Whether to use MNIST dataset from tfds or read in dataset from provided path.
+ if dataset is None and dataset_path:
+ self.dataset = self.get_local_image_dataset(dataset_path, target_image_dims)
+ elif any(name in dataset_name for name in ('mnist', 'digit')):
+ self.dataset = self.get_mnist_dataset()
+ self.check_dataset()
+
+ # Determine image dimensions
+ image = list(self.dataset.take(1).as_numpy_iterator())[0][0]
+ self.image_size = image.shape[0]
+ self.num_channels = image.shape[-1]
+
+ self.start_size, self.num_blocks = self._smallest_by_halving()
+
+ self.params = self.get_hyperparameters(dataset_name)
+
+ self.generator = self.make_generator()
+ self.discriminator = self.make_discriminator()
+
+ # Determine number of trainable weights in each model.
+ self.num_gen_weights = int(np.sum([np.prod(v.get_shape()) for v in self.generator.trainable_weights]))
+ self.num_disc_weights = int(np.sum([np.prod(v.get_shape()) for v in self.discriminator.trainable_weights]))
+
+ self.gen_optimizer = Adam(learning_rate=self.params['learning_rate_gen'], beta_1=self.params['beta_1'])
+ self.disc_optimizer = Adam(learning_rate=self.params['learning_rate_disc'], beta_1=self.params['beta_1'])
+
+ self.checkpoint_prefix = os.path.join(self.checkpoint_directory, "ckpt")
+ self.checkpoint = tf.train.Checkpoint(generator_optimizer=self.gen_optimizer,
+ discriminator_optimizer=self.disc_optimizer,
+ generator=self.generator,
+ discriminator=self.discriminator)
+
+ # Common seed comprising input z and noise, to be used repeatedly within progress plots.
+ self.progress_seed = self.generate_inputs(batch_size=8)
+
+ self.g_losses, self.d_real_losses, self.d_fake_losses = [], [], []
+ self.g_loss_avg, self.d_fake_loss_avg, self.d_real_loss_avg, self.d_loss_avg = 0, 0, 0, 0
+ self.balance = 0 # Adversarial balance.
+
+ self.start_time = 0
+ self.iteration = 0
+ self.num_batches = len(self.dataset) - 1
+ self.current_batch = 0
+ self.current_epoch = 0
+
+ # Determine variance of dataset (within shuffled sample).
+ self.dataset_variance, self.dataset_variance_sum = self._calculate_variance(
+ list(self.dataset.take(1).as_numpy_iterator())[0])
+
+ if print_model_summaries:
+ print()
+ self.discriminator.summary()
+ print()
+ self.generator.summary()
+ print()
+ self.output_model_plots()
+
+ def get_hyperparameters(self, dataset_name):
+ """
+ Retrieves the optimised hyperparameters for the named dataset.
+ :param dataset_name: Key words describing dataset.
+ """
+ dataset_name = dataset_name.lower()
+ print()
+ if any(name in dataset_name for name in ('mnist', 'digits')):
+ print('MNIST Digits hyperparameter presets loaded.')
+ # Tested at (28,28,1) image size.
+ params = {
+ 'learning_rate_gen': 0.0002,
+ 'learning_rate_disc': 0.0002,
+ 'beta_1': 0.5,
+ 'gen_filters': 32,
+ 'disc_filters': 16,
+ }
+ elif any(name in dataset_name for name in ('celeba', 'faces')):
+ print('CelebA Faces hyperparameter presets loaded.')
+ # Tested at (64,64,1) image size.
+ params = {
+ 'learning_rate_gen': 0.00005,
+ 'learning_rate_disc': 0.00005,
+ 'beta_1': 0.5,
+ 'gen_filters': 128,
+ 'disc_filters': 64,
+ }
+ elif any(name in dataset_name for name in ('brains', 'oasis')):
+ print('OASIS Brains hyperparameter presets loaded.')
+ # Tested at (64,64,1) image size.
+ params = {
+ 'learning_rate_gen': 0.00002,
+ 'learning_rate_disc': 0.00001,
+ 'beta_1': 0.5,
+ 'gen_filters': 256,
+ 'disc_filters': 256,
+ }
+ elif any(name in dataset_name for name in ('oai', 'akoa', 'knees')):
+ print('OAI AKOA Knee hyperparameter presets loaded.')
+ # Tested at (64, 64, 1) image size.
+ params = {
+ 'learning_rate_gen': 0.00002,
+ 'learning_rate_disc': 0.00001,
+ 'beta_1': 0.5,
+ 'gen_filters': 128,
+ 'disc_filters': 64,
+ }
+ else: # Default
+ print('WARNING: Default hyperparameter presets loaded. These may not work well with your dataset.')
+ params = {
+ 'learning_rate_gen': 0.0002,
+ 'learning_rate_disc': 0.0002,
+ 'beta_1': 0.5,
+ 'gen_filters': 64,
+ 'disc_filters': 32,
+ }
+ return params
+
+ def get_mnist_dataset(self):
+ """Retrieve MNIST Digits dataset from tfds. Normalise, shuffle and batch the dataset."""
+ dataloader = tfds.load('mnist', as_supervised=True)
+ dataset = dataloader['train']
+ # Cast [0,255] images to [-1,1].
+ dataset = dataset.map(lambda image, label: Rescaling(scale=1. / 127.5, offset=-1)(image))
+ dataset = dataset.shuffle(self.batch_size).batch(self.batch_size).prefetch(buffer_size=tf.data.AUTOTUNE)
+ print('MNIST Digits dataset loaded.')
+ return dataset
+
+ def get_local_image_dataset(self, path, image_dims, make_grayscale=True):
+ """
+ Retrieve dataset from provided path, before rescaling pixel values to [-1,1] and converting to grayscale.
+
+ :param path: Path to dataset (must be a folder containing only images).
+ :param image_dims: Dimensions to scale images to.
+ :param make_grayscale: Whether or not to convert images to grayscale.
+ :return:
+ """
+ print(f'Loading dataset from {path} at {image_dims} resolution.')
+ dataset = tf.keras.preprocessing.image_dataset_from_directory(path,
+ labels=None,
+ label_mode=None,
+ image_size=image_dims,
+ smart_resize=True,
+ shuffle=True,
+ batch_size=self.batch_size)
+ # Rescale all [0,255] images to [-1,1], as our generator outputs with tanh. Also convert to 1-channel.
+ dataset = dataset.map(lambda x: Rescaling(scale=1. / 127.5, offset=-1)(
+ tf.image.rgb_to_grayscale(x) if make_grayscale else x))
+ dataset = dataset.shuffle(self.batch_size).prefetch(buffer_size=tf.data.AUTOTUNE)
+ return dataset
+
+ def check_dataset(self):
+ """Retrieve and plot one sample from the active dataset."""
+ print('Sample from dataset:')
+ batch = self.dataset.take(1)
+ image = list(batch.as_numpy_iterator())[0][0]
+ plt.axis('off')
+ plt.tight_layout()
+ plt.imshow(image, cmap='gray')
+ plt.show()
+
+ def _calculate_variance(self, images, epsilon=1e-7):
+ """
+ Calculate pixel-wise variance among all permutations of image pairs.
+
+ :param images: Array of images to use.
+ :param epsilon: Small value to avoid dividing by zero.
+ :return: pixel-wise variance, and sum of variance.
+ """
+ diff, count = np.zeros(shape=images[0].shape), 0
+ for x in itertools.combinations(images, 2): # Compute all permutations of pairs.
+ diff = diff + np.abs(x[0] - x[1]) + epsilon
+ count += 1
+ if count > 500: # Short-circuit if the sample is too large.
+ break
+ diff = diff / count
+ return diff, np.sum(diff)
+
+ def output_model_plots(self):
+ """Write image of model architectures to directory."""
+ tf.keras.utils.plot_model(self.generator, show_shapes=True,
+ to_file=self.save_directory + '/generator_plot.png')
+ tf.keras.utils.plot_model(self.discriminator, show_shapes=True,
+ to_file=self.save_directory + '/discriminator_plot.png')
+ print(f'Model architecture plots saved to {self.save_directory}/\n')
+
+ def _smallest_by_halving(self):
+ """
+ Get smallest round integer by halving the input repeatedly.
+ This becomes our starting generator convolution size.
+ Also return number of halves performed.
+ This becomes our number of generator and discriminator blocks, to
+ return us from the reduced size to the original resolution.
+ """
+ x, count = self.image_size, 0
+ while (x / 2) % 1 == 0 and (x / 2) > 2:
+ x = x / 2
+ count += 1
+ if x >= (self.image_size / 2):
+ raise ValueError(f'{self.image_size} may be unsuitable for upsampling, '
+ f'as its smallest common component is {x}, '
+ f'which is >= input of {self.image_size}.')
+ return int(x), count
+
+ def _disc_block(self, x, size, i, reduce=True):
+ """
+ Modular discriminator block
+ :param x: Input matrix.
+ :param size: Number of filters.
+ :param i: Which numbered block this is.
+ :param reduce: Whether to apply pooling.
+ """
+ x = Conv2D(filters=size, kernel_size=3, strides=1, padding='same',
+ kernel_initializer=GlorotNormal(), activation=None,
+ name=f'conv{i}')(x)
+ if reduce:
+ x = AveragePooling2D(name=f'avg_pool{i}')(x)
+ return LeakyReLU(0.2)(x)
+
+ def _gen_block(self, x, w, noise, size, i):
+ """
+ Modular generator block.
+ :param x: Input matrix.
+ :param w: Latent w vector.
+ :param noise: Gaussian noise matrix.
+ :param size: Number of neurons/filters.
+ :param i: Which numbered block this is.
+ """
+ # Affine transformation A:
+ scale = Dense(size, name=f'scale{i}')(w)
+ bias = Dense(size, name=f'bias{i}')(w)
+ # Transformation B:
+ noise = Dense(size, name=f'noise{i}')(noise)
+
+ x = UpSampling2D(name=f'upscale{i}')(x)
+ x = Conv2D(filters=size, kernel_size=3, strides=1, padding='same',
+ kernel_initializer=GlorotNormal(), use_bias=False,
+ activation=None, name=f'conv{i}')(x)
+ x = Add(name=f'add_noise{i}')([x, noise])
+ x = AdaIN(name=f'ada_in{i}')([x, scale, bias])
+ return ReLU(name=f'relu{i}')(x)
+
+ def make_generator(self):
+ """Construct generator (synthesis network)"""
+ # Process all inputs - const vector, z vectors and noise matrices.
+ const = Input(shape=(self.z_length,), name='const')
+ z, noise, size = [], [], self.start_size
+ for i in range(self.num_blocks):
+ z.append(Input(shape=(self.z_length,), name=f'z{i}'))
+ noise.append(Input(shape=(size * 2, size * 2, self.num_channels), name=f'noise_in{i}'))
+ size *= 2
+
+ # Mapping network
+ latents = Input(shape=(self.z_length,), name='z_input')
+ w = Dense(64, activation=LeakyReLU(0.2), name='w0')(latents)
+ for i in range(6):
+ w = Dense(64, activation=LeakyReLU(0.2), name=f'w{i + 1}')(w)
+ w = Dense(self.params['gen_filters'], activation=LeakyReLU(0.2), name=f'w7')(w)
+ map = Model(inputs=latents, outputs=w, name='mapping_network')
+
+ # Start block
+ x = Dense(self.start_size * self.start_size * self.params['gen_filters'],
+ use_bias=True, activation='relu', kernel_initializer=GlorotNormal(),
+ name='const_expander')(const)
+ x = Reshape([self.start_size, self.start_size, self.params['gen_filters']], name='const_reshape')(x)
+
+ # Generator blocks
+ for i in range(self.num_blocks):
+ w = map(z[i])
+ x = self._gen_block(x, w, noise[i], self.params['gen_filters'], i)
+
+ # Convert to n-channel image with values bounded by tanh.
+ image = Conv2D(filters=1, kernel_size=1, strides=1, padding='same',
+ kernel_initializer=GlorotNormal(), activation='tanh', name='image_output')(x)
+
+ model = Model(inputs=[const] + z + noise, outputs=[image], name='generator')
+ print('Generator model constructed.')
+ return model
+
+ def make_discriminator(self):
+ """Construct discriminator."""
+ image = Input([self.image_size, self.image_size, self.num_channels], name='image_in')
+
+ # Start block
+ x = self._disc_block(image, self.params['disc_filters'], 'start', reduce=False)
+
+ # Discriminator blocks
+ for i in range(self.num_blocks):
+ x = self._disc_block(x, self.params['disc_filters'], i, reduce=True)
+
+ # Output block - was the image fake or real?
+ x = Conv2D(filters=32, kernel_size=3, strides=1, padding='same',
+ kernel_initializer=GlorotNormal(), activation=LeakyReLU(0.2), name='conv_final')(x)
+ x = Flatten(name='flatten_conv')(x)
+ classification = Dense(1, activation='sigmoid', name='classification_out')(x)
+
+ model = Model(inputs=image, outputs=classification, name='discriminator')
+ print('Discriminator model constructed.')
+ return model
+
+ def generate_inputs(self, batch_size):
+ """
+ Randomly generated latent z vectors and noise matrices to use as inputs to the generator.
+ :param batch_size: Number of samples to return.
+ """
+ const = tf.random.normal(mean=0., stddev=1., shape=(batch_size, self.z_length))
+ z, noise, size = [], [], self.start_size
+ for i in range(self.num_blocks):
+ # Latent z vectors.
+ z.append(tf.random.normal(mean=0., stddev=1., shape=(batch_size, self.z_length)))
+ # Random noise matrices.
+ noise.append(
+ tf.random.normal(mean=0., stddev=1., shape=(batch_size, size * 2, size * 2, self.num_channels)))
+ # Double the size of noise matrices each iteration, as each block outputs an up-scaled image.
+ size *= 2
+ return [const] + z + noise
+
+ def _update_avg_losses(self):
+ """Compute weighted moving average of loss values, to show adversarial balance in colorbar."""
+ if len(self.g_losses) > 10:
+ weights = np.arange(1, 11)
+ self.g_loss_avg = round(average(self.g_losses[len(self.d_fake_losses) - 10:], weights=weights), 3)
+ self.d_fake_loss_avg = round(average(self.d_fake_losses[len(self.d_fake_losses) - 10:], weights=weights), 3)
+ self.d_real_loss_avg = round(average(self.d_real_losses[len(self.d_real_losses) - 10:], weights=weights), 3)
+ elif len(self.g_losses) > 0:
+ weights = np.arange(1, len(self.g_losses) + 1)
+ self.g_loss_avg = round(average(self.g_losses, weights=weights), 3)
+ self.d_fake_loss_avg = round(average(self.d_fake_losses, weights=weights), 3)
+ self.d_real_loss_avg = round(average(self.d_real_losses, weights=weights), 3)
+ self.d_loss_avg = (self.d_fake_loss_avg + self.d_real_loss_avg) / 2
+ # Balance is the difference between the weighted average of generator and discriminator losses.
+ # Negative balance implies a weak discriminator, while positive balance implies a weak generator.
+ # Ideal balance is 0.
+ self.balance = self.g_loss_avg - self.d_loss_avg
+ # Bound the value between [-1,1] so we don't draw off the edge of the bar.
+ if self.balance < -1:
+ self.balance = -1
+ elif self.balance > 1:
+ self.balance = 1
+
+ def _plot_gan_progress(self):
+ """
+ Plot sample generated images over losses, balance and variance during training.
+ """
+ if not self.jupyter:
+ # Matplotlib does not automatically close plots outside of jupyter.
+ plt.close('all')
+
+ self._update_avg_losses()
+
+ # Generate generator sample images.
+ gen_images = self.generator(self.progress_seed, training=False)
+
+ # Calculate pixel-wise variance among generated samples.
+ sample_variance, var_sum = self._calculate_variance(gen_images)
+ # Convert sum of variance to a percentage of dataset variance.
+ var_percent = (var_sum / self.dataset_variance_sum) * 100
+
+ fig = plt.figure(constrained_layout=False, figsize=(14.5, 11))
+ fig.suptitle(f'Trainable parameters of Generator: {self.num_gen_weights:,}, '
+ f'Discriminator: {self.num_disc_weights:,}\n'
+ f'Epoch {self.current_epoch:03} / {self.epochs} | '
+ f'Batch {self.current_batch:03} / {self.num_batches} | '
+ f'Time elapsed: {round(((time.time() - self.start_time) / 60) / 60, 3):.3f} hours',
+ size=15, linespacing=1.6)
+
+ # Parent container gridspec.
+ gs0 = gridspec.GridSpec(ncols=1, nrows=2, height_ratios=[2, 1], width_ratios=[1], figure=fig,
+ left=0.045, right=0.955, top=.925, bottom=0.035, hspace=0.1)
+ # Top gridspec (images).
+ gs1 = gs0[0, 0].subgridspec(ncols=4, nrows=2, height_ratios=[1, 1], width_ratios=[1, 1, 1, 1],
+ wspace=.05, hspace=.05)
+ # Bottom gridspec (losses and balance).
+ gs2 = gs0[1, 0].subgridspec(ncols=3, nrows=1, height_ratios=[1], width_ratios=[5, 0.7, 2],
+ wspace=.1, hspace=0)
+
+ # Create sample image subplots.
+ ax = []
+ for i in range(2):
+ for j in range(4):
+ ax.append(fig.add_subplot(gs1[i, j]))
+
+ # Create subplots for losses, balance and variance.
+ ax8 = fig.add_subplot(gs2[0, 0]) # Losses
+ ax9 = fig.add_subplot(gs2[0, 1]) # Balance
+ ax10 = fig.add_subplot(gs2[0, 2]) # Variance
+
+ # Plot Generator sample images.
+ for i in range(gen_images.shape[0]):
+ ax[i].imshow(gen_images[i].numpy(), cmap='gray')
+ ax[i].axes.xaxis.set_visible(False)
+ ax[i].axes.yaxis.set_visible(False)
+
+ # Plot losses of generator and discriminator.
+ ax8.set_title('StyleGAN Generator and Discriminator binary cross-entropy losses over time', size=14)
+ ax8.set_xticklabels([])
+ # Truncate loss lists to only keep n latest values.
+ if len(self.g_losses) >= self.max_graphed:
+ self.g_losses = self.g_losses[len(self.g_losses) - self.max_graphed:]
+ self.d_real_losses = self.d_real_losses[len(self.d_real_losses) - self.max_graphed:]
+ self.d_fake_losses = self.d_fake_losses[len(self.d_fake_losses) - self.max_graphed:]
+ ax8.plot(self.g_losses, c=mint, label=f'Generator loss')
+ ax8.plot(self.d_real_losses, c='purple', label=f'Discriminator loss vs real')
+ ax8.plot(self.d_fake_losses, c='#ff884d', label=f'Discriminator loss vs fake')
+ # Put loss value at tail end of each loss line.
+ ax8.text(x=len(self.g_losses) - 1, y=self.g_losses[-1], s=f'{round(self.g_losses[-1], 3):.3f}')
+ ax8.text(x=len(self.d_real_losses) - 1, y=self.d_real_losses[-1], s=f'{round(self.d_real_losses[-1], 3):.3f}')
+ ax8.text(x=len(self.d_fake_losses) - 1, y=self.d_fake_losses[-1], s=f'{round(self.d_fake_losses[-1], 3):.3f}')
+ # Allow room for text at the end.
+ ax8.set_xlim((0, int(self.max_graphed + (self.max_graphed * 0.04))))
+ # Force y axis tick labels to have exactly two decimals, to stop graph width jumping.
+ ax8.get_yaxis().set_major_formatter(FuncFormatter(lambda x, p: f'{x:0.2f}'))
+ # Force 1 tick mark per value.
+ ax8.xaxis.set_major_locator(plt.MaxNLocator(int(self.max_graphed + (self.max_graphed * 0.04))))
+ # Show background grid. Draws lines from each tick label.
+ ax8.grid(color='gray', alpha=0.2)
+ # Move legend to the left after lines reach the halfway point.
+ ax8.legend(loc='upper right' if len(self.g_losses) < self.max_graphed / 2 else 'upper left', fontsize=13)
+
+ # Plot adversarial balance colorbar.
+ ax9.set_title('Weak Generator', size=11)
+ ax9.set_xlabel('Weak Discriminator', size=11)
+ cb = fig.colorbar(mpl.cm.ScalarMappable(norm=self.colorbar_norm, cmap='rainbow'), cax=ax9)
+ ax9.set_yticklabels([])
+ cb.ax.yaxis.set_ticks_position('none')
+ cb.ax.set_ylabel('Adversarial Balance', fontsize=12, labelpad=2)
+ cb.ax.yaxis.set_label_position('left')
+ # Plot acceptable midpoints.
+ cb.ax.axhline(y=0.15, c='gray', linestyle='--', linewidth=1)
+ cb.ax.axhline(y=-0.15, c='gray', linestyle='--', linewidth=1)
+ # Plot actual balance line.
+ cb.ax.axhline(y=self.balance, c='black', linestyle='-', linewidth=7)
+ cb.ax.axhline(y=self.balance, c='lime' if -0.15 < self.balance < 0.15 else 'red', linestyle='-', linewidth=5)
+
+ # Plot generator variance.
+ ax10.set_title(f'Generator variance: {int(round(var_percent)):03}%', size=14)
+ ax10.imshow(sample_variance, cmap='viridis')
+ ax10.axes.xaxis.set_visible(False)
+ ax10.axes.yaxis.set_visible(False)
+
+ self.iteration += 1
+ if self.save_progress_plots:
+ plt.savefig(f'{self.plot_directory}/step_{self.iteration:08}.png')
+ if self.show_progress_plots:
+ plt.show()
+
+ def _disc_loss(self, real_output, fake_output):
+ """
+ How well the discriminator can distinguish real from fake images.
+ :param real_output: Classifications of real images.
+ :param fake_output: Classifications of fake images.
+ :return: Loss on real images, loss on fake images.
+ """
+ # Compare predictions on real images to array of ones.
+ real_loss = BinaryCrossentropy(label_smoothing=0.2)(tf.ones_like(real_output), real_output)
+ # Compare predictions on fake images to array of zeroes.
+ fake_loss = BinaryCrossentropy(label_smoothing=0.2)(tf.zeros_like(fake_output), fake_output)
+
+ return real_loss, fake_loss
+
+ def _gen_loss(self, fake_output):
+ """
+ How well the generator can fool the discriminator.
+ We get this loss from the discriminator, and pass it to the generator.
+ :param fake_output: Discriminator classification of fake images.
+ :return: Loss of discriminator on fake images, inverted.
+ """
+ # Compare discriminator decisions to array of ones.
+ return BinaryCrossentropy()(tf.ones_like(fake_output), fake_output)
+
+ @tf.function
+ def train_step(self, images):
+ """
+ Conduct forward and backward pass, updating weights of each model
+ by their loss.
+ :param images: Batch of images (either real or fake)
+ :return: Losses, for plotting only.
+ """
+ # Random latent space input for generator.
+ inputs = self.generate_inputs(batch_size=self.batch_size)
+
+ # Track gradients of each model.
+ # ie. Track what happened in what order during forward pass.
+ with tf.GradientTape() as gen_tape, tf.GradientTape() as disc_tape:
+ # Forward pass.
+ generated_images = self.generator(inputs, training=True)
+
+ real_output = self.discriminator(images, training=True)
+ fake_output = self.discriminator(generated_images, training=True)
+
+ g_loss = self._gen_loss(fake_output)
+ d_real_loss, d_fake_loss = self._disc_loss(real_output, fake_output)
+ d_loss = d_real_loss + d_fake_loss
+
+ # Backward pass.
+ # Calculate gradient for each models trainable weights.
+ gradients_of_generator = gen_tape.gradient(g_loss, self.generator.trainable_variables)
+ gradients_of_discriminator = disc_tape.gradient(d_loss, self.discriminator.trainable_variables)
+
+ # Update generator and discriminator weights with gradients.
+ self.gen_optimizer.apply_gradients(zip(gradients_of_generator, self.generator.trainable_variables))
+ self.disc_optimizer.apply_gradients(zip(gradients_of_discriminator, self.discriminator.trainable_variables))
+
+ return g_loss, d_real_loss, d_fake_loss
+
+ def train(self):
+ """Training loop."""
+ self.start_time = time.time()
+ for epoch in range(1, self.epochs + 1):
+ epoch_start_time = time.time()
+ self.current_epoch = epoch
+
+ for i, image_batch in enumerate(self.dataset):
+ self.current_batch = i
+
+ # Start training step, tracking losses.
+ g_loss, d_real_loss, d_fake_loss = self.train_step(image_batch)
+ g_loss, d_real_loss, d_fake_loss = g_loss.numpy(), d_real_loss.numpy(), d_fake_loss.numpy()
+
+ # Update output graph every n batches.
+ if (self.save_progress_plots or self.show_progress_plots) and i % self.progress_interval == 0:
+ self.g_losses.append(g_loss)
+ self.d_real_losses.append(d_real_loss)
+ self.d_fake_losses.append(d_fake_loss)
+ if self.jupyter:
+ display.clear_output(wait=True)
+ self._plot_gan_progress()
+ if not self.jupyter or not self.show_progress_plots:
+ # Print training progress.
+ print(
+ f'\rEpoch {epoch:03} / {self.epochs} | batch {i:03} / {self.num_batches} | '
+ f'g_loss: {round(g_loss, 4):.4f} | d_fake_loss: {round(d_fake_loss, 4):.4f} | '
+ f'd_real_loss: {round(d_real_loss, 4):.4f} | '
+ f'Time taken: {round(((time.time() - epoch_start_time) / 60), 2):.2f} minutes', end='')
+ print()
+
+ # Save model checkpoint every n epochs.
+ if self.save_model_checkpoints and epoch % self.model_checkpoint_interval == 0:
+ self.checkpoint.save(file_prefix=self.checkpoint_prefix)
+
+
+if __name__ == '__main__':
+ # This is used for testing. The driver script is where you should execute training.
+ gan = StyleGAN(dataset=None,
+
+ # dataset_path=None,
+ # dataset_name='mnist digits',
+
+ # dataset_path='C:/img_align_celeba',
+ # dataset_name='celeb faces',
+
+ dataset_path='C:/AKOA_Analysis',
+ dataset_name='oai akoa knees',
+
+ # dataset_path='C:/OASIS_brains/keras_png_slices_train',
+ # dataset_name='oasis brains',
+
+ target_image_dims=(64, 64),
+ epochs=999,
+ batch_size=32,
+ z_length=512,
+ save_progress_plots=True,
+ show_progress_plots=False,
+ progress_plot_batch_interval=10,
+ save_model_checkpoints=False,
+ model_checkpoint_interval=20,
+ save_directory='C:/stylegan_output',
+ print_model_summaries=True,
+ running_in_notebook=False)
+
+ gan.train()
diff --git a/recognition/44776859_StyleGAN/resources/adversarial_balance.png b/recognition/44776859_StyleGAN/resources/adversarial_balance.png
new file mode 100644
index 0000000000..9a7a589f27
Binary files /dev/null and b/recognition/44776859_StyleGAN/resources/adversarial_balance.png differ
diff --git a/recognition/44776859_StyleGAN/resources/bad_variance.png b/recognition/44776859_StyleGAN/resources/bad_variance.png
new file mode 100644
index 0000000000..f2073d4330
Binary files /dev/null and b/recognition/44776859_StyleGAN/resources/bad_variance.png differ
diff --git a/recognition/44776859_StyleGAN/resources/brain_output.png b/recognition/44776859_StyleGAN/resources/brain_output.png
new file mode 100644
index 0000000000..1260b5d19a
Binary files /dev/null and b/recognition/44776859_StyleGAN/resources/brain_output.png differ
diff --git a/recognition/44776859_StyleGAN/resources/celeba_output.png b/recognition/44776859_StyleGAN/resources/celeba_output.png
new file mode 100644
index 0000000000..1e876e33ac
Binary files /dev/null and b/recognition/44776859_StyleGAN/resources/celeba_output.png differ
diff --git a/recognition/44776859_StyleGAN/resources/chosen_task.png b/recognition/44776859_StyleGAN/resources/chosen_task.png
new file mode 100644
index 0000000000..e29ff60796
Binary files /dev/null and b/recognition/44776859_StyleGAN/resources/chosen_task.png differ
diff --git a/recognition/44776859_StyleGAN/resources/discriminator_plot.png b/recognition/44776859_StyleGAN/resources/discriminator_plot.png
new file mode 100644
index 0000000000..848743c874
Binary files /dev/null and b/recognition/44776859_StyleGAN/resources/discriminator_plot.png differ
diff --git a/recognition/44776859_StyleGAN/resources/generator_plot.png b/recognition/44776859_StyleGAN/resources/generator_plot.png
new file mode 100644
index 0000000000..75e45a2d0a
Binary files /dev/null and b/recognition/44776859_StyleGAN/resources/generator_plot.png differ
diff --git a/recognition/44776859_StyleGAN/resources/good_variance.png b/recognition/44776859_StyleGAN/resources/good_variance.png
new file mode 100644
index 0000000000..50c80b2b0c
Binary files /dev/null and b/recognition/44776859_StyleGAN/resources/good_variance.png differ
diff --git a/recognition/44776859_StyleGAN/resources/knee_output.png b/recognition/44776859_StyleGAN/resources/knee_output.png
new file mode 100644
index 0000000000..269fa92dd4
Binary files /dev/null and b/recognition/44776859_StyleGAN/resources/knee_output.png differ
diff --git a/recognition/44776859_StyleGAN/resources/mnist_output.png b/recognition/44776859_StyleGAN/resources/mnist_output.png
new file mode 100644
index 0000000000..474bda8a96
Binary files /dev/null and b/recognition/44776859_StyleGAN/resources/mnist_output.png differ
diff --git a/recognition/44776859_StyleGAN/resources/stylegan_architecture.png b/recognition/44776859_StyleGAN/resources/stylegan_architecture.png
new file mode 100644
index 0000000000..fcc9ce28b3
Binary files /dev/null and b/recognition/44776859_StyleGAN/resources/stylegan_architecture.png differ
diff --git a/recognition/44802020_facebook_gcn/README.md b/recognition/44802020_facebook_gcn/README.md
new file mode 100644
index 0000000000..02326841b8
--- /dev/null
+++ b/recognition/44802020_facebook_gcn/README.md
@@ -0,0 +1,178 @@
+# Facebook Graph Convolutional Neural Network
+
+**Name**: John Parsons
+
+**Student Number**: 44802020
+
+**Student Email**: john.parsons@uqconnect.edu.au
+
+**Task**: Facebook Large Page-Page Network Dataset (Task 2)
+
+* * *
+### Contents
+* [Introduction to the Problem and the Dataset](#Introduction to the Problem and the Dataset)
+* [The Algorithm](#The Algorithm)
+* [Project Structure](#Project Structure)
+* [Running the Model and Dependencies](#Running the Model and Dependencies)
+* [Data and Training](#Data and Training)
+* [Building the Model](#Building the Model)
+* [Compiling the Model](#Compiling the Model)
+* [Performance and Analysis](#Performance and Analysis)
+* * *
+
+### Introduction to the Problem and the Dataset
+
+The data is a connected graph of Facebook pages which can each be categorised
+as 1 of 4 types of pages (TV Shows, Companies, Government Agencies or
+Politicians). The model is a Graph Convolutional Neural Network (GCN) which
+aims to be able to categorise a given page into one of these 4 categories. The
+data set contains 22470 nodes.
+
+Using SciKitLearn's TSNE analysis, the data generates the following TSNE plot:
+
+.png)
+
+### The Algorithm
+
+The algorithm revolves around taking advantage of the fact that any given node
+may be likely to be of the same category as its neighbours.
+
+We take the normalized Adjacency Matrix A_bar (where all nodes are self connected)
+and multiply it by the Feature Matrix and by the Weights Matrix. The result is then
+run through an activation function (I used softmax) and the loss is calculated with
+a loss function (I used Sparse Categorical Cross Entropy). The then model tries to
+minimize this loss with an optimization function (I used Adam) and adjusts the
+Weights Matrices accordingly.
+
+Overtime, hopefully, the losses will be minimized by optimal weights and the model
+will become more accurate.
+
+### Project Structure
+
+There are two `.py` files in the project as well as a `resources` folder:
+- `myGraphModel.py`: This file contains the code involved in creating the
+Model. This consists of one class (`FaceGCNLayer`, which represents my
+custom network layer) and one function (`makeMyModel`, which creates a
+model which represents mt GCN and contains all the relevant layers).
+
+- `driver.py`: This fie is responsible for parsing the data, calling `makeMyModel`
+from `myGraphModel.py`, parsing and splitting the data in training/validation sets,
+running the model, tracking and displaying the progress/accuracy of the model and
+plotting a TSNE plot of the data.
+- `resources`: This is where you should put the `facebook.npz` file. This is
+also where the images embedded in this file are stored.
+
+### Running the Model and Dependencies
+
+To run the model, run `driver.py.main()`. Ensure that the `FILE_PATH` variable is set
+to the location of the `facebook.npz` file. The `facebook.npz` file will need to be
+downloaded to an appropriate local location. by default the `FILE_PATH` variable points
+to the `resources` folder in the same directory as the `driver.py` file. The user can
+easily adjust the following
+model variables prior to running:
+- `PLOT_TSNE`: Set whether you want to plot accuracy.
+- `PLOT_ACCURACY`: Set whether you want to plot accuracy.
+- `EPOCHS`: Set the number of epochs over which the Model should train.
+- `LEARNING_RATE`: Set the Model learning rate.
+- `TRAIN_SPLIT`: The portion of the data to split into the training set.
+- `TEST_VAL_SPLIT`: The portion of the data to split into the test/validation set.
+
+The user should also ensure that the following **dependencies** are installed and up to date:
+
+- Tensorflow 2.6.0
+- Keras 2.6.0
+- Scipy 1.7.1
+- Numpy 1.19.5
+- Sklearn 1.0.1
+- Matplotlib 3.4.3
+
+### Data and Training
+
+The dataset has a stated density of 0.001, making it a very sparse graph.
+This is ideal for use of a Tensorflow Sparse Tensor to improve performance.
+
+An 80:20 Training:Testing/Validation split was used. This is because the fast nature
+of the model (Using Sparse Tensors and multiple Dense layers to reduce
+dimensionality, as well as a relatively small dataset) mean it would be
+ideal for the model to be trained as large a portion of the data as possible.
+
+It is however, as was found in testing, very easy for a GCN model to over-fit to
+data. It was therefore not feasible to split the data 90:10, or something similar,
+as it was important that the model's accuracy could be validated on a large
+testing/validation set to ensure it is not over-fitted.
+
+### Building the Model
+
+The model is built by calling the `makeMyModel` function in `myGraphModel.py`.
+This function creates a `tensorflow.keras.models.Sequential` object and adds
+the following layers to it, where N is the number of nodes (varies between
+training and testing/validation).
+* * *
+| Layer (type) | Output Shape | Param # |
+| --------------------------------- | ------------ | ------- |
+| `face_gcn_layer (FaceGCNLayer)` | (N, 128) | 128 |
+| `dropout (Dropout)` | (N, 128) | 0 |
+| `dense (Dense)` | (N, 64) | 8256 |
+| `face_gcn_layer_1 (FaceGCNLayer)` | (N, 64) | 64 |
+| `dropout_1 (Dropout)` | (N, 64) | 0 |
+| `dense_1 (Dense)` | (N, 32) | 2080 |
+| `face_gcn_layer_2 (FaceGCNLayer)` | (N, 32) | 32 |
+| `dropout_2 (Dropout)` | (N, 32) | 0 |
+| `dense_2 (Dense)` | (N, 4) | 132 |
+* * *
+The model uses 4 categories of layers:
+- **FaceGCNLayer Layers**: This is the layer responsible for the computation.
+- **Reduction Dense Layers**: These layers exist to reduce the dimensionality
+of the data to allow more epochs to be run more quickly.
+- **Dropout Layers**: These layers randomly drop a portion of the weights to 0.
+This helps to avoid over-fitting.
+- **Final Dense Layer**: This layer is required to categorise each node into
+one of 4 categories using 'softmax' activation.
+
+### Compiling the Model
+
+**Optimizer:** For optimization I used Sparse Categorical Cross Entropy.
+Categorical Cross Entropy is used to calculate loss when dealing with multiple
+categories. Sparse Categorical Cross Entropy is the same, only it allows for
+the use of Sparse Tensors.
+
+**Loss Function:** Adam, the default Keras model loss function was used.
+this is because while other Loss functions were tested (including Nadam
+and Adamax), none yielded any significant improvement in terms of accuracy.
+
+### Performance and Analysis
+
+The model reaches around 72% Validated Accuracy with 200 epochs,
+plateauing at this value at around 30 epochs.
+
+.png)
+
+The data plateau is likely due to the model over-fitting. I tried to remedy
+this by using Dropout layers, as these would randomly eliminate some
+weights responsible for the over-fitting. THis did help initially as the
+model was plateauing at around 53%, but the model still plateaus at 72%
+
+As can be seen from the following TSNE plots (one of the training data
+one of the testing data), while there are pockets that are clearly segmented,
+the data overall is not very neatly segmented. This indicates that the
+different categories share many similar features, making it difficult to
+accurately categorise the nodes.
+
+.png)
+
+.png)
+
+This difficulty makes the 72% accuracy achieved somewhat reasonable, although
+it may be further improved. The inclusion of Skip Connections could help, although
+it is not possible to do with a Sequential Model and would require the model to be
+redesigned in a non-sequential manner.
+
+Like-wise, the Sequential model does not allow
+multiple arguments to be passed to the layers. This means that the layer behaviour
+can only change based on whether the layer is training or testing but not on whether
+it is testing or validating (This is why the data is only split into Train/Testing
+and not Train/Validate/Test).
+
+In summary, redesigning the model in a non-sequential form would allow for several
+avenues of potential improvement.
+
diff --git a/recognition/44802020_facebook_gcn/driver.py b/recognition/44802020_facebook_gcn/driver.py
new file mode 100644
index 0000000000..e70b2158dc
--- /dev/null
+++ b/recognition/44802020_facebook_gcn/driver.py
@@ -0,0 +1,272 @@
+import random
+
+import myGraphModel
+import tensorflow as tf
+import keras
+import scipy
+import sklearn
+import matplotlib
+
+from tensorflow.keras import losses
+import tensorflow.keras.optimizers as op
+import scipy.sparse as spr
+import numpy as np
+
+from sklearn.manifold import TSNE
+import matplotlib.pyplot as plt
+
+# ========================= GLOBAL VARIABLES =========================
+# !!! IMPORTANT !!!
+# Ensure valid file path to facebook.npz here
+# Should be in the resources folder, which is in the same directory as this file
+FILE_PATH = r"./resources/facebook.npz"
+
+# Plotting Variables
+PLOT_TSNE = False # Set whether or not you want to plot accuracy
+PLOT_ACCURACY = False # Set whether or not you want to plot accuracy
+
+# model Variables
+EPOCHS = 200 # Set the number of epochs over which the Model should train
+LEARNING_RATE = 0.01 # Set the Model learning rate
+
+# Data Splitting Variables
+TRAIN_SPLIT = 0.80
+TEST_VAL_SPLIT = 0.20
+# ====================================================================
+
+
+def coo_matrix_to_sparse_tensor(coo):
+ """
+ Converts a scipy COO Sparse Matrix to a Tensorflow Sparse Tensor
+ Args:
+ coo: Scipy COO Sparse Matrix to be converted
+
+ Returns: The Tensorflow Sparse Tensor representation of the input matrix
+
+ """
+ indices = np.mat([coo.row, coo.col]).transpose()
+ return tf.SparseTensor(indices, coo.data, coo.shape)
+
+
+def normalize_adjacency_matrix(a_bar):
+ """
+ Normalizes the Adjacency Matrix for the model by applying matrix multiplication between the Adjacency Matrix and the
+ inverse square root od the D matrix.
+ Args:
+ a_bar: The Adjacency Matrix to normalise
+
+ Returns: A normalised version of the input matrix
+
+ """
+ row_sum = np.array(a_bar.sum(1))
+ d_inv_sqr = np.power(row_sum, -0.5).flatten()
+ d_inv_sqr[np.isinf(d_inv_sqr)] = 0
+ d_mat_inv_sqrt = spr.diags(d_inv_sqr)
+ a_bar = a_bar.dot(d_mat_inv_sqrt).transpose().dot(d_mat_inv_sqrt).tocoo()
+ return a_bar
+
+
+def generate_tsne_plot(labels, feats, mode):
+ """
+ Generates and plots
+ Args:
+ labels:
+ feats: The feature matrix of the nodes to be plotted
+ mode: Whether the test data or the train data is being plotted
+
+ Returns:
+
+ """
+ # TSNE
+ print("Executing TSNE, this might take a moment...")
+ tsne = TSNE(2)
+ tsne_data = tsne.fit_transform(feats)
+
+ plt.figure(figsize=(6, 5))
+ plt.scatter(tsne_data[labels == 0, 0], tsne_data[labels == 0, 1], c='b', alpha=0.5, marker='.', label='TV Show')
+ plt.scatter(tsne_data[labels == 1, 0], tsne_data[labels == 1, 1], c='r', alpha=0.5, marker='.', label='Company')
+ plt.scatter(tsne_data[labels == 2, 0], tsne_data[labels == 2, 1], c='g', alpha=0.5, marker='.', label='Government')
+ plt.scatter(tsne_data[labels == 3, 0], tsne_data[labels == 3, 1], c='m', alpha=0.5, marker='.', label='Politician')
+ plt.title(f"GCN TSNE Plot ({mode} Data)")
+ plt.legend()
+ plt.show()
+
+
+def generate_accuracy_plot(history):
+ """
+ Plots the Test Accuracy and Validation Accuracy of the model over the number of epochs.
+ Args:
+ history: history object generated by model.fit()
+
+ """
+ plt.plot(history.history['accuracy'], label='Test Accuracy')
+ plt.plot(history.history['val_accuracy'], label='Validation Accuracy')
+ plt.title("GCN Accuracy over epochs")
+ plt.ylabel("Accuracy")
+ plt.xlabel("Epochs")
+ plt.legend()
+ plt.show()
+
+
+def shuffle(page_one, page_two, feats, labels):
+ """
+ Shuffles input data, while preserving indexing.
+ Args:
+ page_one: First column of the edge list
+ page_two: First column of the edge list
+ feats: Feature matrix
+ labels: Page labels
+
+ Returns: All inputs, now shuffled
+
+ """
+ z = list(zip(page_one, page_two, feats, labels))
+ random.shuffle(z)
+ page_one, page_two, feats, labels = zip(*z)
+
+ return page_one, page_two, feats, labels
+
+
+def parse_data(data, train_val_split):
+ """
+ Takes the dataset from facebook.npz and parses it into usable Tensors. Also splits data into training/testing sets
+ and converts the dataset's Edge-List to an Adjacency Matrix in the form of a Sparse Tensor.
+ Args:
+ data: the dataset loaded from facebook.npz
+ train_val_split: The float split between training and testing/validation
+
+ Returns:Separate tensors containing the labels, features and adjacency matrices for both training and testing
+
+ """
+ # Adjacency Matrix
+ # Split EdgeList into two tensors
+ page_one = data['edges'][:, 0]
+ page_two = data['edges'][:, 1]
+ # Features
+ feats = tf.convert_to_tensor(data['features'])
+ # Labels
+ labels = tf.convert_to_tensor(data['target'])
+
+ # Split Data
+ # Data needs to be manually split here because the current implementation requires
+ page_one, page_two, feats, labels = shuffle(page_one, page_two, feats, labels)
+
+ page_one = tf.convert_to_tensor(page_one)
+ page_two = tf.convert_to_tensor(page_two)
+ feats = tf.convert_to_tensor(feats)
+ labels = tf.convert_to_tensor(labels)
+
+ # Convert split percentage into integer
+ print(labels.shape[0])
+ split_t = int(round(labels.shape[0] * (1 - train_val_split)))
+
+ train_labels, test_labels = labels[:split_t], labels[split_t:]
+ train_feats, test_feats = feats[:split_t], feats[split_t:]
+
+ # Convert EdgeList to Sparse Adjacency Matrix
+ ones = tf.ones_like(page_one) # Create Ones Matrix to set
+ a_bar = spr.coo_matrix((ones, (page_one, page_two))) # Convert to SciPy COO Matrix
+ a_bar.setdiag(1) # Make all nodes adjacent to themselves
+
+ a_dense = a_bar.todense() # Convert to Dense to easily split into test/train
+
+ # Re-create two adjacency matrices for training/testing
+ a_bar = a_dense[:split_t, :split_t]
+ a_bar_test = a_dense[split_t-1:, split_t-1:]
+
+ # Convert back to COO Matrix
+ a_bar = spr.coo_matrix(a_bar)
+ a_bar_test = spr.coo_matrix(a_bar_test)
+
+ # Normalize
+ a_bar = normalize_adjacency_matrix(a_bar=a_bar)
+ a_bar_test = normalize_adjacency_matrix(a_bar=a_bar_test)
+
+ # Convert to Sparse Tensor
+ a_bar = coo_matrix_to_sparse_tensor(a_bar)
+ a_bar_test = coo_matrix_to_sparse_tensor(a_bar_test)
+
+ return train_feats, train_labels, a_bar, test_feats, test_labels, a_bar_test
+
+
+def ensure_valid_split(train, test):
+ """
+ Checks that the combination of train and test is valid (i.e. if the sum to 1)
+ Args:
+ train: A float between 0-1, representing the portion of data to be used for training
+ test: A float between 0-1, representing the portion of data to be used for testing/validation
+
+ Returns: True if combination is valid, otherwise exits program.
+
+ """
+ if train+test == 1.0:
+ return True
+ else:
+ print("Train Split + Validation Split + Test Split must equal 1.0.")
+ print("Please ensure values for these variables sum to 1.0")
+ exit(1)
+
+
+def main():
+ print("Tensorflow version:", tf.__version__)
+ print("Numpy version:", np.__version__)
+ print("SciPy version:", scipy.__version__)
+ print("SkLearn version:", sklearn.__version__)
+ print("Matplotlib version:", matplotlib.__version__)
+ print("Keras version:", keras.__version__)
+
+ # Variables
+ ensure_valid_split(TEST_VAL_SPLIT, TRAIN_SPLIT)
+
+ # Load in Data
+ data = np.load(FILE_PATH)
+ # There are 22 470 Pages
+ # Each with 128 features
+ # Each falls into 1 of 4 categories
+ # # 0 -> TV Show
+ # # 1 -> Company
+ # # 2 -> Government
+ # # 3 -> Politician
+ # There are 342 004 Edges between the pages
+
+ # test_split = 0.2
+ train_feats, train_labels, a_bar, \
+ test_feats, test_labels, a_bar_test, = parse_data(data, TEST_VAL_SPLIT)
+
+ # ================== REAL MODEL ========================
+ print("=============== Building Model ===============")
+ # Construct Model
+ my_model = myGraphModel.makeMyModel(a_bar, a_bar_test, train_feats)
+
+ loss_fn = losses.SparseCategoricalCrossentropy(from_logits=False)
+ opt = op.Adam(learning_rate=LEARNING_RATE)
+ my_model.compile(optimizer=opt, loss=loss_fn, metrics=['accuracy'])
+
+ # ================== RUN MODEL ========================
+ # Train Model
+ history = my_model.fit(train_feats,
+ train_labels,
+ epochs=EPOCHS,
+ batch_size=22470, shuffle=False,
+ validation_data=(test_feats, test_labels))
+
+ print(my_model.summary())
+
+ # Evaluate Model
+ my_model.evaluate(test_feats,
+ test_labels,
+ batch_size=22470)
+
+ # Plot Accuracy
+ if PLOT_ACCURACY:
+ generate_accuracy_plot(history)
+
+ # Plot TSNE
+ if PLOT_TSNE:
+ generate_tsne_plot(train_labels, train_feats, "Train")
+ generate_tsne_plot(test_labels, test_feats, "Test")
+
+
+if __name__ == '__main__':
+ main()
+
diff --git a/recognition/44802020_facebook_gcn/myGraphModel.py b/recognition/44802020_facebook_gcn/myGraphModel.py
new file mode 100644
index 0000000000..bafb2f16ba
--- /dev/null
+++ b/recognition/44802020_facebook_gcn/myGraphModel.py
@@ -0,0 +1,59 @@
+import keras.initializers.initializers_v1
+import tensorflow as tf
+from tensorflow.keras.models import Sequential
+from tensorflow.keras.layers import Dense, Input, Dropout
+
+
+def makeMyModel(a_bar, a_bar_test, train_feats):
+ """
+ Creates a model with the desired layers.
+ Args:
+ a_bar: The Adjacency Matrix for the training data.
+ a_bar_test: The Adjacency Matrix for the training data.
+ train_feats: The Feature Matrix for the training data. This is required to know the input dimensions.
+
+ Returns: A `tensorflow.keras.models.Sequential` model, containing all of the appropriate layers added in
+ this function.
+
+ """
+ my_model = Sequential()
+
+ my_model.add(Input(shape=tf.Tensor.get_shape(train_feats)))
+
+ my_model.add(FaceGCNLayer(a_bar, a_bar_test))
+ my_model.add(Dropout(0.4))
+ my_model.add(Dense(64))
+ my_model.add(FaceGCNLayer(a_bar, a_bar_test))
+ my_model.add(Dropout(0.4))
+ my_model.add(Dense(32))
+ my_model.add(FaceGCNLayer(a_bar, a_bar_test))
+ my_model.add(Dropout(0.4))
+ my_model.add(Dense(4, activation='softmax'))
+
+ return my_model
+
+
+class FaceGCNLayer(tf.keras.layers.Layer):
+ """
+ My custom network layer.
+ """
+ def __init__(self, adj_m, test_adj_m):
+ super(FaceGCNLayer, self).__init__()
+ self.adj_m = adj_m
+ self.test_adj_m = test_adj_m
+
+ def build(self, input_shape):
+ self.weights1 = self.add_weight("weights1",
+ shape=(1, input_shape[-1]),
+ initializer=keras.initializers.initializers_v1.RandomNormal)
+
+ def call(self, feature_matrix, training=None):
+ feature_matrix = tf.squeeze(feature_matrix)
+ if training:
+ ax = tf.sparse.sparse_dense_matmul(tf.cast(self.adj_m, float), feature_matrix)
+ z = ax * self.weights1
+ else:
+ ax = tf.sparse.sparse_dense_matmul(tf.cast(self.test_adj_m, float), feature_matrix)
+ z = ax * self.weights1
+
+ return z
diff --git a/recognition/44802020_facebook_gcn/resources/Learning_(200).png b/recognition/44802020_facebook_gcn/resources/Learning_(200).png
new file mode 100644
index 0000000000..e7a923293c
Binary files /dev/null and b/recognition/44802020_facebook_gcn/resources/Learning_(200).png differ
diff --git a/recognition/44802020_facebook_gcn/resources/TSNE_Plot_(Test Data).png b/recognition/44802020_facebook_gcn/resources/TSNE_Plot_(Test Data).png
new file mode 100644
index 0000000000..c521f19b16
Binary files /dev/null and b/recognition/44802020_facebook_gcn/resources/TSNE_Plot_(Test Data).png differ
diff --git a/recognition/44802020_facebook_gcn/resources/TSNE_Plot_(Train Data).png b/recognition/44802020_facebook_gcn/resources/TSNE_Plot_(Train Data).png
new file mode 100644
index 0000000000..73faf23855
Binary files /dev/null and b/recognition/44802020_facebook_gcn/resources/TSNE_Plot_(Train Data).png differ
diff --git a/recognition/45005172_StyleGAN/Generated-img/img-0.png b/recognition/45005172_StyleGAN/Generated-img/img-0.png
new file mode 100644
index 0000000000..16785d26c3
Binary files /dev/null and b/recognition/45005172_StyleGAN/Generated-img/img-0.png differ
diff --git a/recognition/45005172_StyleGAN/Generated-img/img-1.0.png b/recognition/45005172_StyleGAN/Generated-img/img-1.0.png
new file mode 100644
index 0000000000..2528d0de2b
Binary files /dev/null and b/recognition/45005172_StyleGAN/Generated-img/img-1.0.png differ
diff --git a/recognition/45005172_StyleGAN/Generated-img/img-10.0.png b/recognition/45005172_StyleGAN/Generated-img/img-10.0.png
new file mode 100644
index 0000000000..d253338c9f
Binary files /dev/null and b/recognition/45005172_StyleGAN/Generated-img/img-10.0.png differ
diff --git a/recognition/45005172_StyleGAN/Generated-img/img-14.0.png b/recognition/45005172_StyleGAN/Generated-img/img-14.0.png
new file mode 100644
index 0000000000..268024f5ad
Binary files /dev/null and b/recognition/45005172_StyleGAN/Generated-img/img-14.0.png differ
diff --git a/recognition/45005172_StyleGAN/Generated-img/img-3.0.png b/recognition/45005172_StyleGAN/Generated-img/img-3.0.png
new file mode 100644
index 0000000000..cac6153a87
Binary files /dev/null and b/recognition/45005172_StyleGAN/Generated-img/img-3.0.png differ
diff --git a/recognition/45005172_StyleGAN/Generated-img/img-5.0.png b/recognition/45005172_StyleGAN/Generated-img/img-5.0.png
new file mode 100644
index 0000000000..71bf6accf0
Binary files /dev/null and b/recognition/45005172_StyleGAN/Generated-img/img-5.0.png differ
diff --git a/recognition/45005172_StyleGAN/Generated-img/img-65.0.png b/recognition/45005172_StyleGAN/Generated-img/img-65.0.png
new file mode 100644
index 0000000000..201bf1d06b
Binary files /dev/null and b/recognition/45005172_StyleGAN/Generated-img/img-65.0.png differ
diff --git a/recognition/45005172_StyleGAN/Generated-img/img-72.0.png b/recognition/45005172_StyleGAN/Generated-img/img-72.0.png
new file mode 100644
index 0000000000..248e4d64dc
Binary files /dev/null and b/recognition/45005172_StyleGAN/Generated-img/img-72.0.png differ
diff --git a/recognition/45005172_StyleGAN/Generated-img/img-80.0.png b/recognition/45005172_StyleGAN/Generated-img/img-80.0.png
new file mode 100644
index 0000000000..165dc73e10
Binary files /dev/null and b/recognition/45005172_StyleGAN/Generated-img/img-80.0.png differ
diff --git a/recognition/45005172_StyleGAN/Generated-img/img-88.0.png b/recognition/45005172_StyleGAN/Generated-img/img-88.0.png
new file mode 100644
index 0000000000..31e9ef9293
Binary files /dev/null and b/recognition/45005172_StyleGAN/Generated-img/img-88.0.png differ
diff --git a/recognition/45005172_StyleGAN/Misc/Disc.png b/recognition/45005172_StyleGAN/Misc/Disc.png
new file mode 100644
index 0000000000..f950acdc0a
Binary files /dev/null and b/recognition/45005172_StyleGAN/Misc/Disc.png differ
diff --git a/recognition/45005172_StyleGAN/Misc/Gen1.png b/recognition/45005172_StyleGAN/Misc/Gen1.png
new file mode 100644
index 0000000000..513ad08b0c
Binary files /dev/null and b/recognition/45005172_StyleGAN/Misc/Gen1.png differ
diff --git a/recognition/45005172_StyleGAN/Misc/Gen2.png b/recognition/45005172_StyleGAN/Misc/Gen2.png
new file mode 100644
index 0000000000..0d7fb356cd
Binary files /dev/null and b/recognition/45005172_StyleGAN/Misc/Gen2.png differ
diff --git a/recognition/45005172_StyleGAN/Misc/Gen3.png b/recognition/45005172_StyleGAN/Misc/Gen3.png
new file mode 100644
index 0000000000..316e2a94f3
Binary files /dev/null and b/recognition/45005172_StyleGAN/Misc/Gen3.png differ
diff --git a/recognition/45005172_StyleGAN/Misc/StyleGANArchitecture.png b/recognition/45005172_StyleGAN/Misc/StyleGANArchitecture.png
new file mode 100644
index 0000000000..eda642e34a
Binary files /dev/null and b/recognition/45005172_StyleGAN/Misc/StyleGANArchitecture.png differ
diff --git a/recognition/45005172_StyleGAN/README.md b/recognition/45005172_StyleGAN/README.md
new file mode 100644
index 0000000000..fa78aa7c62
--- /dev/null
+++ b/recognition/45005172_StyleGAN/README.md
@@ -0,0 +1,142 @@
+StyleGAN
+========
+Generative model of the [OASIS brain](https://www.oasis-brains.org/) data set using [StyleGAN](https://arxiv.org/pdf/1812.04948v2.pdf)
+
+**Author:** *Avinash Chandra(45005172)*
+
+* [StyleGAN Architecture](#StyleGAN-Architecture)
+* [Report's StyleGAN Design](#Reports's-StyleGAN-Design)
+ + [GAN](#1.-GAN)
+ + [StyleGAN Training](#2.-StyleGAN-Training)
+ + [Data Processing](#3.-Data-Processing)
+* [Executing Code](#Executing-Code)
+* [Results](#Results)
+* [References](#References)
+
+## StyleGAN Architecture
+
+Generative Adversarial Networks (GANs) are used to generate high-quality synthetic images.
+
+Tradidional GANs have two components namely, Generator and Discriminator. Generator takes a point in latent space as input and generates specified image as output while, the Discriminator diffrentiate real images from the fake or generated ones (positive values for real and negative values for fake images). The Generator and Discriminator works in adversery with each other while training, hence the name Generative Adverserial Network.
+
+A technique called Progressive Growing GAN (PGGAN) is employed to generate large/high-quality images by progressively incresing the number of layers while training.
+
+The StyleGAN incorporates progressive growing generator of the PGGAN along with some more modifications in the generator. The modifications to a traditional generator are as follows:
+* Baseline Progressive GAN
+* \+ Tuning (including bilinear upsampling)
+* \+ Mapping and styles
+* \- Traditional Inputs
+* \+ Mixing regularization
+
+
+
+
+
+ Figure 1: Traditional vs StyleGAN Generator Architecture
+
+ In traditional generator, latent vectors directly pass into the block while in StyleGAN, latent vectors after normalisation pass through the mapping network followed by being transformed (Affline Transformation) and passed to generator and noise B is added after the instance normalisation (AdaIN)
+
+
+## Report's StyleGAN Design
+Official StyleGAN on Tensorflow was done by [NVLabs(NVIDIA Corporation)](https://github.com/NVlabs/stylegan). StyleGAN implementation for this report is inspired by the [StyleGAN implementation by Keras](https://keras.io/examples/generative/stylegan/).
+The goal for this implementation is to produce 256x256 images trained on preprocessed [OASIS brain](https://www.oasis-brains.org/) dataset provided by the University.
+
+The implementation for the report is based on Tensorflow2.X.
+Keras on top of the Tensorflow is used for modeling the StyleGAN.
+Some of the notable components of report's StyleGAN implementation are listed below. However, every other components including ones listed below are commented in the Jupyter notebook file [styleGAN.ipynb](styleGAN.ipynb)
+
+### 1. GAN
+A baseline DCGAN is used with few custom layers added in the Generator, while the Discriminirator remains fairly normal. The repeated segments of Generator and Discriminator are made by Generator and Discriminator blocks respectively.
+
+#### 1.1 Generator
+The main changes to a DCGAN are made by adding 8 layers for style mapping and addition of AdaIN (Adaptive Normalisation) in each Generator Block. The idea behind Style mapping is to reduce chances of mixing of styles of different images, for instance, in case of generating faces we don't want skin of an old person and an infant to be mixed. While, the AdaIN applies latent vector in each block of the generator. Biliner upsampling is also incorporated in the GAN blocks which is done in all but the first generator block.
+Picture below summarises the Generator model.
+
+
+
+
+
+ Figure 2: Generator Model Summary
+
+
+#### 1.2 Discriminator
+The discriminator is a fairly typical DCGAN discriminator, downsampling is done in all but the last discriminator block. Figure below summarises the Discriminator model.
+
+
+
+ Figure 3: Discriminator Model Summary
+
+
+### 2. StyleGAN Training
+In the training of StyleGAN Mixing regularization and GP Loss has been incorporated. For mixing regularzation two noise vectors have been generated for the training with one having more prevelence than other (Probalility = 0.9).
+The Gradient penalty loss is added to the discriminator loss, the rationale behind incorporating this loss to prevent discriminator dictating generator to make big changes hence resulting in [mode collapse](https://developers.google.com/machine-learning/gan/problems).
+
+
+### 3. Data Processing
+For the training, the images in training directory are converted to numpy array and are trained in batch of 12 images. For saving the generated images [Pillow](https://pillow.readthedocs.io/en/stable/) a fork of python imaging library has been used.
+
+## Executing Code
+The code can be executed by executing the "Train Model" code block in [styleGAN.ipynb](styleGAN.ipynb). Before the training, png files from source directory needs to be converted to numpy array by passing data directory path as an argument to function [convert_to_npy](), which will then save the data as .npy file in the directory [OASIS-Brain-npy](OASIS-Brain-npy). A detailed comment on useage is provided in the markdown parts of [styleGAN.ipynb](styleGAN.ipynb).
+
+## Results
+The model trained for around 50000 epoches generating 90 images of 256x256 each. Training took ~10 hours on NVIDIA GTX1080. Few of the generated images are listed below. The sample images are also in the [Generated-img](Generated-img) directory.
+#### Without Training:
+
+
+
+ Figure 4: Generated image without training
+
+
+#### Early stages of training:
+
+
+
+
+
+
+
+ Figure 5: Generated images in early stages of training
+
+
+#### Later stages of training:
+
+
+
+
+
+
+
+ Figure 6: Generated images in later stages of training
+
+
+
+## References
+* [https://www.oasis-brains.org/](https://www.oasis-brains.org/)
+* [https://arxiv.org/pdf/1812.04948v2.pdf](https://arxiv.org/pdf/1812.04948v2.pdf)
+* [https://github.com/NVlabs/stylegan](https://github.com/NVlabs/stylegan)
+* [https://keras.io/examples/generative/stylegan/](https://keras.io/examples/generative/stylegan/)
+* [https://developers.google.com/machine-learning/gan/problems](https://developers.google.com/machine-learning/gan/problems)
+* [https://pillow.readthedocs.io/en/stable/](https://pillow.readthedocs.io/en/stable/)
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/recognition/45005172_StyleGAN/styleGAN.ipynb b/recognition/45005172_StyleGAN/styleGAN.ipynb
new file mode 100644
index 0000000000..2983f8b07b
--- /dev/null
+++ b/recognition/45005172_StyleGAN/styleGAN.ipynb
@@ -0,0 +1,360848 @@
+{
+ "cells": [
+ {
+ "cell_type": "code",
+ "execution_count": 1,
+ "metadata": {},
+ "outputs": [],
+ "source": [
+ "import tensorflow as tf\n",
+ "import numpy as np\n",
+ "import matplotlib.pyplot as plt\n",
+ "import random\n",
+ "from PIL import Image\n",
+ "import math\n",
+ "import os"
+ ]
+ },
+ {
+ "cell_type": "markdown",
+ "metadata": {},
+ "source": [
+ "# Constants"
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": 2,
+ "metadata": {},
+ "outputs": [],
+ "source": [
+ "IMG_SIZE = 256\n",
+ "LATENT_SIZE = 512\n",
+ "BATCH_SIZE = 12\n",
+ "\n",
+ "LAYERS = int(math.log2(IMG_SIZE) - 1)\n",
+ "MIX_PROB = 0.9\n",
+ "CHA = 48\n",
+ "\n",
+ "INITIALIZER = 'he_normal'"
+ ]
+ },
+ {
+ "cell_type": "markdown",
+ "metadata": {},
+ "source": [
+ "# Utility Functions\n",
+ "### Functions for various tasks like noise generation and pixel normalisation"
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": 3,
+ "metadata": {},
+ "outputs": [],
+ "source": [
+ "def noise(num):\n",
+ " return np.random.normal(0.0, 1.0, size = [num, LATENT_SIZE]).astype('float32')\n",
+ "\n",
+ "def get_noise(num):\n",
+ " return [noise(num)] * LAYERS\n",
+ "\n",
+ "def get_mixed_noise(num):\n",
+ " rand = int(random.random() * LAYERS)\n",
+ " p1 = [noise(num)] * rand\n",
+ " p2 = [noise(num)] * (LAYERS - rand)\n",
+ " return p1 + [] + p2\n",
+ "\n",
+ "def img_dim(size):\n",
+ " return np.random.uniform(0.0, 1.0, size = [size, IMG_SIZE, IMG_SIZE, 1]).astype('float32')\n",
+ "\n",
+ "# Function to normalise image representation in AdaIN \n",
+ "def pixel_norm(x, epsilon = 1e-7):\n",
+ " mean = tf.keras.backend.mean(x, axis=[1, 2], keepdims=True)\n",
+ " std = tf.keras.backend.std(x, axis=[1, 2], keepdims=True) + epsilon\n",
+ " return (x - mean) / std"
+ ]
+ },
+ {
+ "cell_type": "markdown",
+ "metadata": {},
+ "source": [
+ "# Loss Functions"
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": 4,
+ "metadata": {},
+ "outputs": [],
+ "source": [
+ "# Function to calgulate GP loss\n",
+ "def gradient_loss(sample, output, weights):\n",
+ " grad = tf.keras.backend.gradients(output, sample)[0]\n",
+ " grad_sq = tf.keras.backend.square(grad)\n",
+ " grad_loss = tf.keras.backend.sum(grad_sq, axis=np.arange(1, len(grad_sq.shape)))\n",
+ " return tf.keras.backend.mean(grad_loss * weights)"
+ ]
+ },
+ {
+ "cell_type": "markdown",
+ "metadata": {},
+ "source": [
+ "# Custom Layers\n",
+ "### These are the custom layers to be used for construction of the generator."
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": 5,
+ "metadata": {},
+ "outputs": [],
+ "source": [
+ "# Adaptive Instance Normalisation\n",
+ "# Applies latent vector to each block in the generator\n",
+ "def AdaIN(input_shapes):\n",
+ " y = pixel_norm(input_shapes[0])\n",
+ " scale = tf.reshape(input_shapes[1], (-1, 1, 1, y.shape[-1])) + 1.0\n",
+ " bias = tf.reshape(input_shapes[2], (-1, 1, 1, y.shape[-1]))\n",
+ " return y * scale + bias \n",
+ "\n",
+ "# 'Fits' the diementions of noise to be same as that of the input image\n",
+ "def fit(x):\n",
+ " h = x[1].shape[1]\n",
+ " w = x[1].shape[2]\n",
+ " return x[0][:, :h, :w, :]"
+ ]
+ },
+ {
+ "cell_type": "markdown",
+ "metadata": {},
+ "source": [
+ "# Blocks\n",
+ "### These are unit Generator and Discriminator blocks. Helps preventing to rewrite individual layers in the actual Generator and Discriminator. "
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": 6,
+ "metadata": {},
+ "outputs": [],
+ "source": [
+ "# Generator Block\n",
+ "def get_gen_block(input_tensor, style, inoise, filters, up_sample = True):\n",
+ " # If 'up_sample' is true we perform upsampling or unpooling of the input tensor\n",
+ " if up_sample:\n",
+ " block = tf.keras.layers.UpSampling2D()(input_tensor)\n",
+ " else:\n",
+ " block = tf.keras.layers.Activation('linear')(input_tensor)\n",
+ " # Bias for the AdaIN\n",
+ " beta = tf.keras.layers.Dense(filters)(style)\n",
+ " # Scale for the AdaIN\n",
+ " gamma = tf.keras.layers.Dense(filters)(style)\n",
+ "\n",
+ " # Inconsequential noise fitted to the dimension of input tensor\n",
+ " delta = tf.keras.layers.Lambda(fit)([inoise, block])\n",
+ " delta = tf.keras.layers.Dense(filters, kernel_initializer='zeros')(delta)\n",
+ "\n",
+ " block = tf.keras.layers.Conv2D(filters=filters, kernel_size=3, padding='same', \\\n",
+ " kernel_initializer='he_normal')(block)\n",
+ " block = tf.keras.layers.add([block, delta])\n",
+ " # Add AdaIN layer\n",
+ " block = tf.keras.layers.Lambda(AdaIN)([block, gamma, beta])\n",
+ "\n",
+ " return tf.keras.layers.LeakyReLU(0.2)(block)\n",
+ "\n",
+ "# Discriminator Block\n",
+ "def get_desc_block(input_tensor, fil, pool = True):\n",
+ " block = tf.keras.layers.Conv2D(filters=fil, kernel_size=3, \\\n",
+ " padding='same', kernel_initializer='he_normal')(input_tensor)\n",
+ " block = tf.keras.layers.LeakyReLU(0.2)(block)\n",
+ "\n",
+ " # Perform pooling or downsampling of the image representation if 'pool' is true\n",
+ " if pool:\n",
+ " block = tf.keras.layers.AveragePooling2D()(block)\n",
+ "\n",
+ " return block"
+ ]
+ },
+ {
+ "cell_type": "markdown",
+ "metadata": {},
+ "source": [
+ "# GAN\n",
+ "### Baseline DCGAN with some modifications"
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": 7,
+ "metadata": {},
+ "outputs": [],
+ "source": [
+ "class GAN(object):\n",
+ " def __init__(self, steps = 1, learn_rate = 1e-4):\n",
+ " self.desc = None\n",
+ " self.gen = None\n",
+ " self.style = None\n",
+ "\n",
+ " self.g_model = None\n",
+ "\n",
+ " self.L_Rate = learn_rate\n",
+ " self.steps = steps\n",
+ " self.beta = 0.99\n",
+ "\n",
+ " self.discriminator()\n",
+ " self.generator()\n",
+ "\n",
+ " # Actual Discriminator\n",
+ " def discriminator(self):\n",
+ " if self.desc:\n",
+ " return self.desc\n",
+ " \n",
+ " input_tensor = tf.keras.layers.Input(shape = [IMG_SIZE, IMG_SIZE, 3])\n",
+ "\n",
+ " x = get_desc_block(input_tensor, 1*CHA)\n",
+ " x = get_desc_block(x, 2*CHA)\n",
+ " x = get_desc_block(x, 3*CHA)\n",
+ " x = get_desc_block(x, 4*CHA)\n",
+ " x = get_desc_block(x, 6*CHA)\n",
+ " x = get_desc_block(x, 8*CHA)\n",
+ " x = get_desc_block(x, 16*CHA, False)\n",
+ " x = tf.keras.layers.Flatten()(x)\n",
+ " x = tf.keras.layers.Dense(16*CHA, kernel_initializer='he_normal')(x)\n",
+ " x = tf.keras.layers.LeakyReLU(0.2)(x)\n",
+ " x = tf.keras.layers.Dense(1, kernel_initializer='he_normal')(x)\n",
+ "\n",
+ " self.desc = tf.keras.models.Model(inputs=input_tensor, outputs=x)\n",
+ "\n",
+ " return self.desc\n",
+ "\n",
+ " def generator(self):\n",
+ " if self.gen:\n",
+ " return self.gen\n",
+ " \n",
+ " # 8 Mapping Layers\n",
+ " # Helps avoiding mixing of different 'styles' in the generated image\n",
+ " self.style = tf.keras.Sequential(\n",
+ " [\n",
+ " tf.keras.layers.Dense(512, input_shape=[LATENT_SIZE]),\n",
+ " tf.keras.layers.LeakyReLU(0.2),\n",
+ " tf.keras.layers.Dense(512),\n",
+ " tf.keras.layers.LeakyReLU(0.2),\n",
+ " tf.keras.layers.Dense(512),\n",
+ " tf.keras.layers.LeakyReLU(0.2),\n",
+ " tf.keras.layers.Dense(512),\n",
+ " tf.keras.layers.LeakyReLU(0.2)\n",
+ " ] \n",
+ " )\n",
+ "\n",
+ " # Actual Generator\n",
+ " input_style = []\n",
+ "\n",
+ " for i in range(LAYERS):\n",
+ " input_style.append(tf.keras.Input([LATENT_SIZE]))\n",
+ "\n",
+ " input_noise = tf.keras.layers.Input([IMG_SIZE, IMG_SIZE, 1])\n",
+ "\n",
+ " x = tf.keras.layers.Lambda(lambda x: x[:, :128])(input_style[0])\n",
+ " x = tf.keras.layers.Dense(4*4*4*CHA, activation='relu', kernel_initializer='he_normal')(x)\n",
+ " x = tf.keras.layers.Reshape([4, 4, 4*CHA])(x)\n",
+ " x = get_gen_block(x, input_style[0], input_noise, 16*CHA, up_sample=False)\n",
+ " x = get_gen_block(x, input_style[1], input_noise, 8*CHA)\n",
+ " x = get_gen_block(x, input_style[2], input_noise, 6*CHA)\n",
+ " x = get_gen_block(x, input_style[3], input_noise, 4*CHA)\n",
+ " x = get_gen_block(x, input_style[4], input_noise, 3*CHA)\n",
+ " x = get_gen_block(x, input_style[5], input_noise, 2*CHA)\n",
+ " x = get_gen_block(x, input_style[6], input_noise, 1*CHA)\n",
+ " x = tf.keras.layers.Conv2D(filters=3, kernel_size=1, padding='same', kernel_initializer='he_normal')(x)\n",
+ "\n",
+ " self.gen = tf.keras.models.Model(inputs = input_style + [input_noise], outputs = x)\n",
+ "\n",
+ " return self.gen\n",
+ " \n",
+ " # Generator model with added noise, will be used in the StyleGAN training\n",
+ " def gen_model(self):\n",
+ " input_style = []\n",
+ " style = []\n",
+ "\n",
+ " for i in range(LAYERS):\n",
+ " input_style.append(tf.keras.layers.Input([LATENT_SIZE]))\n",
+ " style.append(self.style(input_style[-1]))\n",
+ "\n",
+ " input_noise = tf.keras.layers.Input([IMG_SIZE, IMG_SIZE, 1])\n",
+ "\n",
+ " x = self.gen(style+[input_noise])\n",
+ " self.g_model = tf.keras.models.Model(inputs = input_style + [input_noise], outputs = x)\n",
+ "\n",
+ " return self.g_model\n"
+ ]
+ },
+ {
+ "cell_type": "markdown",
+ "metadata": {},
+ "source": [
+ "# Optimisers\n",
+ "### Generator and Discriminator Optimisers"
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": 8,
+ "metadata": {},
+ "outputs": [],
+ "source": [
+ "generator_optimizer = tf.keras.optimizers.Adam(learning_rate=1e-4, beta_1=0, beta_2=0.9)\n",
+ "discriminator_optimizer = tf.keras.optimizers.Adam(learning_rate=4*1e-4, beta_1=0, beta_2=0.9)"
+ ]
+ },
+ {
+ "cell_type": "markdown",
+ "metadata": {},
+ "source": [
+ "# Style GAN\n",
+ "### Training of the StyleGAN, will also be genrating and saving the images while training."
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": 9,
+ "metadata": {},
+ "outputs": [],
+ "source": [
+ "class StyleGAN(object):\n",
+ " def __init__(self, steps = 1, learn_rate = 1e-4):\n",
+ " self.GAN = GAN(steps = steps, learn_rate = learn_rate)\n",
+ " \n",
+ " self.generator = self.GAN.gen_model()\n",
+ " self.discriminiator = self.GAN.discriminator()\n",
+ " \n",
+ " self.weight = np.array([10] * BATCH_SIZE).astype('float32')\n",
+ "\n",
+ " # Train function\n",
+ " def train(self, train_set):\n",
+ " # Randomly train alternating styles\n",
+ " # Mixing Regularisation\n",
+ " if random.random() < MIX_PROB:\n",
+ " style = get_mixed_noise(BATCH_SIZE)\n",
+ " else:\n",
+ " style = get_noise(BATCH_SIZE)\n",
+ "\n",
+ " \n",
+ " d_loss, g_loss, div = self.train_step(train_set.astype('float32'), style, img_dim(12), self.weight)\n",
+ "\n",
+ " new_weight = 5/(np.array(div) + 1e-7)\n",
+ " self.weight = self.weight[0] * 0.9 + 0.1 * new_weight\n",
+ " self.weight = np.clip([self.weight] * BATCH_SIZE, 0.01, 10000.0).astype('float32')\n",
+ "\n",
+ " # Print progress after models after 100 steps\n",
+ " if self.GAN.steps%100 == 0:\n",
+ " print(\"\\n==============================\")\n",
+ " print(\"Epoch: \", self.GAN.steps)\n",
+ " print(\"Discriminator Loss: \", d_loss)\n",
+ " print(\"Generator Loss: \", g_loss)\n",
+ " print(\"==============================\\n\")\n",
+ "\n",
+ " #Save images in /Generated-img after every 500 epochs\n",
+ " if self.GAN.steps%500 == 0:\n",
+ " self.save_image(self.GAN.steps/500)\n",
+ "\n",
+ " self.GAN.steps += 1\n",
+ " if self.GAN.steps < 2:\n",
+ " print(self.GAN.steps)\n",
+ "\n",
+ " @tf.function\n",
+ " def train_step(self, images, style, noise, weight):\n",
+ " with tf.GradientTape() as g_tape, tf.GradientTape() as d_tape:\n",
+ " generated_img = self.GAN.g_model(style + [noise], training=True)\n",
+ " real_output = self.GAN.desc(images, training=True)\n",
+ " generated_output = self.GAN.desc(generated_img, training=True)\n",
+ "\n",
+ " generator_loss = tf.keras.backend.mean(generated_output)\n",
+ " divergence = tf.keras.backend.mean(tf.keras.backend.relu(1+real_output) \\\n",
+ " + tf.keras.backend.relu(1-generated_output))\n",
+ " # Gradient Loss added to discriminator loss\n",
+ " discriminator_loss = divergence + gradient_loss(images, real_output, weight)\n",
+ "\n",
+ " gradients_of_generator = g_tape.gradient(generator_loss, self.GAN.g_model.trainable_variables)\n",
+ " gradients_of_discriminator = d_tape.gradient(discriminator_loss, \\\n",
+ " self.GAN.desc.trainable_variables)\n",
+ "\n",
+ " generator_optimizer.apply_gradients(zip(gradients_of_generator, \\\n",
+ " self.GAN.g_model.trainable_variables))\n",
+ " discriminator_optimizer.apply_gradients(zip(gradients_of_discriminator, \\\n",
+ " self.GAN.desc.trainable_variables))\n",
+ " \n",
+ " return discriminator_loss, generator_loss, divergence\n",
+ "\n",
+ " # Function to generate and save the image to directory \"Generated_img\"\n",
+ " def save_image(self, image_num):\n",
+ " noise1 = get_noise(64)\n",
+ " noise2 = img_dim(64)\n",
+ "\n",
+ " generated_images = self.GAN.g_model.predict(noise1 + [noise2], batch_size = BATCH_SIZE)\n",
+ "\n",
+ " result = []\n",
+ "\n",
+ " result.append(np.concatenate(generated_images[0:1], axis = 1))\n",
+ " x = np.concatenate(result, axis = 0)\n",
+ " x = np.clip(x, 0.0, 1.0)\n",
+ "\n",
+ " images = Image.fromarray(np.uint8(x*255))\n",
+ "\n",
+ " images.save(\"Generated_img/img-\"+str(image_num)+\".png\")\n",
+ " # Show first(before training) and last(after 50000 epoch) genrated images \n",
+ " if image_num == 0 or image_num == 100.0:\n",
+ " plt.imshow(images)\n",
+ " "
+ ]
+ },
+ {
+ "cell_type": "markdown",
+ "metadata": {},
+ "source": [
+ "# Data Processing"
+ ]
+ },
+ {
+ "cell_type": "markdown",
+ "metadata": {},
+ "source": [
+ "## Convert OASIS Brain data to .npy\n",
+ "Converts the OASIS Brain .png images to .npy arrays for training efficiency "
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": 15,
+ "metadata": {},
+ "outputs": [],
+ "source": [
+ "# function to convert images in a directory to numpy array \n",
+ "def convert_to_npy(dir_path):\n",
+ " segment_length = (1024 ** 3) // (IMG_SIZE*IMG_SIZE*3)\n",
+ "\n",
+ " file_names = []\n",
+ "\n",
+ " for dirpath, dirnames, filenames in os.walk(dir_path):\n",
+ " for filename in filenames:\n",
+ " file_names.append(os.path.join(dirpath, filename))\n",
+ "\n",
+ " np.random.shuffle(file_names)\n",
+ " \n",
+ " segment = []\n",
+ " ctr = 0\n",
+ " n = 0\n",
+ " for fname in file_names:\n",
+ " img = Image.open(fname).convert(\"RGB\").resize((IMG_SIZE, IMG_SIZE), Image.BILINEAR)\n",
+ " img = np.array(img, dtype='uint8')\n",
+ " segment.append(img)\n",
+ " n += 1\n",
+ "\n",
+ " if n >= segment_length:\n",
+ " np.save(\"OASIS-Brain-npy/image-\" + str(ctr) + \".npy\", np.array(segment))\n",
+ " segment = []\n",
+ " n = 0\n",
+ " ctr += 1\n",
+ "\n",
+ " np.save(\"OASIS-Brain-npy/image-\" + str(ctr) + \".npy\", np.array(segment))"
+ ]
+ },
+ {
+ "cell_type": "markdown",
+ "metadata": {},
+ "source": [
+ "### If data nor loaded as .npy run the next code block\n",
+ "* This block will create a directory \"OASIS-Brain-npy\"\n",
+ "* Data directory (OASIS brain png files) can also be changed by changing 'data_dir' "
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": 11,
+ "metadata": {},
+ "outputs": [],
+ "source": [
+ "# Uncomment this block to run code to convert image folder to .npy folders\n",
+ "# path to original image directory is 'data_dir'\n",
+ "\"\"\"\n",
+ "# Uncomment next line if directory \"OASIS-Brain-npy\" does not exists\n",
+ "# os.mkdir(\"OASIS-Brain-npy\")\n",
+ "data_dir = \"keras_png_slices_data/keras_png_slices_train\"\n",
+ "convert_to_npy(data_dir)\n",
+ "\"\"\""
+ ]
+ },
+ {
+ "cell_type": "markdown",
+ "metadata": {},
+ "source": [
+ "### If folder with .npy exists run this block instead else run previous block before this"
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": 12,
+ "metadata": {},
+ "outputs": [
+ {
+ "name": "stdout",
+ "output_type": "stream",
+ "text": [
+ "1184 images.\n"
+ ]
+ }
+ ],
+ "source": [
+ "def load_data(data_path):\n",
+ " segment = []\n",
+ " images = []\n",
+ " for dirpath, dirnames, filenames in os.walk(data_path):\n",
+ " for filename in filenames:\n",
+ " segment.append(os.path.join(dirpath, filename))\n",
+ " \n",
+ " index = random.randint(0, len(segment) - 1)\n",
+ " images = np.load(segment[index])\n",
+ " return images\n",
+ "\n",
+ "images = load_data('OASIS-Brain-npy')"
+ ]
+ },
+ {
+ "cell_type": "markdown",
+ "metadata": {},
+ "source": [
+ "# Get Training Images\n",
+ "### Training to be done on number of images = BATCH_SIZE "
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": 13,
+ "metadata": {},
+ "outputs": [],
+ "source": [
+ "def get_training_batch(images, update):\n",
+ " if update > images.shape[0]:\n",
+ " images = load_data('OASIS-Brain-npy')\n",
+ "\n",
+ " #randomly select #BATCH_SIZE numbers\n",
+ " print(images.shape)\n",
+ " indeces = np.random.randint(0, images.shape[0] - 1, BATCH_SIZE)\n",
+ " train_set = []\n",
+ " # Selects #BATCH_SIZE images randomly from the dataset\n",
+ " for i in indeces:\n",
+ " train_set.append(images[i])\n",
+ "\n",
+ " return np.array(train_set).astype('float32') / 255.0"
+ ]
+ },
+ {
+ "cell_type": "markdown",
+ "metadata": {},
+ "source": [
+ "# Train Model\n",
+ "### Initiates the training and also generates serialised images after every 100 epochs to give the progress"
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": 14,
+ "metadata": {},
+ "outputs": [
+ {
+ "name": "stdout",
+ "output_type": "stream",
+ "text": [
+ "(1184, 256, 256, 3)\n",
+ "(12, 256, 256, 3)\n",
+ "(12, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 1\n",
+ "Discriminator Loss: tf.Tensor(2.3789513, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.21528085, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 2\n",
+ "Discriminator Loss: tf.Tensor(16.266743, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(108.9328, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 3\n",
+ "Discriminator Loss: tf.Tensor(4.474855, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-3.4575055, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 4\n",
+ "Discriminator Loss: tf.Tensor(3.913376, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(33.777664, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 5\n",
+ "Discriminator Loss: tf.Tensor(0.22044788, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(7.1317983, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 6\n",
+ "Discriminator Loss: tf.Tensor(9.276582, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-8.222989, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 7\n",
+ "Discriminator Loss: tf.Tensor(4.8533335, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(46.013798, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 8\n",
+ "Discriminator Loss: tf.Tensor(1.0228608, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(5.7690296, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 9\n",
+ "Discriminator Loss: tf.Tensor(1.5692377, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.16930096, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 10\n",
+ "Discriminator Loss: tf.Tensor(2.5250764, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(35.184834, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 11\n",
+ "Discriminator Loss: tf.Tensor(1.264775, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(14.818966, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 12\n",
+ "Discriminator Loss: tf.Tensor(0.8382339, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(10.525006, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 13\n",
+ "Discriminator Loss: tf.Tensor(0.19761364, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(4.647057, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 14\n",
+ "Discriminator Loss: tf.Tensor(1.1353319, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(9.523869, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 15\n",
+ "Discriminator Loss: tf.Tensor(0.38924354, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(4.133632, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 16\n",
+ "Discriminator Loss: tf.Tensor(4.9392447, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-3.2625506, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 17\n",
+ "Discriminator Loss: tf.Tensor(5.0510454, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(54.117645, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 18\n",
+ "Discriminator Loss: tf.Tensor(2.507627, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-1.0477409, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 19\n",
+ "Discriminator Loss: tf.Tensor(4.058769, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(84.31558, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 20\n",
+ "Discriminator Loss: tf.Tensor(2.0512984, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(37.340794, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 21\n",
+ "Discriminator Loss: tf.Tensor(1.3839957, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.464398, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 22\n",
+ "Discriminator Loss: tf.Tensor(1.4252667, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(30.286875, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 23\n",
+ "Discriminator Loss: tf.Tensor(0.92318994, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(11.215519, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 24\n",
+ "Discriminator Loss: tf.Tensor(0.5527722, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(8.236987, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 25\n",
+ "Discriminator Loss: tf.Tensor(0.011998363, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(7.688112, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 26\n",
+ "Discriminator Loss: tf.Tensor(0.59191006, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(10.894268, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 27\n",
+ "Discriminator Loss: tf.Tensor(0.7799766, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.0668147, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 28\n",
+ "Discriminator Loss: tf.Tensor(3.2572024, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(41.86394, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 29\n",
+ "Discriminator Loss: tf.Tensor(0.94233704, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(11.722228, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 30\n",
+ "Discriminator Loss: tf.Tensor(0.7457734, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(5.1279416, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 31\n",
+ "Discriminator Loss: tf.Tensor(0.3990666, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(3.372668, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 32\n",
+ "Discriminator Loss: tf.Tensor(0.037238926, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(4.180938, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 33\n",
+ "Discriminator Loss: tf.Tensor(4.670412, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(4.1868157, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 34\n",
+ "Discriminator Loss: tf.Tensor(42.30909, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.4512813, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 35\n",
+ "Discriminator Loss: tf.Tensor(11.365759, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.3583765, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 36\n",
+ "Discriminator Loss: tf.Tensor(18.020079, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.4861858, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 37\n",
+ "Discriminator Loss: tf.Tensor(27.963203, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.0792519, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 38\n",
+ "Discriminator Loss: tf.Tensor(1.8083534, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.1870311, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 39\n",
+ "Discriminator Loss: tf.Tensor(1.4871113, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.7110109, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 40\n",
+ "Discriminator Loss: tf.Tensor(1.8873305, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.46276972, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 41\n",
+ "Discriminator Loss: tf.Tensor(2.2390237, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(6.1454487, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 42\n",
+ "Discriminator Loss: tf.Tensor(1.2425592, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.99875623, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 43\n",
+ "Discriminator Loss: tf.Tensor(1.2635665, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.9817398, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 44\n",
+ "Discriminator Loss: tf.Tensor(0.9971046, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.4732105, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 45\n",
+ "Discriminator Loss: tf.Tensor(0.902543, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.2512447, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 46\n",
+ "Discriminator Loss: tf.Tensor(0.81103414, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.6243091, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 47\n",
+ "Discriminator Loss: tf.Tensor(0.95361847, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.71367645, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 48\n",
+ "Discriminator Loss: tf.Tensor(1.7623899, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(6.991838, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 49\n",
+ "Discriminator Loss: tf.Tensor(0.9737642, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.682466, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 50\n",
+ "Discriminator Loss: tf.Tensor(0.845407, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.1170287, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 51\n",
+ "Discriminator Loss: tf.Tensor(0.5333461, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.73821, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 52\n",
+ "Discriminator Loss: tf.Tensor(0.31858227, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.0559932, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 53\n",
+ "Discriminator Loss: tf.Tensor(1.4635363, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(6.2550488, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 54\n",
+ "Discriminator Loss: tf.Tensor(0.35450417, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.4274527, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 55\n",
+ "Discriminator Loss: tf.Tensor(0.689392, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(4.323613, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 56\n",
+ "Discriminator Loss: tf.Tensor(1.8813984, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.6149006, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 57\n",
+ "Discriminator Loss: tf.Tensor(1.402771, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(7.4221234, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 58\n",
+ "Discriminator Loss: tf.Tensor(0.559263, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.5889744, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 59\n",
+ "Discriminator Loss: tf.Tensor(0.22908643, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.7029831, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 60\n",
+ "Discriminator Loss: tf.Tensor(0.2519368, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.1294823, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 61\n",
+ "Discriminator Loss: tf.Tensor(1.5093415, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(12.651694, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 62\n",
+ "Discriminator Loss: tf.Tensor(0.13828252, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(3.9366014, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 63\n",
+ "Discriminator Loss: tf.Tensor(0.14024483, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.3694549, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 64\n",
+ "Discriminator Loss: tf.Tensor(0.64886165, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(7.423561, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 65\n",
+ "Discriminator Loss: tf.Tensor(0.1381298, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.6320448, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 66\n",
+ "Discriminator Loss: tf.Tensor(0.071093686, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.4703548, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 67\n",
+ "Discriminator Loss: tf.Tensor(1.4450631, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.8920072, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 68\n",
+ "Discriminator Loss: tf.Tensor(1.7052222, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.2534611, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 69\n",
+ "Discriminator Loss: tf.Tensor(3.7081687, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.104657, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 70\n",
+ "Discriminator Loss: tf.Tensor(2.0582907, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.7706152, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 71\n",
+ "Discriminator Loss: tf.Tensor(2.1033955, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.8607962, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 72\n",
+ "Discriminator Loss: tf.Tensor(0.8714884, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.9662069, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 73\n",
+ "Discriminator Loss: tf.Tensor(0.8569102, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(3.3375976, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 74\n",
+ "Discriminator Loss: tf.Tensor(1.5800776, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.09603941, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 75\n",
+ "Discriminator Loss: tf.Tensor(45.075428, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(30.585701, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 76\n",
+ "Discriminator Loss: tf.Tensor(4.043004, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-2.002997, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 77\n",
+ "Discriminator Loss: tf.Tensor(5.2685204, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(30.305338, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 78\n",
+ "Discriminator Loss: tf.Tensor(1.7055824, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.45392755, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 79\n",
+ "Discriminator Loss: tf.Tensor(1.1972294, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(4.327514, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 80\n",
+ "Discriminator Loss: tf.Tensor(3.2323902, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.7017112, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 81\n",
+ "Discriminator Loss: tf.Tensor(2.63792, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.76762444, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 82\n",
+ "Discriminator Loss: tf.Tensor(5.907646, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(3.9505088, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 83\n",
+ "Discriminator Loss: tf.Tensor(2.4831715, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.6625019, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 84\n",
+ "Discriminator Loss: tf.Tensor(1.6719759, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.14158046, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 85\n",
+ "Discriminator Loss: tf.Tensor(1.1131331, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.16152245, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 86\n",
+ "Discriminator Loss: tf.Tensor(0.74675184, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.4035788, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 87\n",
+ "Discriminator Loss: tf.Tensor(2.3718512, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.93406266, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 88\n",
+ "Discriminator Loss: tf.Tensor(0.7766338, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.7526601, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 89\n",
+ "Discriminator Loss: tf.Tensor(0.65912247, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.4137695, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 90\n",
+ "Discriminator Loss: tf.Tensor(0.9911386, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.21224226, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 91\n",
+ "Discriminator Loss: tf.Tensor(0.32888952, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.5880556, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 92\n",
+ "Discriminator Loss: tf.Tensor(0.16864549, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.1262054, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 93\n",
+ "Discriminator Loss: tf.Tensor(0.102488466, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.9389668, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 94\n",
+ "Discriminator Loss: tf.Tensor(0.31652388, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.83406, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 95\n",
+ "Discriminator Loss: tf.Tensor(0.35209772, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(3.5428884, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 96\n",
+ "Discriminator Loss: tf.Tensor(1.8700267, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.606653, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 97\n",
+ "Discriminator Loss: tf.Tensor(1.2544608, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.9014416, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 98\n",
+ "Discriminator Loss: tf.Tensor(0.6422592, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.8232359, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 99\n",
+ "Discriminator Loss: tf.Tensor(4.087871, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(3.9340343, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 100\n",
+ "Discriminator Loss: tf.Tensor(2.9447322, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.9646334, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 101\n",
+ "Discriminator Loss: tf.Tensor(2.3313317, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.5472432, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 102\n",
+ "Discriminator Loss: tf.Tensor(2.312618, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.6035115, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 103\n",
+ "Discriminator Loss: tf.Tensor(4.474585, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(3.2838345, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 104\n",
+ "Discriminator Loss: tf.Tensor(2.6704588, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.8859186, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 105\n",
+ "Discriminator Loss: tf.Tensor(0.77026457, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.1608573, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 106\n",
+ "Discriminator Loss: tf.Tensor(0.8604895, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.34800434, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 107\n",
+ "Discriminator Loss: tf.Tensor(8.4374695, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(5.503843, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 108\n",
+ "Discriminator Loss: tf.Tensor(2.2797894, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-1.0223633, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 109\n",
+ "Discriminator Loss: tf.Tensor(0.713779, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.6294098, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 110\n",
+ "Discriminator Loss: tf.Tensor(1.6592011, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(3.7473094, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 111\n",
+ "Discriminator Loss: tf.Tensor(1.4715877, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.2869018, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 112\n",
+ "Discriminator Loss: tf.Tensor(0.80160344, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.3297019, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 113\n",
+ "Discriminator Loss: tf.Tensor(1.4462774, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.35571566, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 114\n",
+ "Discriminator Loss: tf.Tensor(0.28074557, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.2823697, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 115\n",
+ "Discriminator Loss: tf.Tensor(0.1311271, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.4993483, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 116\n",
+ "Discriminator Loss: tf.Tensor(1.6084371, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(3.9214008, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 117\n",
+ "Discriminator Loss: tf.Tensor(1.8840206, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.81450343, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 118\n",
+ "Discriminator Loss: tf.Tensor(0.6790334, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.91569465, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 119\n",
+ "Discriminator Loss: tf.Tensor(0.1301029, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.6532744, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 120\n",
+ "Discriminator Loss: tf.Tensor(0.32349968, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(3.0758693, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 121\n",
+ "Discriminator Loss: tf.Tensor(0.38240805, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.8357733, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 122\n",
+ "Discriminator Loss: tf.Tensor(0.43029124, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(5.2438107, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 123\n",
+ "Discriminator Loss: tf.Tensor(0.1096853, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(7.405514, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 124\n",
+ "Discriminator Loss: tf.Tensor(0.5855575, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(5.8799186, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 125\n",
+ "Discriminator Loss: tf.Tensor(3.500764, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(3.9375408, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 126\n",
+ "Discriminator Loss: tf.Tensor(4.992205, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(3.6818016, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 127\n",
+ "Discriminator Loss: tf.Tensor(2.4472396, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.2640493, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 128\n",
+ "Discriminator Loss: tf.Tensor(4.7866764, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.0471551, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 129\n",
+ "Discriminator Loss: tf.Tensor(17.809399, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(10.325679, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 130\n",
+ "Discriminator Loss: tf.Tensor(3.6187308, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-1.3918308, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 131\n",
+ "Discriminator Loss: tf.Tensor(1.7779776, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.0063302345, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 132\n",
+ "Discriminator Loss: tf.Tensor(0.9766642, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.9123933, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 133\n",
+ "Discriminator Loss: tf.Tensor(1.272663, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.2300873, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 134\n",
+ "Discriminator Loss: tf.Tensor(3.7070673, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-1.7224864, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 135\n",
+ "Discriminator Loss: tf.Tensor(1.8929608, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.47181186, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 136\n",
+ "Discriminator Loss: tf.Tensor(1.0600026, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.55926776, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 137\n",
+ "Discriminator Loss: tf.Tensor(5.5371666, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(5.647248, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 138\n",
+ "Discriminator Loss: tf.Tensor(1.7157117, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.37690917, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 139\n",
+ "Discriminator Loss: tf.Tensor(1.0035132, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.14240962, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 140\n",
+ "Discriminator Loss: tf.Tensor(0.7563451, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.4192642, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 141\n",
+ "Discriminator Loss: tf.Tensor(3.3137102, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(3.0679376, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 142\n",
+ "Discriminator Loss: tf.Tensor(1.3956206, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.26401666, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 143\n",
+ "Discriminator Loss: tf.Tensor(1.1181675, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.44017467, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 144\n",
+ "Discriminator Loss: tf.Tensor(0.80098784, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.31028318, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 145\n",
+ "Discriminator Loss: tf.Tensor(1.37868, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.4136946, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 146\n",
+ "Discriminator Loss: tf.Tensor(0.7558054, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.3600994, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 147\n",
+ "Discriminator Loss: tf.Tensor(0.47183782, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.4669074, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 148\n",
+ "Discriminator Loss: tf.Tensor(0.12973437, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.255191, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 149\n",
+ "Discriminator Loss: tf.Tensor(0.06445437, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(3.0772867, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 150\n",
+ "Discriminator Loss: tf.Tensor(0.4046844, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(4.602545, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 151\n",
+ "Discriminator Loss: tf.Tensor(0.52365667, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(3.8670514, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 152\n",
+ "Discriminator Loss: tf.Tensor(1.3583273, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.7117634, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 153\n",
+ "Discriminator Loss: tf.Tensor(0.97856575, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.7046503, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 154\n",
+ "Discriminator Loss: tf.Tensor(0.6985898, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.6850935, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 155\n",
+ "Discriminator Loss: tf.Tensor(0.40307766, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.4464346, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 156\n",
+ "Discriminator Loss: tf.Tensor(1.6249057, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.770891, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 157\n",
+ "Discriminator Loss: tf.Tensor(2.7950768, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-1.359889, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 158\n",
+ "Discriminator Loss: tf.Tensor(1.9176913, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.5349214, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 159\n",
+ "Discriminator Loss: tf.Tensor(1.8060323, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.52037126, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 160\n",
+ "Discriminator Loss: tf.Tensor(2.244297, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.394906, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 161\n",
+ "Discriminator Loss: tf.Tensor(1.6058723, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.41432557, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 162\n",
+ "Discriminator Loss: tf.Tensor(1.7740281, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.19222713, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 163\n",
+ "Discriminator Loss: tf.Tensor(2.0411134, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(3.0396068, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 164\n",
+ "Discriminator Loss: tf.Tensor(2.6889274, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-1.1905689, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 165\n",
+ "Discriminator Loss: tf.Tensor(2.0177574, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.1564447, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 166\n",
+ "Discriminator Loss: tf.Tensor(1.188182, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.09627465, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 167\n",
+ "Discriminator Loss: tf.Tensor(8.442995, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(4.9875617, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 168\n",
+ "Discriminator Loss: tf.Tensor(3.989339, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-2.7015324, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 169\n",
+ "Discriminator Loss: tf.Tensor(0.22330487, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(6.8214087, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 170\n",
+ "Discriminator Loss: tf.Tensor(0.9250835, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.820117, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 171\n",
+ "Discriminator Loss: tf.Tensor(39.878696, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(4.3286123, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 172\n",
+ "Discriminator Loss: tf.Tensor(3.571393, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.69705087, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 173\n",
+ "Discriminator Loss: tf.Tensor(2.3023717, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.4670726, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 174\n",
+ "Discriminator Loss: tf.Tensor(2.0235248, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.24875963, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 175\n",
+ "Discriminator Loss: tf.Tensor(1.0723602, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.6132712, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 176\n",
+ "Discriminator Loss: tf.Tensor(2.9286735, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.1793718, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 177\n",
+ "Discriminator Loss: tf.Tensor(2.3755836, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.94086474, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 178\n",
+ "Discriminator Loss: tf.Tensor(1.9268868, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.23117714, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 179\n",
+ "Discriminator Loss: tf.Tensor(1.440936, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.06246065, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 180\n",
+ "Discriminator Loss: tf.Tensor(1.2444289, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.86711234, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 181\n",
+ "Discriminator Loss: tf.Tensor(1.223314, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.1679659, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 182\n",
+ "Discriminator Loss: tf.Tensor(11.447929, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(4.514288, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 183\n",
+ "Discriminator Loss: tf.Tensor(2.5410328, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-1.2235432, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 184\n",
+ "Discriminator Loss: tf.Tensor(0.76297116, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.60367364, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 185\n",
+ "Discriminator Loss: tf.Tensor(0.46091917, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.0454959, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 186\n",
+ "Discriminator Loss: tf.Tensor(0.704202, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.88193864, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 187\n",
+ "Discriminator Loss: tf.Tensor(1.3880165, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.955613, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 188\n",
+ "Discriminator Loss: tf.Tensor(1.6212392, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.41869608, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 189\n",
+ "Discriminator Loss: tf.Tensor(0.43353164, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.95733076, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 190\n",
+ "Discriminator Loss: tf.Tensor(0.4913103, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.2307866, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 191\n",
+ "Discriminator Loss: tf.Tensor(0.45662087, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.8868615, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 192\n",
+ "Discriminator Loss: tf.Tensor(0.19928922, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.8555877, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 193\n",
+ "Discriminator Loss: tf.Tensor(1.0248642, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.3887937, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 194\n",
+ "Discriminator Loss: tf.Tensor(3.2475932, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.7274483, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 195\n",
+ "Discriminator Loss: tf.Tensor(2.2342508, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.7431679, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 196\n",
+ "Discriminator Loss: tf.Tensor(3.3006263, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.3989254, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 197\n",
+ "Discriminator Loss: tf.Tensor(3.5174556, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.8217962, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 198\n",
+ "Discriminator Loss: tf.Tensor(3.9979312, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.3941059, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 199\n",
+ "Discriminator Loss: tf.Tensor(2.0866165, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.53946376, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 200\n",
+ "Discriminator Loss: tf.Tensor(1.706568, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.25005952, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 201\n",
+ "Discriminator Loss: tf.Tensor(1.4455594, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.31845453, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 202\n",
+ "Discriminator Loss: tf.Tensor(1.3210559, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.9325934, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 203\n",
+ "Discriminator Loss: tf.Tensor(2.1683958, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.64552885, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 204\n",
+ "Discriminator Loss: tf.Tensor(1.7898319, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.2953619, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 205\n",
+ "Discriminator Loss: tf.Tensor(1.6110346, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.13666558, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 206\n",
+ "Discriminator Loss: tf.Tensor(4.741089, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.6731392, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 207\n",
+ "Discriminator Loss: tf.Tensor(2.3370383, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.8851168, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 208\n",
+ "Discriminator Loss: tf.Tensor(0.59498525, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.7806892, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 209\n",
+ "Discriminator Loss: tf.Tensor(0.95494413, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.34620106, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 210\n",
+ "Discriminator Loss: tf.Tensor(15.48535, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(4.8071494, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 211\n",
+ "Discriminator Loss: tf.Tensor(1.9883828, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.71253926, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 212\n",
+ "Discriminator Loss: tf.Tensor(0.515411, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.6633126, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 213\n",
+ "Discriminator Loss: tf.Tensor(0.9839339, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.8159132, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 214\n",
+ "Discriminator Loss: tf.Tensor(1.5598218, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.42323768, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 215\n",
+ "Discriminator Loss: tf.Tensor(0.6554461, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.65948063, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 216\n",
+ "Discriminator Loss: tf.Tensor(1.3727957, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.160103, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 217\n",
+ "Discriminator Loss: tf.Tensor(2.2156043, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-1.0086627, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 218\n",
+ "Discriminator Loss: tf.Tensor(0.9509388, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.31518176, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 219\n",
+ "Discriminator Loss: tf.Tensor(0.5661726, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.7383871, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 220\n",
+ "Discriminator Loss: tf.Tensor(1.1300392, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.8941885, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 221\n",
+ "Discriminator Loss: tf.Tensor(1.8761028, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.7953531, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 222\n",
+ "Discriminator Loss: tf.Tensor(0.9317951, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.12028638, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 223\n",
+ "Discriminator Loss: tf.Tensor(1.0250832, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.0243192, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 224\n",
+ "Discriminator Loss: tf.Tensor(0.11513996, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.2026758, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 225\n",
+ "Discriminator Loss: tf.Tensor(0.14857884, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.0706735, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 226\n",
+ "Discriminator Loss: tf.Tensor(0.62656546, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(4.2826343, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 227\n",
+ "Discriminator Loss: tf.Tensor(0.4767606, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.7080128, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 228\n",
+ "Discriminator Loss: tf.Tensor(0.22718556, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.6671617, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 229\n",
+ "Discriminator Loss: tf.Tensor(0.25487775, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.4882421, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 230\n",
+ "Discriminator Loss: tf.Tensor(0.10844133, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(4.4984927, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 231\n",
+ "Discriminator Loss: tf.Tensor(2.3663006, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(3.3273563, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 232\n",
+ "Discriminator Loss: tf.Tensor(10.792413, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.3611426, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 233\n",
+ "Discriminator Loss: tf.Tensor(3.3767326, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.995108, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 234\n",
+ "Discriminator Loss: tf.Tensor(2.8495672, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.5160771, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 235\n",
+ "Discriminator Loss: tf.Tensor(31.061161, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(9.299033, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 236\n",
+ "Discriminator Loss: tf.Tensor(3.0440328, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-1.0299476, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 237\n",
+ "Discriminator Loss: tf.Tensor(1.7352493, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.13191628, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 238\n",
+ "Discriminator Loss: tf.Tensor(0.96659505, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.51464975, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 239\n",
+ "Discriminator Loss: tf.Tensor(1.30215, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.0255347, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 240\n",
+ "Discriminator Loss: tf.Tensor(2.3887734, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.2635351, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 241\n",
+ "Discriminator Loss: tf.Tensor(4.2497215, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.0591711, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 242\n",
+ "Discriminator Loss: tf.Tensor(2.4373672, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.90892416, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 243\n",
+ "Discriminator Loss: tf.Tensor(1.7962924, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.1060158, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 244\n",
+ "Discriminator Loss: tf.Tensor(1.5632546, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.36397895, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 245\n",
+ "Discriminator Loss: tf.Tensor(1.5180988, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.7995909, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 246\n",
+ "Discriminator Loss: tf.Tensor(1.428579, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.047386337, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 247\n",
+ "Discriminator Loss: tf.Tensor(2.600196, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.4417467, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 248\n",
+ "Discriminator Loss: tf.Tensor(2.0084918, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.80850035, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 249\n",
+ "Discriminator Loss: tf.Tensor(1.7708988, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.29126164, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 250\n",
+ "Discriminator Loss: tf.Tensor(1.5539603, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.35058978, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 251\n",
+ "Discriminator Loss: tf.Tensor(1.3174924, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.200531, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 252\n",
+ "Discriminator Loss: tf.Tensor(1.6060063, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.16032271, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 253\n",
+ "Discriminator Loss: tf.Tensor(1.4202476, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.3131098, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 254\n",
+ "Discriminator Loss: tf.Tensor(1.1804866, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.48833036, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 255\n",
+ "Discriminator Loss: tf.Tensor(0.7801858, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.0317403, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 256\n",
+ "Discriminator Loss: tf.Tensor(0.74021524, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.3633685, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 257\n",
+ "Discriminator Loss: tf.Tensor(2.5662694, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(4.49651, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 258\n",
+ "Discriminator Loss: tf.Tensor(0.625446, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.5331123, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 259\n",
+ "Discriminator Loss: tf.Tensor(0.37723225, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.7842164, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 260\n",
+ "Discriminator Loss: tf.Tensor(0.9803928, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.949755, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 261\n",
+ "Discriminator Loss: tf.Tensor(1.3016305, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.19137408, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 262\n",
+ "Discriminator Loss: tf.Tensor(1.915216, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.7036707, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 263\n",
+ "Discriminator Loss: tf.Tensor(0.90120673, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.15545702, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 264\n",
+ "Discriminator Loss: tf.Tensor(0.5915771, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.60431296, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 265\n",
+ "Discriminator Loss: tf.Tensor(2.5714262, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(3.1927197, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 266\n",
+ "Discriminator Loss: tf.Tensor(1.0808134, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.007180425, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 267\n",
+ "Discriminator Loss: tf.Tensor(1.5846472, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.1224022, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 268\n",
+ "Discriminator Loss: tf.Tensor(1.4867404, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.46154055, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 269\n",
+ "Discriminator Loss: tf.Tensor(1.0479683, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.7628425, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 270\n",
+ "Discriminator Loss: tf.Tensor(0.47109535, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.60557264, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 271\n",
+ "Discriminator Loss: tf.Tensor(4.128986, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(7.4012437, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 272\n",
+ "Discriminator Loss: tf.Tensor(0.71062326, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.30898795, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 273\n",
+ "Discriminator Loss: tf.Tensor(0.020660495, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(3.3619068, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 274\n",
+ "Discriminator Loss: tf.Tensor(1.5064176, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.72571486, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 275\n",
+ "Discriminator Loss: tf.Tensor(5.18792, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.6082255, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 276\n",
+ "Discriminator Loss: tf.Tensor(6.5985737, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.16871719, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 277\n",
+ "Discriminator Loss: tf.Tensor(3.7058554, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.72923034, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 278\n",
+ "Discriminator Loss: tf.Tensor(3.266857, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.2185688, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 279\n",
+ "Discriminator Loss: tf.Tensor(12.837299, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.787971, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 280\n",
+ "Discriminator Loss: tf.Tensor(3.2762387, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.9288528, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 281\n",
+ "Discriminator Loss: tf.Tensor(2.0106096, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.10279862, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 282\n",
+ "Discriminator Loss: tf.Tensor(1.3159907, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.65752125, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 283\n",
+ "Discriminator Loss: tf.Tensor(7.2183022, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.1522356, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 284\n",
+ "Discriminator Loss: tf.Tensor(2.1660402, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.4796025, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 285\n",
+ "Discriminator Loss: tf.Tensor(1.8189638, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.16449872, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 286\n",
+ "Discriminator Loss: tf.Tensor(1.6843383, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.12020443, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 287\n",
+ "Discriminator Loss: tf.Tensor(1.5748519, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.09656092, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 288\n",
+ "Discriminator Loss: tf.Tensor(1.8672793, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.49529025, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 289\n",
+ "Discriminator Loss: tf.Tensor(1.7442961, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.43098688, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 290\n",
+ "Discriminator Loss: tf.Tensor(1.4352978, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.18154465, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 291\n",
+ "Discriminator Loss: tf.Tensor(1.6159037, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.6288813, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 292\n",
+ "Discriminator Loss: tf.Tensor(3.1527388, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-1.6329035, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 293\n",
+ "Discriminator Loss: tf.Tensor(1.5246251, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.09088036, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 294\n",
+ "Discriminator Loss: tf.Tensor(0.94047236, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.49617156, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 295\n",
+ "Discriminator Loss: tf.Tensor(1.022158, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.7986433, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 296\n",
+ "Discriminator Loss: tf.Tensor(0.5276522, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.69015104, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 297\n",
+ "Discriminator Loss: tf.Tensor(8.986364, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(6.0599136, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 298\n",
+ "Discriminator Loss: tf.Tensor(1.6123127, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.33802238, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 299\n",
+ "Discriminator Loss: tf.Tensor(1.1944758, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.1194357, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 300\n",
+ "Discriminator Loss: tf.Tensor(1.250999, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.0008919537, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 301\n",
+ "Discriminator Loss: tf.Tensor(1.1349039, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.045742795, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 302\n",
+ "Discriminator Loss: tf.Tensor(1.5412157, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.38839903, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 303\n",
+ "Discriminator Loss: tf.Tensor(1.1312215, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.062011886, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 304\n",
+ "Discriminator Loss: tf.Tensor(1.3138223, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.87303346, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 305\n",
+ "Discriminator Loss: tf.Tensor(0.38615534, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.74124974, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 306\n",
+ "Discriminator Loss: tf.Tensor(3.293652, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(5.4969344, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 307\n",
+ "Discriminator Loss: tf.Tensor(0.3976261, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.77421695, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 308\n",
+ "Discriminator Loss: tf.Tensor(0.30643183, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.0542331, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 309\n",
+ "Discriminator Loss: tf.Tensor(0.4757308, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.71040756, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 310\n",
+ "Discriminator Loss: tf.Tensor(1.9524808, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(3.000248, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 311\n",
+ "Discriminator Loss: tf.Tensor(1.7396655, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.701032, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 312\n",
+ "Discriminator Loss: tf.Tensor(0.99704283, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.23305036, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 313\n",
+ "Discriminator Loss: tf.Tensor(0.42345068, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.67107445, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 314\n",
+ "Discriminator Loss: tf.Tensor(2.3044631, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(3.5151699, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 315\n",
+ "Discriminator Loss: tf.Tensor(1.1833817, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.14752714, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 316\n",
+ "Discriminator Loss: tf.Tensor(0.7362299, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.75686884, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 317\n",
+ "Discriminator Loss: tf.Tensor(0.32185015, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.9511902, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 318\n",
+ "Discriminator Loss: tf.Tensor(1.3555497, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(4.7414384, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 319\n",
+ "Discriminator Loss: tf.Tensor(1.8266801, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.7997233, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 320\n",
+ "Discriminator Loss: tf.Tensor(0.8535069, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.42940843, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 321\n",
+ "Discriminator Loss: tf.Tensor(0.10980304, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.4585499, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 322\n",
+ "Discriminator Loss: tf.Tensor(0.28178382, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.3896847, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 323\n",
+ "Discriminator Loss: tf.Tensor(16.503649, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.3834912, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 324\n",
+ "Discriminator Loss: tf.Tensor(13.31454, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.53569216, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 325\n",
+ "Discriminator Loss: tf.Tensor(19.780188, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.3102103, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 326\n",
+ "Discriminator Loss: tf.Tensor(21.92615, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.25204715, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 327\n",
+ "Discriminator Loss: tf.Tensor(49.693268, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.1670413, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 328\n",
+ "Discriminator Loss: tf.Tensor(4.063658, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.4681004, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 329\n",
+ "Discriminator Loss: tf.Tensor(1.8658252, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.17150235, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 330\n",
+ "Discriminator Loss: tf.Tensor(1.9428446, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.36136028, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 331\n",
+ "Discriminator Loss: tf.Tensor(2.7349293, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.5812662, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 332\n",
+ "Discriminator Loss: tf.Tensor(1.9517748, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.33299813, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 333\n",
+ "Discriminator Loss: tf.Tensor(2.6511261, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.1989349, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 334\n",
+ "Discriminator Loss: tf.Tensor(2.179708, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.40117958, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 335\n",
+ "Discriminator Loss: tf.Tensor(1.6621441, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.029939389, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 336\n",
+ "Discriminator Loss: tf.Tensor(1.4464065, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.47011647, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 337\n",
+ "Discriminator Loss: tf.Tensor(1.3228723, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.7559541, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 338\n",
+ "Discriminator Loss: tf.Tensor(1.3631972, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.95368284, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 339\n",
+ "Discriminator Loss: tf.Tensor(1.2392282, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.32019183, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 340\n",
+ "Discriminator Loss: tf.Tensor(1.6723063, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.3296809, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 341\n",
+ "Discriminator Loss: tf.Tensor(1.5415685, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.12540519, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 342\n",
+ "Discriminator Loss: tf.Tensor(1.2297401, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.35993934, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 343\n",
+ "Discriminator Loss: tf.Tensor(1.8198421, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.57316, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 344\n",
+ "Discriminator Loss: tf.Tensor(1.7192345, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.47659254, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 345\n",
+ "Discriminator Loss: tf.Tensor(1.311857, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.03535784, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 346\n",
+ "Discriminator Loss: tf.Tensor(1.3551266, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.6282851, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 347\n",
+ "Discriminator Loss: tf.Tensor(0.57806224, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.99184245, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 348\n",
+ "Discriminator Loss: tf.Tensor(0.22581837, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.3614136, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 349\n",
+ "Discriminator Loss: tf.Tensor(0.27143988, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.678615, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 350\n",
+ "Discriminator Loss: tf.Tensor(1.6000879, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.46312857, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 351\n",
+ "Discriminator Loss: tf.Tensor(2.322466, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.5959858, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 352\n",
+ "Discriminator Loss: tf.Tensor(1.5920198, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.29381254, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 353\n",
+ "Discriminator Loss: tf.Tensor(1.1318514, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.95127535, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 354\n",
+ "Discriminator Loss: tf.Tensor(0.86572313, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.24504061, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 355\n",
+ "Discriminator Loss: tf.Tensor(3.707694, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(3.904302, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 356\n",
+ "Discriminator Loss: tf.Tensor(1.3781605, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.18305238, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 357\n",
+ "Discriminator Loss: tf.Tensor(0.87663126, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.16369991, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 358\n",
+ "Discriminator Loss: tf.Tensor(0.75074214, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.40352347, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 359\n",
+ "Discriminator Loss: tf.Tensor(0.58813703, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.5159777, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 360\n",
+ "Discriminator Loss: tf.Tensor(2.2193553, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.5107949, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 361\n",
+ "Discriminator Loss: tf.Tensor(1.0187427, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.007151184, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 362\n",
+ "Discriminator Loss: tf.Tensor(1.1054379, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.2257813, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 363\n",
+ "Discriminator Loss: tf.Tensor(0.8101357, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.0108277, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 364\n",
+ "Discriminator Loss: tf.Tensor(1.0575516, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.030237665, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 365\n",
+ "Discriminator Loss: tf.Tensor(0.9191253, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.9431024, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 366\n",
+ "Discriminator Loss: tf.Tensor(0.34977534, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.7750885, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 367\n",
+ "Discriminator Loss: tf.Tensor(0.21311644, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.4952785, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 368\n",
+ "Discriminator Loss: tf.Tensor(0.22893772, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.1316992, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 369\n",
+ "Discriminator Loss: tf.Tensor(0.20989697, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.5547048, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 370\n",
+ "Discriminator Loss: tf.Tensor(0.21464716, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.3972116, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 371\n",
+ "Discriminator Loss: tf.Tensor(0.10424918, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.3488936, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 372\n",
+ "Discriminator Loss: tf.Tensor(0.19351946, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.634443, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 373\n",
+ "Discriminator Loss: tf.Tensor(4.7327247, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.5652113, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 374\n",
+ "Discriminator Loss: tf.Tensor(14.061771, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.2957724, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 375\n",
+ "Discriminator Loss: tf.Tensor(7.400604, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.6742873, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 376\n",
+ "Discriminator Loss: tf.Tensor(16.454597, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.2252387, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 377\n",
+ "Discriminator Loss: tf.Tensor(6.006699, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.5876015, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 378\n",
+ "Discriminator Loss: tf.Tensor(37.922688, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.54077315, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 379\n",
+ "Discriminator Loss: tf.Tensor(4.5610633, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.20037003, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 380\n",
+ "Discriminator Loss: tf.Tensor(9.266455, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.1967932, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 381\n",
+ "Discriminator Loss: tf.Tensor(2.3732038, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.3568307, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 382\n",
+ "Discriminator Loss: tf.Tensor(1.973244, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.47604358, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 383\n",
+ "Discriminator Loss: tf.Tensor(2.0753167, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.5485052, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 384\n",
+ "Discriminator Loss: tf.Tensor(1.8319061, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.50980186, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 385\n",
+ "Discriminator Loss: tf.Tensor(1.9246876, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.5846467, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 386\n",
+ "Discriminator Loss: tf.Tensor(1.888114, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.441983, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 387\n",
+ "Discriminator Loss: tf.Tensor(1.8241282, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.59736866, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 388\n",
+ "Discriminator Loss: tf.Tensor(1.8406826, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.6713581, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 389\n",
+ "Discriminator Loss: tf.Tensor(1.6614938, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.40877047, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 390\n",
+ "Discriminator Loss: tf.Tensor(1.6803457, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.91109085, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 391\n",
+ "Discriminator Loss: tf.Tensor(1.6020278, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.33271876, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 392\n",
+ "Discriminator Loss: tf.Tensor(1.7376925, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.0677298, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 393\n",
+ "Discriminator Loss: tf.Tensor(1.8779261, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.2651221, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 394\n",
+ "Discriminator Loss: tf.Tensor(1.7750127, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.022602616, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 395\n",
+ "Discriminator Loss: tf.Tensor(1.4715923, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.55982333, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 396\n",
+ "Discriminator Loss: tf.Tensor(1.7418232, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.6438538, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 397\n",
+ "Discriminator Loss: tf.Tensor(1.8060024, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.3312708, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 398\n",
+ "Discriminator Loss: tf.Tensor(1.547357, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.027886601, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 399\n",
+ "Discriminator Loss: tf.Tensor(1.5995407, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.11952615, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 400\n",
+ "Discriminator Loss: tf.Tensor(1.7126441, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.68530655, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 401\n",
+ "Discriminator Loss: tf.Tensor(1.4613436, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.74126244, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 402\n",
+ "Discriminator Loss: tf.Tensor(0.9975284, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.2570068, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 403\n",
+ "Discriminator Loss: tf.Tensor(1.740836, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.59269685, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 404\n",
+ "Discriminator Loss: tf.Tensor(1.5293803, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.17431176, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 405\n",
+ "Discriminator Loss: tf.Tensor(1.5554674, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.7072801, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 406\n",
+ "Discriminator Loss: tf.Tensor(0.9520354, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.8370448, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 407\n",
+ "Discriminator Loss: tf.Tensor(1.0599506, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.0060718, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 408\n",
+ "Discriminator Loss: tf.Tensor(3.1233718, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-2.053126, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 409\n",
+ "Discriminator Loss: tf.Tensor(1.4599369, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.10518869, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 410\n",
+ "Discriminator Loss: tf.Tensor(1.1678175, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.5646395, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 411\n",
+ "Discriminator Loss: tf.Tensor(3.480022, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(3.4898689, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 412\n",
+ "Discriminator Loss: tf.Tensor(1.6001495, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.25030628, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 413\n",
+ "Discriminator Loss: tf.Tensor(1.3986216, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.088781, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 414\n",
+ "Discriminator Loss: tf.Tensor(1.0911018, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.35766494, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 415\n",
+ "Discriminator Loss: tf.Tensor(0.42323592, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.0928279, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 416\n",
+ "Discriminator Loss: tf.Tensor(0.44392663, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.5904717, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 417\n",
+ "Discriminator Loss: tf.Tensor(3.1294591, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(4.991242, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 418\n",
+ "Discriminator Loss: tf.Tensor(0.9108232, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.16062795, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 419\n",
+ "Discriminator Loss: tf.Tensor(0.33654055, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.706384, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 420\n",
+ "Discriminator Loss: tf.Tensor(0.3677889, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.7336912, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 421\n",
+ "Discriminator Loss: tf.Tensor(0.88901925, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.3966575, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 422\n",
+ "Discriminator Loss: tf.Tensor(1.317418, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.30469397, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 423\n",
+ "Discriminator Loss: tf.Tensor(1.2431276, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.7228918, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 424\n",
+ "Discriminator Loss: tf.Tensor(1.1340289, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.12500386, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 425\n",
+ "Discriminator Loss: tf.Tensor(0.5597658, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.702184, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 426\n",
+ "Discriminator Loss: tf.Tensor(0.2858421, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(3.291833, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 427\n",
+ "Discriminator Loss: tf.Tensor(0.44741276, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.1348188, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 428\n",
+ "Discriminator Loss: tf.Tensor(2.1411607, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.6535445, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 429\n",
+ "Discriminator Loss: tf.Tensor(13.207023, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.0027163, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 430\n",
+ "Discriminator Loss: tf.Tensor(6.845257, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.48431894, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 431\n",
+ "Discriminator Loss: tf.Tensor(4.116643, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.14983885, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 432\n",
+ "Discriminator Loss: tf.Tensor(3.9632387, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.2987598, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 433\n",
+ "Discriminator Loss: tf.Tensor(2.2917595, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.07703137, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 434\n",
+ "Discriminator Loss: tf.Tensor(2.005261, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.032742184, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 435\n",
+ "Discriminator Loss: tf.Tensor(1.8801837, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.06626567, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 436\n",
+ "Discriminator Loss: tf.Tensor(1.9521819, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.24520935, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 437\n",
+ "Discriminator Loss: tf.Tensor(1.8514624, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.06950506, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 438\n",
+ "Discriminator Loss: tf.Tensor(1.888887, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.45754543, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 439\n",
+ "Discriminator Loss: tf.Tensor(1.83959, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.13602614, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 440\n",
+ "Discriminator Loss: tf.Tensor(1.9473403, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.63407344, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 441\n",
+ "Discriminator Loss: tf.Tensor(1.8875006, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.047482196, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 442\n",
+ "Discriminator Loss: tf.Tensor(1.7220399, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.34110248, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 443\n",
+ "Discriminator Loss: tf.Tensor(1.7156954, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.11492766, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 444\n",
+ "Discriminator Loss: tf.Tensor(2.5350294, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.7406203, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 445\n",
+ "Discriminator Loss: tf.Tensor(1.9750909, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.8466706, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 446\n",
+ "Discriminator Loss: tf.Tensor(1.5629162, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.15233041, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 447\n",
+ "Discriminator Loss: tf.Tensor(1.9792178, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.79117364, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 448\n",
+ "Discriminator Loss: tf.Tensor(2.041584, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.5652197, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 449\n",
+ "Discriminator Loss: tf.Tensor(1.9472461, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.028759962, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 450\n",
+ "Discriminator Loss: tf.Tensor(1.7152752, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.29258797, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 451\n",
+ "Discriminator Loss: tf.Tensor(1.5529355, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.7039836, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 452\n",
+ "Discriminator Loss: tf.Tensor(2.0895379, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.2127615, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 453\n",
+ "Discriminator Loss: tf.Tensor(1.9445796, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.48958218, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 454\n",
+ "Discriminator Loss: tf.Tensor(1.8003577, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.4329182, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 455\n",
+ "Discriminator Loss: tf.Tensor(1.5992112, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.37329754, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 456\n",
+ "Discriminator Loss: tf.Tensor(1.4735597, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.3544458, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 457\n",
+ "Discriminator Loss: tf.Tensor(1.7507029, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.4481391, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 458\n",
+ "Discriminator Loss: tf.Tensor(1.5603374, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.6012399, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 459\n",
+ "Discriminator Loss: tf.Tensor(1.1480737, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.8445676, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 460\n",
+ "Discriminator Loss: tf.Tensor(1.0601555, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.052738, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 461\n",
+ "Discriminator Loss: tf.Tensor(2.1042583, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-1.0795112, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 462\n",
+ "Discriminator Loss: tf.Tensor(1.7622392, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.6074464, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 463\n",
+ "Discriminator Loss: tf.Tensor(1.5595474, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.6691753, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 464\n",
+ "Discriminator Loss: tf.Tensor(1.7695571, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.43069133, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 465\n",
+ "Discriminator Loss: tf.Tensor(1.3588876, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.11502984, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 466\n",
+ "Discriminator Loss: tf.Tensor(0.925915, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.7527404, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 467\n",
+ "Discriminator Loss: tf.Tensor(2.6005695, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.9802234, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 468\n",
+ "Discriminator Loss: tf.Tensor(3.6243505, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-2.538711, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 469\n",
+ "Discriminator Loss: tf.Tensor(1.7777929, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.15744698, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 470\n",
+ "Discriminator Loss: tf.Tensor(1.2645599, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.46050072, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 471\n",
+ "Discriminator Loss: tf.Tensor(0.87707853, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.4650234, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 472\n",
+ "Discriminator Loss: tf.Tensor(2.204407, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-1.1895062, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 473\n",
+ "Discriminator Loss: tf.Tensor(1.5151018, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.078088276, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 474\n",
+ "Discriminator Loss: tf.Tensor(1.002789, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.7659935, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 475\n",
+ "Discriminator Loss: tf.Tensor(0.9229729, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.091863565, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 476\n",
+ "Discriminator Loss: tf.Tensor(0.066984266, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.088206, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 477\n",
+ "Discriminator Loss: tf.Tensor(0.04933251, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.6029606, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 478\n",
+ "Discriminator Loss: tf.Tensor(4.4582133, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.61457133, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 479\n",
+ "Discriminator Loss: tf.Tensor(69.63564, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.3955113, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 480\n",
+ "Discriminator Loss: tf.Tensor(7.080516, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.65663177, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 481\n",
+ "Discriminator Loss: tf.Tensor(24.034878, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.09621737, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 482\n",
+ "Discriminator Loss: tf.Tensor(4.1388845, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.5871443, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 483\n",
+ "Discriminator Loss: tf.Tensor(2.8102875, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.41275427, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 484\n",
+ "Discriminator Loss: tf.Tensor(2.2992268, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.31497326, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 485\n",
+ "Discriminator Loss: tf.Tensor(2.0641906, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.25437596, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 486\n",
+ "Discriminator Loss: tf.Tensor(1.9975601, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.1675088, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 487\n",
+ "Discriminator Loss: tf.Tensor(1.9219538, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.17375189, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 488\n",
+ "Discriminator Loss: tf.Tensor(1.9165527, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.077422, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 489\n",
+ "Discriminator Loss: tf.Tensor(1.8657442, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.093706705, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 490\n",
+ "Discriminator Loss: tf.Tensor(1.8048459, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.09931167, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 491\n",
+ "Discriminator Loss: tf.Tensor(1.7887012, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.23135932, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 492\n",
+ "Discriminator Loss: tf.Tensor(2.0320523, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.19426815, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 493\n",
+ "Discriminator Loss: tf.Tensor(1.7983103, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.27581677, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 494\n",
+ "Discriminator Loss: tf.Tensor(1.7861187, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.26659337, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 495\n",
+ "Discriminator Loss: tf.Tensor(1.3816537, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.10770184, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 496\n",
+ "Discriminator Loss: tf.Tensor(1.9627707, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.76240253, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 497\n",
+ "Discriminator Loss: tf.Tensor(1.6123364, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.30968425, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 498\n",
+ "Discriminator Loss: tf.Tensor(1.7164557, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.3256257, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 499\n",
+ "Discriminator Loss: tf.Tensor(1.667443, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.97528785, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 500\n",
+ "Discriminator Loss: tf.Tensor(1.5590842, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.066393, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 501\n",
+ "Discriminator Loss: tf.Tensor(2.1320062, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.93758553, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 502\n",
+ "Discriminator Loss: tf.Tensor(1.8953156, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.7249374, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 503\n",
+ "Discriminator Loss: tf.Tensor(1.730488, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.48638204, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 504\n",
+ "Discriminator Loss: tf.Tensor(1.5462751, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.21089415, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 505\n",
+ "Discriminator Loss: tf.Tensor(1.3151393, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.3173902, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 506\n",
+ "Discriminator Loss: tf.Tensor(1.5723689, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.2796985, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 507\n",
+ "Discriminator Loss: tf.Tensor(2.0539653, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.9788719, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 508\n",
+ "Discriminator Loss: tf.Tensor(1.8054743, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.34221014, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 509\n",
+ "Discriminator Loss: tf.Tensor(1.6498015, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.2878503, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 510\n",
+ "Discriminator Loss: tf.Tensor(1.4103935, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.024260113, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 511\n",
+ "Discriminator Loss: tf.Tensor(1.1622975, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.66229737, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 512\n",
+ "Discriminator Loss: tf.Tensor(0.673783, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.5507614, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 513\n",
+ "Discriminator Loss: tf.Tensor(3.7106285, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(4.125832, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 514\n",
+ "Discriminator Loss: tf.Tensor(1.6718186, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.63523364, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 515\n",
+ "Discriminator Loss: tf.Tensor(0.9266357, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.37013134, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 516\n",
+ "Discriminator Loss: tf.Tensor(1.449139, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.2520175, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 517\n",
+ "Discriminator Loss: tf.Tensor(1.4624299, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.18966876, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 518\n",
+ "Discriminator Loss: tf.Tensor(1.0654559, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.09861851, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 519\n",
+ "Discriminator Loss: tf.Tensor(3.07654, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(3.0602372, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 520\n",
+ "Discriminator Loss: tf.Tensor(1.1001145, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.14325632, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 521\n",
+ "Discriminator Loss: tf.Tensor(0.8938834, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.14311515, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 522\n",
+ "Discriminator Loss: tf.Tensor(0.87253946, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.0837946, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 523\n",
+ "Discriminator Loss: tf.Tensor(1.315111, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.30163106, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 524\n",
+ "Discriminator Loss: tf.Tensor(0.60361236, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.1053135, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 525\n",
+ "Discriminator Loss: tf.Tensor(0.7178596, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.29565427, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 526\n",
+ "Discriminator Loss: tf.Tensor(2.1960015, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(3.6231053, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 527\n",
+ "Discriminator Loss: tf.Tensor(1.121269, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.11047363, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 528\n",
+ "Discriminator Loss: tf.Tensor(0.7593657, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.5855068, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 529\n",
+ "Discriminator Loss: tf.Tensor(0.29460067, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.97177505, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 530\n",
+ "Discriminator Loss: tf.Tensor(1.2239544, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.942071, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 531\n",
+ "Discriminator Loss: tf.Tensor(1.2302394, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.22238822, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 532\n",
+ "Discriminator Loss: tf.Tensor(0.06660357, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.2656997, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 533\n",
+ "Discriminator Loss: tf.Tensor(0.16192186, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.4283913, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 534\n",
+ "Discriminator Loss: tf.Tensor(0.1843494, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.9996276, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 535\n",
+ "Discriminator Loss: tf.Tensor(0.09785572, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.9368898, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 536\n",
+ "Discriminator Loss: tf.Tensor(0.5110882, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(5.0046067, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 537\n",
+ "Discriminator Loss: tf.Tensor(7.367251, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.6560007, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 538\n",
+ "Discriminator Loss: tf.Tensor(61.209366, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.14315794, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 539\n",
+ "Discriminator Loss: tf.Tensor(22.95015, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.296083, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 540\n",
+ "Discriminator Loss: tf.Tensor(26.63163, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.0015300022, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 541\n",
+ "Discriminator Loss: tf.Tensor(66.55125, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.16186619, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 542\n",
+ "Discriminator Loss: tf.Tensor(5.463998, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.16552703, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 543\n",
+ "Discriminator Loss: tf.Tensor(7.788894, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.028416276, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 544\n",
+ "Discriminator Loss: tf.Tensor(3.9213004, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.12937765, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 545\n",
+ "Discriminator Loss: tf.Tensor(2.3760042, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.13735884, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 546\n",
+ "Discriminator Loss: tf.Tensor(2.241128, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.12920044, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 547\n",
+ "Discriminator Loss: tf.Tensor(2.1670923, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.1379311, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 548\n",
+ "Discriminator Loss: tf.Tensor(2.111783, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.15525763, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 549\n",
+ "Discriminator Loss: tf.Tensor(2.0754313, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.17170632, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 550\n",
+ "Discriminator Loss: tf.Tensor(2.0751126, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.16730689, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 551\n",
+ "Discriminator Loss: tf.Tensor(1.9786186, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.25193462, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 552\n",
+ "Discriminator Loss: tf.Tensor(2.0142539, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.2433998, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 553\n",
+ "Discriminator Loss: tf.Tensor(1.9533153, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.28387675, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 554\n",
+ "Discriminator Loss: tf.Tensor(1.9531583, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.28547814, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 555\n",
+ "Discriminator Loss: tf.Tensor(1.9175388, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.3122305, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 556\n",
+ "Discriminator Loss: tf.Tensor(1.898207, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.33391514, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 557\n",
+ "Discriminator Loss: tf.Tensor(1.8520141, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.35197774, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 558\n",
+ "Discriminator Loss: tf.Tensor(1.8290255, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.416896, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 559\n",
+ "Discriminator Loss: tf.Tensor(1.6498581, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.5621682, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 560\n",
+ "Discriminator Loss: tf.Tensor(1.7315706, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.6017416, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 561\n",
+ "Discriminator Loss: tf.Tensor(1.5333804, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.8972652, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 562\n",
+ "Discriminator Loss: tf.Tensor(1.6385754, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.5384801, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 563\n",
+ "Discriminator Loss: tf.Tensor(1.624943, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.8326018, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 564\n",
+ "Discriminator Loss: tf.Tensor(1.4143097, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.80057496, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 565\n",
+ "Discriminator Loss: tf.Tensor(1.4664416, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.6269353, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 566\n",
+ "Discriminator Loss: tf.Tensor(1.651272, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.1361033, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 567\n",
+ "Discriminator Loss: tf.Tensor(1.7581604, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.24746646, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 568\n",
+ "Discriminator Loss: tf.Tensor(1.7107567, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.13372941, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 569\n",
+ "Discriminator Loss: tf.Tensor(1.5307032, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.26077327, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 570\n",
+ "Discriminator Loss: tf.Tensor(1.3898026, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.82635087, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 571\n",
+ "Discriminator Loss: tf.Tensor(1.5400405, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.6395818, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 572\n",
+ "Discriminator Loss: tf.Tensor(1.9339598, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.7689881, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 573\n",
+ "Discriminator Loss: tf.Tensor(1.6695246, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.42945328, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 574\n",
+ "Discriminator Loss: tf.Tensor(1.5505382, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.23224437, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 575\n",
+ "Discriminator Loss: tf.Tensor(1.322212, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.28336704, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 576\n",
+ "Discriminator Loss: tf.Tensor(0.9764975, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.1518143, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 577\n",
+ "Discriminator Loss: tf.Tensor(1.4066082, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.38965857, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 578\n",
+ "Discriminator Loss: tf.Tensor(1.0694113, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.2589718, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 579\n",
+ "Discriminator Loss: tf.Tensor(0.6683875, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.7078636, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 580\n",
+ "Discriminator Loss: tf.Tensor(2.6853032, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(3.0473106, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 581\n",
+ "Discriminator Loss: tf.Tensor(1.9756633, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.9690562, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 582\n",
+ "Discriminator Loss: tf.Tensor(1.7283609, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.21887684, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 583\n",
+ "Discriminator Loss: tf.Tensor(1.6752332, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.20465297, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 584\n",
+ "Discriminator Loss: tf.Tensor(1.5909277, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.12093107, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 585\n",
+ "Discriminator Loss: tf.Tensor(1.6011537, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.05025364, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 586\n",
+ "Discriminator Loss: tf.Tensor(0.83573836, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.7471698, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 587\n",
+ "Discriminator Loss: tf.Tensor(0.64771336, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.4150476, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 588\n",
+ "Discriminator Loss: tf.Tensor(1.9100729, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.904499, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 589\n",
+ "Discriminator Loss: tf.Tensor(1.0028591, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.36317262, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 590\n",
+ "Discriminator Loss: tf.Tensor(1.762061, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(3.5008194, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 591\n",
+ "Discriminator Loss: tf.Tensor(0.67839456, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.32495204, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 592\n",
+ "Discriminator Loss: tf.Tensor(0.5757965, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.3408136, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 593\n",
+ "Discriminator Loss: tf.Tensor(0.7344809, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.29627517, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 594\n",
+ "Discriminator Loss: tf.Tensor(1.4459127, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.966219, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 595\n",
+ "Discriminator Loss: tf.Tensor(0.206334, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.0469923, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 596\n",
+ "Discriminator Loss: tf.Tensor(0.6727742, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.4748576, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 597\n",
+ "Discriminator Loss: tf.Tensor(0.21583647, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.6191502, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 598\n",
+ "Discriminator Loss: tf.Tensor(0.3346519, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.9454622, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 599\n",
+ "Discriminator Loss: tf.Tensor(0.08987085, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(3.2267876, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 600\n",
+ "Discriminator Loss: tf.Tensor(17.49282, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.0664945, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 601\n",
+ "Discriminator Loss: tf.Tensor(13.950509, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.68985957, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 602\n",
+ "Discriminator Loss: tf.Tensor(11.0033, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.0746771, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 603\n",
+ "Discriminator Loss: tf.Tensor(15.006248, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.5329245, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 604\n",
+ "Discriminator Loss: tf.Tensor(9.518813, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.37384394, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 605\n",
+ "Discriminator Loss: tf.Tensor(8.420337, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.4265181, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 606\n",
+ "Discriminator Loss: tf.Tensor(7.67394, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.28862703, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 607\n",
+ "Discriminator Loss: tf.Tensor(7.0900927, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.8626916, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 608\n",
+ "Discriminator Loss: tf.Tensor(6.4744577, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.20015366, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 609\n",
+ "Discriminator Loss: tf.Tensor(2.788712, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.28016582, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 610\n",
+ "Discriminator Loss: tf.Tensor(2.0763037, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.11391283, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 611\n",
+ "Discriminator Loss: tf.Tensor(2.0025604, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.15270938, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 612\n",
+ "Discriminator Loss: tf.Tensor(1.9398586, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.197577, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 613\n",
+ "Discriminator Loss: tf.Tensor(2.0124536, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.2551442, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 614\n",
+ "Discriminator Loss: tf.Tensor(1.9228024, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.28760496, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 615\n",
+ "Discriminator Loss: tf.Tensor(1.9978379, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.35796568, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 616\n",
+ "Discriminator Loss: tf.Tensor(2.0259807, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.30797407, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 617\n",
+ "Discriminator Loss: tf.Tensor(1.9585268, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.34156215, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 618\n",
+ "Discriminator Loss: tf.Tensor(1.9689476, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.26591942, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 619\n",
+ "Discriminator Loss: tf.Tensor(1.863015, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.2322855, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 620\n",
+ "Discriminator Loss: tf.Tensor(1.900525, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.2906898, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 621\n",
+ "Discriminator Loss: tf.Tensor(1.9382516, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.28925383, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 622\n",
+ "Discriminator Loss: tf.Tensor(1.8186553, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.3223811, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 623\n",
+ "Discriminator Loss: tf.Tensor(1.7956846, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.40955576, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 624\n",
+ "Discriminator Loss: tf.Tensor(1.8497586, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.5089851, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 625\n",
+ "Discriminator Loss: tf.Tensor(1.7656658, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.48165908, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 626\n",
+ "Discriminator Loss: tf.Tensor(1.6902955, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.6256874, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 627\n",
+ "Discriminator Loss: tf.Tensor(1.6890427, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.66990894, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 628\n",
+ "Discriminator Loss: tf.Tensor(1.7165209, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.9747243, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 629\n",
+ "Discriminator Loss: tf.Tensor(1.7117764, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.13044633, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 630\n",
+ "Discriminator Loss: tf.Tensor(1.8092531, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.58593154, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 631\n",
+ "Discriminator Loss: tf.Tensor(1.6463563, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.5730615, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 632\n",
+ "Discriminator Loss: tf.Tensor(1.5838779, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.1972929, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 633\n",
+ "Discriminator Loss: tf.Tensor(2.0370877, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.54964846, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 634\n",
+ "Discriminator Loss: tf.Tensor(1.8860812, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.29926297, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 635\n",
+ "Discriminator Loss: tf.Tensor(1.7348589, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.12410537, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 636\n",
+ "Discriminator Loss: tf.Tensor(1.493042, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.13410266, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 637\n",
+ "Discriminator Loss: tf.Tensor(1.6207546, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.19355865, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 638\n",
+ "Discriminator Loss: tf.Tensor(1.4131167, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.9557848, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 639\n",
+ "Discriminator Loss: tf.Tensor(1.4826345, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.07662856, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 640\n",
+ "Discriminator Loss: tf.Tensor(2.784882, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.5291, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 641\n",
+ "Discriminator Loss: tf.Tensor(2.011488, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.9652591, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 642\n",
+ "Discriminator Loss: tf.Tensor(1.8613093, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.51612335, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 643\n",
+ "Discriminator Loss: tf.Tensor(1.7643259, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.3754221, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 644\n",
+ "Discriminator Loss: tf.Tensor(1.6909884, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.35173532, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 645\n",
+ "Discriminator Loss: tf.Tensor(1.4862416, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.01734502, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 646\n",
+ "Discriminator Loss: tf.Tensor(2.6182902, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-1.5597252, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 647\n",
+ "Discriminator Loss: tf.Tensor(1.5864869, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.99757594, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 648\n",
+ "Discriminator Loss: tf.Tensor(1.5894539, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.70260566, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 649\n",
+ "Discriminator Loss: tf.Tensor(2.3054714, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.3012364, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 650\n",
+ "Discriminator Loss: tf.Tensor(1.8178949, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.17555702, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 651\n",
+ "Discriminator Loss: tf.Tensor(1.7467525, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.18846655, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 652\n",
+ "Discriminator Loss: tf.Tensor(1.7093912, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.18304856, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 653\n",
+ "Discriminator Loss: tf.Tensor(1.5747755, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.043216243, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 654\n",
+ "Discriminator Loss: tf.Tensor(1.3401998, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.09782225, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 655\n",
+ "Discriminator Loss: tf.Tensor(0.999798, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.7704832, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 656\n",
+ "Discriminator Loss: tf.Tensor(2.3926263, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-1.3784868, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 657\n",
+ "Discriminator Loss: tf.Tensor(1.5271262, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.332585, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 658\n",
+ "Discriminator Loss: tf.Tensor(0.90584713, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.6068575, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 659\n",
+ "Discriminator Loss: tf.Tensor(0.6884091, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.8544693, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 660\n",
+ "Discriminator Loss: tf.Tensor(0.91904396, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.08380144, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 661\n",
+ "Discriminator Loss: tf.Tensor(0.33498815, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.7024262, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 662\n",
+ "Discriminator Loss: tf.Tensor(0.02342962, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.3533175, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 663\n",
+ "Discriminator Loss: tf.Tensor(0.5299692, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(3.9619777, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 664\n",
+ "Discriminator Loss: tf.Tensor(1.405124, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.37198803, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 665\n",
+ "Discriminator Loss: tf.Tensor(1.1553727, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.204847, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 666\n",
+ "Discriminator Loss: tf.Tensor(0.6764974, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.46208668, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 667\n",
+ "Discriminator Loss: tf.Tensor(29.797445, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(13.68028, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 668\n",
+ "Discriminator Loss: tf.Tensor(1.2168472, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.20354585, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 669\n",
+ "Discriminator Loss: tf.Tensor(0.71335447, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.31342146, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 670\n",
+ "Discriminator Loss: tf.Tensor(0.65398157, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.3830961, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 671\n",
+ "Discriminator Loss: tf.Tensor(1.36865, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.35550573, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 672\n",
+ "Discriminator Loss: tf.Tensor(0.57296246, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.4444932, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 673\n",
+ "Discriminator Loss: tf.Tensor(1.3657876, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.5230005, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 674\n",
+ "Discriminator Loss: tf.Tensor(1.5989656, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.59111696, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 675\n",
+ "Discriminator Loss: tf.Tensor(0.6313311, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.7833049, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 676\n",
+ "Discriminator Loss: tf.Tensor(0.80297697, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.7874279, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 677\n",
+ "Discriminator Loss: tf.Tensor(2.1815295, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-1.1708113, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 678\n",
+ "Discriminator Loss: tf.Tensor(0.69872195, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.5042276, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 679\n",
+ "Discriminator Loss: tf.Tensor(1.3370535, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.27284, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 680\n",
+ "Discriminator Loss: tf.Tensor(0.8175613, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.18965434, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 681\n",
+ "Discriminator Loss: tf.Tensor(0.9187938, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.3675305, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 682\n",
+ "Discriminator Loss: tf.Tensor(0.74858993, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.25914052, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 683\n",
+ "Discriminator Loss: tf.Tensor(1.2916371, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.2625148, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 684\n",
+ "Discriminator Loss: tf.Tensor(1.1788378, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.17342092, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 685\n",
+ "Discriminator Loss: tf.Tensor(0.75075626, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.7475387, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 686\n",
+ "Discriminator Loss: tf.Tensor(0.31820008, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.7720879, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 687\n",
+ "Discriminator Loss: tf.Tensor(0.09577707, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.854641, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 688\n",
+ "Discriminator Loss: tf.Tensor(0.010928236, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.8569555, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 689\n",
+ "Discriminator Loss: tf.Tensor(3.5985796, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.68459964, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 690\n",
+ "Discriminator Loss: tf.Tensor(175.94527, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(3.1295013, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 691\n",
+ "Discriminator Loss: tf.Tensor(8.464585, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.58590466, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 692\n",
+ "Discriminator Loss: tf.Tensor(3.8386958, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.38280377, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 693\n",
+ "Discriminator Loss: tf.Tensor(2.7443137, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.4618316, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 694\n",
+ "Discriminator Loss: tf.Tensor(2.484258, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.42157474, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 695\n",
+ "Discriminator Loss: tf.Tensor(2.3535783, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.40422297, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 696\n",
+ "Discriminator Loss: tf.Tensor(2.293036, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.40350708, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 697\n",
+ "Discriminator Loss: tf.Tensor(2.1601806, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.3904197, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 698\n",
+ "Discriminator Loss: tf.Tensor(2.1613524, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.4177042, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 699\n",
+ "Discriminator Loss: tf.Tensor(2.06987, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.38834587, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 700\n",
+ "Discriminator Loss: tf.Tensor(2.0258095, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.4000814, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 701\n",
+ "Discriminator Loss: tf.Tensor(2.0085104, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.3722383, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 702\n",
+ "Discriminator Loss: tf.Tensor(2.007666, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.40063414, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 703\n",
+ "Discriminator Loss: tf.Tensor(1.9559431, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.35464716, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 704\n",
+ "Discriminator Loss: tf.Tensor(1.9348432, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.39630675, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 705\n",
+ "Discriminator Loss: tf.Tensor(1.9094567, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.3093771, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 706\n",
+ "Discriminator Loss: tf.Tensor(1.9129223, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.3866873, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 707\n",
+ "Discriminator Loss: tf.Tensor(1.9158349, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.30822897, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 708\n",
+ "Discriminator Loss: tf.Tensor(1.8081467, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.3600104, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 709\n",
+ "Discriminator Loss: tf.Tensor(1.832025, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.2095751, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 710\n",
+ "Discriminator Loss: tf.Tensor(1.7995579, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.35788956, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 711\n",
+ "Discriminator Loss: tf.Tensor(1.8336935, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.18577315, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 712\n",
+ "Discriminator Loss: tf.Tensor(1.6727976, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.21142559, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 713\n",
+ "Discriminator Loss: tf.Tensor(1.6203551, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.06463495, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 714\n",
+ "Discriminator Loss: tf.Tensor(1.6138191, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.21173136, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 715\n",
+ "Discriminator Loss: tf.Tensor(1.6834676, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.041711558, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 716\n",
+ "Discriminator Loss: tf.Tensor(1.4928489, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.076251626, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 717\n",
+ "Discriminator Loss: tf.Tensor(1.9477158, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.070722766, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 718\n",
+ "Discriminator Loss: tf.Tensor(1.4548466, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.13656855, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 719\n",
+ "Discriminator Loss: tf.Tensor(2.0248597, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.8141923, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 720\n",
+ "Discriminator Loss: tf.Tensor(1.921298, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.70119834, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 721\n",
+ "Discriminator Loss: tf.Tensor(1.7417488, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.22487415, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 722\n",
+ "Discriminator Loss: tf.Tensor(1.3160002, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.2868069, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 723\n",
+ "Discriminator Loss: tf.Tensor(1.3127533, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.9301688, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 724\n",
+ "Discriminator Loss: tf.Tensor(1.6011579, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.5408134, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 725\n",
+ "Discriminator Loss: tf.Tensor(1.6819264, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.8277464, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 726\n",
+ "Discriminator Loss: tf.Tensor(1.3655759, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.5905564, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 727\n",
+ "Discriminator Loss: tf.Tensor(1.4040315, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.4295729, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 728\n",
+ "Discriminator Loss: tf.Tensor(1.5708054, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.4446433, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 729\n",
+ "Discriminator Loss: tf.Tensor(1.4018958, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.33838335, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 730\n",
+ "Discriminator Loss: tf.Tensor(1.5827432, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.26506773, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 731\n",
+ "Discriminator Loss: tf.Tensor(1.0419576, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.34347975, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 732\n",
+ "Discriminator Loss: tf.Tensor(1.9662635, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.126769, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 733\n",
+ "Discriminator Loss: tf.Tensor(2.1046114, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-1.0944788, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 734\n",
+ "Discriminator Loss: tf.Tensor(1.7144234, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.2875477, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 735\n",
+ "Discriminator Loss: tf.Tensor(1.6175315, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.23044777, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 736\n",
+ "Discriminator Loss: tf.Tensor(1.3634562, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.016982561, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 737\n",
+ "Discriminator Loss: tf.Tensor(0.97023785, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.55160105, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 738\n",
+ "Discriminator Loss: tf.Tensor(0.923447, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.063546, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 739\n",
+ "Discriminator Loss: tf.Tensor(1.2643071, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.25650606, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 740\n",
+ "Discriminator Loss: tf.Tensor(1.4795308, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.2567196, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 741\n",
+ "Discriminator Loss: tf.Tensor(1.3366425, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.2772421, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 742\n",
+ "Discriminator Loss: tf.Tensor(0.8348844, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.28978002, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 743\n",
+ "Discriminator Loss: tf.Tensor(1.115946, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.5458553, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 744\n",
+ "Discriminator Loss: tf.Tensor(2.0869057, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-1.0812757, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 745\n",
+ "Discriminator Loss: tf.Tensor(0.46999145, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.8783898, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 746\n",
+ "Discriminator Loss: tf.Tensor(0.49669054, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.5543949, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 747\n",
+ "Discriminator Loss: tf.Tensor(2.8350945, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(4.985039, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 748\n",
+ "Discriminator Loss: tf.Tensor(0.8824389, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.12435365, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 749\n",
+ "Discriminator Loss: tf.Tensor(0.7790019, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.534857, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 750\n",
+ "Discriminator Loss: tf.Tensor(0.11543168, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.8226767, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 751\n",
+ "Discriminator Loss: tf.Tensor(0.22977035, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.0269617, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 752\n",
+ "Discriminator Loss: tf.Tensor(0.22337061, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.3029548, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 753\n",
+ "Discriminator Loss: tf.Tensor(2.6048927, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(4.216397, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 754\n",
+ "Discriminator Loss: tf.Tensor(1.4093575, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.40616536, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 755\n",
+ "Discriminator Loss: tf.Tensor(0.4199692, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.0074593, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 756\n",
+ "Discriminator Loss: tf.Tensor(0.8825031, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.16847356, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 757\n",
+ "Discriminator Loss: tf.Tensor(2.296977, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.1248186, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 758\n",
+ "Discriminator Loss: tf.Tensor(1.3070158, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.24709074, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 759\n",
+ "Discriminator Loss: tf.Tensor(1.0274597, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.0029152285, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 760\n",
+ "Discriminator Loss: tf.Tensor(1.2259345, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.2353611, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 761\n",
+ "Discriminator Loss: tf.Tensor(0.9673911, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.037628416, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 762\n",
+ "Discriminator Loss: tf.Tensor(0.7529506, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.3763618, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 763\n",
+ "Discriminator Loss: tf.Tensor(1.1560372, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.15360291, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 764\n",
+ "Discriminator Loss: tf.Tensor(1.0133554, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.5216957, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 765\n",
+ "Discriminator Loss: tf.Tensor(0.88794595, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.11415076, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 766\n",
+ "Discriminator Loss: tf.Tensor(1.075313, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.6756579, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 767\n",
+ "Discriminator Loss: tf.Tensor(0.7435053, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.25851664, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 768\n",
+ "Discriminator Loss: tf.Tensor(0.37679935, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.3018733, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 769\n",
+ "Discriminator Loss: tf.Tensor(0.3918006, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.67253566, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 770\n",
+ "Discriminator Loss: tf.Tensor(2.9476364, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(5.2558618, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 771\n",
+ "Discriminator Loss: tf.Tensor(1.0609168, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.05844604, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 772\n",
+ "Discriminator Loss: tf.Tensor(0.42600068, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.94908905, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 773\n",
+ "Discriminator Loss: tf.Tensor(0.67754745, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.32749894, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 774\n",
+ "Discriminator Loss: tf.Tensor(1.5037594, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.5469553, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 775\n",
+ "Discriminator Loss: tf.Tensor(0.91411734, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.08877451, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 776\n",
+ "Discriminator Loss: tf.Tensor(0.016185837, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.452743, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 777\n",
+ "Discriminator Loss: tf.Tensor(0.3522839, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.74087626, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 778\n",
+ "Discriminator Loss: tf.Tensor(0.97146446, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.7097332, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 779\n",
+ "Discriminator Loss: tf.Tensor(0.7711286, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.25562385, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 780\n",
+ "Discriminator Loss: tf.Tensor(0.2540941, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.9405118, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 781\n",
+ "Discriminator Loss: tf.Tensor(0.13176239, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.7594074, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 782\n",
+ "Discriminator Loss: tf.Tensor(0.14635693, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.841726, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 783\n",
+ "Discriminator Loss: tf.Tensor(8.714713, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.681563, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 784\n",
+ "Discriminator Loss: tf.Tensor(22.631397, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.3985935, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 785\n",
+ "Discriminator Loss: tf.Tensor(16.889786, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.95551324, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 786\n",
+ "Discriminator Loss: tf.Tensor(6.9044514, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.13644403, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 787\n",
+ "Discriminator Loss: tf.Tensor(4.883303, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.15540408, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 788\n",
+ "Discriminator Loss: tf.Tensor(3.6818538, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.04862674, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 789\n",
+ "Discriminator Loss: tf.Tensor(2.2156332, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.10930604, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 790\n",
+ "Discriminator Loss: tf.Tensor(2.1045926, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.07904818, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 791\n",
+ "Discriminator Loss: tf.Tensor(2.0737958, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.05126925, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 792\n",
+ "Discriminator Loss: tf.Tensor(2.0378776, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.024388403, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 793\n",
+ "Discriminator Loss: tf.Tensor(2.0373688, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.02166638, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 794\n",
+ "Discriminator Loss: tf.Tensor(2.03947, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.030221557, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 795\n",
+ "Discriminator Loss: tf.Tensor(2.0570774, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.043622915, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 796\n",
+ "Discriminator Loss: tf.Tensor(2.0020673, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.0007858115, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 797\n",
+ "Discriminator Loss: tf.Tensor(1.9758637, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.0042660334, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 798\n",
+ "Discriminator Loss: tf.Tensor(1.943759, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.0022224484, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 799\n",
+ "Discriminator Loss: tf.Tensor(1.9493016, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.051058393, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 800\n",
+ "Discriminator Loss: tf.Tensor(1.9329891, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.02298603, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 801\n",
+ "Discriminator Loss: tf.Tensor(1.8903604, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.07255408, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 802\n",
+ "Discriminator Loss: tf.Tensor(1.8514569, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.030397376, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 803\n",
+ "Discriminator Loss: tf.Tensor(1.8723449, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.1851462, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 804\n",
+ "Discriminator Loss: tf.Tensor(1.8093324, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.012084335, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 805\n",
+ "Discriminator Loss: tf.Tensor(1.9246742, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.42984995, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 806\n",
+ "Discriminator Loss: tf.Tensor(1.8029011, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.014450218, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 807\n",
+ "Discriminator Loss: tf.Tensor(1.9122303, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.5031291, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 808\n",
+ "Discriminator Loss: tf.Tensor(1.8536199, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.1389355, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 809\n",
+ "Discriminator Loss: tf.Tensor(2.0898912, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.17839229, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 810\n",
+ "Discriminator Loss: tf.Tensor(2.0359938, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.25507244, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 811\n",
+ "Discriminator Loss: tf.Tensor(1.8990928, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.029325277, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 812\n",
+ "Discriminator Loss: tf.Tensor(1.8120414, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.154015, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 813\n",
+ "Discriminator Loss: tf.Tensor(1.7404478, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.24326463, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 814\n",
+ "Discriminator Loss: tf.Tensor(1.8089335, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.67878467, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 815\n",
+ "Discriminator Loss: tf.Tensor(1.5536216, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.42383066, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 816\n",
+ "Discriminator Loss: tf.Tensor(2.38969, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.4241086, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 817\n",
+ "Discriminator Loss: tf.Tensor(2.0024, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.4372568, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 818\n",
+ "Discriminator Loss: tf.Tensor(1.7571148, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.28603706, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 819\n",
+ "Discriminator Loss: tf.Tensor(1.6708807, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.3164889, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 820\n",
+ "Discriminator Loss: tf.Tensor(1.690564, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.49050853, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 821\n",
+ "Discriminator Loss: tf.Tensor(1.6539319, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.2519314, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 822\n",
+ "Discriminator Loss: tf.Tensor(1.559571, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.49748632, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 823\n",
+ "Discriminator Loss: tf.Tensor(1.3234015, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.9171688, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 824\n",
+ "Discriminator Loss: tf.Tensor(1.7475975, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.2127866, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 825\n",
+ "Discriminator Loss: tf.Tensor(1.632342, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.18443112, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 826\n",
+ "Discriminator Loss: tf.Tensor(1.3338814, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.27986792, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 827\n",
+ "Discriminator Loss: tf.Tensor(1.3871756, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.055770468, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 828\n",
+ "Discriminator Loss: tf.Tensor(1.6267855, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.6034525, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 829\n",
+ "Discriminator Loss: tf.Tensor(1.4512727, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.72066337, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 830\n",
+ "Discriminator Loss: tf.Tensor(0.9785974, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.1323339, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 831\n",
+ "Discriminator Loss: tf.Tensor(1.5849227, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.5726973, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 832\n",
+ "Discriminator Loss: tf.Tensor(2.2472472, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.67451173, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 833\n",
+ "Discriminator Loss: tf.Tensor(1.5421014, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.67251825, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 834\n",
+ "Discriminator Loss: tf.Tensor(1.9356171, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.9101664, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 835\n",
+ "Discriminator Loss: tf.Tensor(1.7545408, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.20662634, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 836\n",
+ "Discriminator Loss: tf.Tensor(1.5485861, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.17329909, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 837\n",
+ "Discriminator Loss: tf.Tensor(1.3043767, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.023003897, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 838\n",
+ "Discriminator Loss: tf.Tensor(0.7921939, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.37108597, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 839\n",
+ "Discriminator Loss: tf.Tensor(1.1376138, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.506155, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 840\n",
+ "Discriminator Loss: tf.Tensor(2.9908044, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-1.9796573, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 841\n",
+ "Discriminator Loss: tf.Tensor(1.1082947, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.4851381, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 842\n",
+ "Discriminator Loss: tf.Tensor(0.9492959, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.07906708, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 843\n",
+ "Discriminator Loss: tf.Tensor(3.0175874, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(5.1255627, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 844\n",
+ "Discriminator Loss: tf.Tensor(1.0301535, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.08050083, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 845\n",
+ "Discriminator Loss: tf.Tensor(1.0254478, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.018812994, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 846\n",
+ "Discriminator Loss: tf.Tensor(0.85525393, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.2262839, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 847\n",
+ "Discriminator Loss: tf.Tensor(0.80135465, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.2021964, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 848\n",
+ "Discriminator Loss: tf.Tensor(0.18888812, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.1082722, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 849\n",
+ "Discriminator Loss: tf.Tensor(0.12569644, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.2046679, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 850\n",
+ "Discriminator Loss: tf.Tensor(0.72087365, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(3.4670455, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 851\n",
+ "Discriminator Loss: tf.Tensor(18.738949, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.7936395, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 852\n",
+ "Discriminator Loss: tf.Tensor(37.500782, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.4070593, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 853\n",
+ "Discriminator Loss: tf.Tensor(6.90933, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.16627063, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 854\n",
+ "Discriminator Loss: tf.Tensor(27.535364, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.2584356, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 855\n",
+ "Discriminator Loss: tf.Tensor(5.441602, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.27210894, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 856\n",
+ "Discriminator Loss: tf.Tensor(3.5918055, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.14872722, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 857\n",
+ "Discriminator Loss: tf.Tensor(2.426837, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.14500135, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 858\n",
+ "Discriminator Loss: tf.Tensor(2.143282, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.14497727, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 859\n",
+ "Discriminator Loss: tf.Tensor(2.0941987, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.14692907, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 860\n",
+ "Discriminator Loss: tf.Tensor(2.0794795, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.15215126, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 861\n",
+ "Discriminator Loss: tf.Tensor(2.0464656, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.14276579, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 862\n",
+ "Discriminator Loss: tf.Tensor(2.031792, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.14311396, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 863\n",
+ "Discriminator Loss: tf.Tensor(2.0306091, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.12336254, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 864\n",
+ "Discriminator Loss: tf.Tensor(2.0099907, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.13759173, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 865\n",
+ "Discriminator Loss: tf.Tensor(2.0255938, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.13494952, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 866\n",
+ "Discriminator Loss: tf.Tensor(1.9682958, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.1165852, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 867\n",
+ "Discriminator Loss: tf.Tensor(1.9741292, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.11811265, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 868\n",
+ "Discriminator Loss: tf.Tensor(1.95269, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.09385704, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 869\n",
+ "Discriminator Loss: tf.Tensor(1.9339767, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.08800745, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 870\n",
+ "Discriminator Loss: tf.Tensor(1.9690515, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.10088543, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 871\n",
+ "Discriminator Loss: tf.Tensor(1.9088018, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.041853238, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 872\n",
+ "Discriminator Loss: tf.Tensor(1.9037969, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.03585282, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 873\n",
+ "Discriminator Loss: tf.Tensor(1.8218498, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.018047566, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 874\n",
+ "Discriminator Loss: tf.Tensor(1.8206519, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.047104944, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 875\n",
+ "Discriminator Loss: tf.Tensor(1.9153948, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.08244055, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 876\n",
+ "Discriminator Loss: tf.Tensor(1.8116467, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.10097437, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 877\n",
+ "Discriminator Loss: tf.Tensor(1.8035295, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.103554435, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 878\n",
+ "Discriminator Loss: tf.Tensor(1.8712044, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.11630402, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 879\n",
+ "Discriminator Loss: tf.Tensor(1.7667413, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.13700491, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 880\n",
+ "Discriminator Loss: tf.Tensor(1.7588358, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.33225474, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 881\n",
+ "Discriminator Loss: tf.Tensor(1.8116308, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.12572198, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 882\n",
+ "Discriminator Loss: tf.Tensor(1.6926718, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.44739208, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 883\n",
+ "Discriminator Loss: tf.Tensor(2.2546034, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.35233054, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 884\n",
+ "Discriminator Loss: tf.Tensor(1.8818705, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.103947036, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 885\n",
+ "Discriminator Loss: tf.Tensor(1.8988097, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.038110554, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 886\n",
+ "Discriminator Loss: tf.Tensor(1.8484474, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.026603462, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 887\n",
+ "Discriminator Loss: tf.Tensor(1.761988, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.16194557, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 888\n",
+ "Discriminator Loss: tf.Tensor(1.5949556, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.4885219, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 889\n",
+ "Discriminator Loss: tf.Tensor(1.523607, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.9225785, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 890\n",
+ "Discriminator Loss: tf.Tensor(1.3965124, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.2522404, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 891\n",
+ "Discriminator Loss: tf.Tensor(1.6402212, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.08734, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 892\n",
+ "Discriminator Loss: tf.Tensor(1.8514884, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.5331947, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 893\n",
+ "Discriminator Loss: tf.Tensor(1.6757536, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.306085, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 894\n",
+ "Discriminator Loss: tf.Tensor(1.5405933, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.13250113, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 895\n",
+ "Discriminator Loss: tf.Tensor(1.074109, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.7847161, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 896\n",
+ "Discriminator Loss: tf.Tensor(0.97560835, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.91861385, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 897\n",
+ "Discriminator Loss: tf.Tensor(0.4277281, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.9255023, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 898\n",
+ "Discriminator Loss: tf.Tensor(5.6803207, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(5.7466083, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 899\n",
+ "Discriminator Loss: tf.Tensor(1.4115435, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.19721727, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 900\n",
+ "Discriminator Loss: tf.Tensor(1.2049032, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.1964074, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 901\n",
+ "Discriminator Loss: tf.Tensor(1.3522815, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.13188247, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 902\n",
+ "Discriminator Loss: tf.Tensor(1.4111031, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.2869298, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 903\n",
+ "Discriminator Loss: tf.Tensor(1.6656666, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.5296523, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 904\n",
+ "Discriminator Loss: tf.Tensor(1.347805, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.5635726, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 905\n",
+ "Discriminator Loss: tf.Tensor(1.3111603, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.16051094, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 906\n",
+ "Discriminator Loss: tf.Tensor(0.8894063, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.9513259, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 907\n",
+ "Discriminator Loss: tf.Tensor(2.1653435, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-1.1581669, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 908\n",
+ "Discriminator Loss: tf.Tensor(1.4785175, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.4321898, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 909\n",
+ "Discriminator Loss: tf.Tensor(1.4493155, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.020727472, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 910\n",
+ "Discriminator Loss: tf.Tensor(1.1051253, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.25154135, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 911\n",
+ "Discriminator Loss: tf.Tensor(0.6462147, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.1321896, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 912\n",
+ "Discriminator Loss: tf.Tensor(1.7908944, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.7861238, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 913\n",
+ "Discriminator Loss: tf.Tensor(0.8792887, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.96637195, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 914\n",
+ "Discriminator Loss: tf.Tensor(0.13581468, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.1010251, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 915\n",
+ "Discriminator Loss: tf.Tensor(2.8456783, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(3.7303236, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 916\n",
+ "Discriminator Loss: tf.Tensor(1.2999992, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.08835881, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 917\n",
+ "Discriminator Loss: tf.Tensor(0.9330017, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.13568832, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 918\n",
+ "Discriminator Loss: tf.Tensor(0.36084592, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.90230244, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 919\n",
+ "Discriminator Loss: tf.Tensor(0.35437155, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.81104976, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 920\n",
+ "Discriminator Loss: tf.Tensor(5.175324, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(9.187917, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 921\n",
+ "Discriminator Loss: tf.Tensor(0.926459, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.08649731, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 922\n",
+ "Discriminator Loss: tf.Tensor(0.96641415, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.050627667, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 923\n",
+ "Discriminator Loss: tf.Tensor(1.1013191, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.8532869, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 924\n",
+ "Discriminator Loss: tf.Tensor(1.103246, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.098980725, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 925\n",
+ "Discriminator Loss: tf.Tensor(1.7390623, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.9794043, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 926\n",
+ "Discriminator Loss: tf.Tensor(0.60466814, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.49889866, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 927\n",
+ "Discriminator Loss: tf.Tensor(0.5797282, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.44095063, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 928\n",
+ "Discriminator Loss: tf.Tensor(2.1914, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.257161, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 929\n",
+ "Discriminator Loss: tf.Tensor(0.7676927, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.23762064, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 930\n",
+ "Discriminator Loss: tf.Tensor(0.5912219, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.7601827, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 931\n",
+ "Discriminator Loss: tf.Tensor(0.5053284, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.55155605, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 932\n",
+ "Discriminator Loss: tf.Tensor(1.529279, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.7720575, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 933\n",
+ "Discriminator Loss: tf.Tensor(1.0206248, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.018851807, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 934\n",
+ "Discriminator Loss: tf.Tensor(0.91382575, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.5294889, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 935\n",
+ "Discriminator Loss: tf.Tensor(0.6441551, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.35861084, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 936\n",
+ "Discriminator Loss: tf.Tensor(0.6628933, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.4894735, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 937\n",
+ "Discriminator Loss: tf.Tensor(0.5113428, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.5486075, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 938\n",
+ "Discriminator Loss: tf.Tensor(0.22279428, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.178264, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 939\n",
+ "Discriminator Loss: tf.Tensor(0.60164464, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.582124, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 940\n",
+ "Discriminator Loss: tf.Tensor(2.7759428, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(4.025142, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 941\n",
+ "Discriminator Loss: tf.Tensor(0.8554962, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.27599838, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 942\n",
+ "Discriminator Loss: tf.Tensor(0.87735283, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.14070791, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 943\n",
+ "Discriminator Loss: tf.Tensor(2.7611575, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(3.9817417, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 944\n",
+ "Discriminator Loss: tf.Tensor(0.8197438, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.32008263, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 945\n",
+ "Discriminator Loss: tf.Tensor(0.29270786, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.7299506, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 946\n",
+ "Discriminator Loss: tf.Tensor(0.14770466, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.467476, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 947\n",
+ "Discriminator Loss: tf.Tensor(0.50838506, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.2712225, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 948\n",
+ "Discriminator Loss: tf.Tensor(1.0953598, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.014233743, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 949\n",
+ "Discriminator Loss: tf.Tensor(1.9536467, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.5147285, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 950\n",
+ "Discriminator Loss: tf.Tensor(0.7400331, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.28399608, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 951\n",
+ "Discriminator Loss: tf.Tensor(0.45243979, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.0077487, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 952\n",
+ "Discriminator Loss: tf.Tensor(0.58537793, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.4612631, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 953\n",
+ "Discriminator Loss: tf.Tensor(2.2509608, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(3.3404682, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 954\n",
+ "Discriminator Loss: tf.Tensor(0.8005486, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.21476315, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 955\n",
+ "Discriminator Loss: tf.Tensor(0.39730242, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.95112723, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 956\n",
+ "Discriminator Loss: tf.Tensor(0.6368113, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.3876045, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 957\n",
+ "Discriminator Loss: tf.Tensor(4.084935, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.9741488, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 958\n",
+ "Discriminator Loss: tf.Tensor(1.0671631, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.040013384, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 959\n",
+ "Discriminator Loss: tf.Tensor(0.7783467, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.4913766, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 960\n",
+ "Discriminator Loss: tf.Tensor(0.14692698, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.3015491, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 961\n",
+ "Discriminator Loss: tf.Tensor(1.5800595, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(3.5191295, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 962\n",
+ "Discriminator Loss: tf.Tensor(2.0520928, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-1.0423203, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 963\n",
+ "Discriminator Loss: tf.Tensor(0.88602054, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.48281994, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 964\n",
+ "Discriminator Loss: tf.Tensor(0.38431126, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.99026805, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 965\n",
+ "Discriminator Loss: tf.Tensor(0.19985645, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.6728988, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 966\n",
+ "Discriminator Loss: tf.Tensor(0.25159916, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.8008394, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 967\n",
+ "Discriminator Loss: tf.Tensor(1.1750335, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.10098954, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 968\n",
+ "Discriminator Loss: tf.Tensor(4.620863, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.7861555, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 969\n",
+ "Discriminator Loss: tf.Tensor(1.2552656, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.44940034, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 970\n",
+ "Discriminator Loss: tf.Tensor(0.71669173, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.45200095, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 971\n",
+ "Discriminator Loss: tf.Tensor(1.0912284, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.41807064, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 972\n",
+ "Discriminator Loss: tf.Tensor(3.7398503, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(3.9262269, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 973\n",
+ "Discriminator Loss: tf.Tensor(1.4500049, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.24378973, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 974\n",
+ "Discriminator Loss: tf.Tensor(0.9787658, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.21133615, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 975\n",
+ "Discriminator Loss: tf.Tensor(0.9943947, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.11429859, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 976\n",
+ "Discriminator Loss: tf.Tensor(1.6242435, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.8887486, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 977\n",
+ "Discriminator Loss: tf.Tensor(0.69299436, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.63840383, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 978\n",
+ "Discriminator Loss: tf.Tensor(0.31317925, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.0337996, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 979\n",
+ "Discriminator Loss: tf.Tensor(3.684356, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(4.706185, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 980\n",
+ "Discriminator Loss: tf.Tensor(0.6592964, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.39945355, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 981\n",
+ "Discriminator Loss: tf.Tensor(0.56434333, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.49665806, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 982\n",
+ "Discriminator Loss: tf.Tensor(2.6151428, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.3737288, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 983\n",
+ "Discriminator Loss: tf.Tensor(1.0575912, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.38366488, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 984\n",
+ "Discriminator Loss: tf.Tensor(0.88442314, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.1347745, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 985\n",
+ "Discriminator Loss: tf.Tensor(1.0122166, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.1900681, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 986\n",
+ "Discriminator Loss: tf.Tensor(1.2279499, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.22156195, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 987\n",
+ "Discriminator Loss: tf.Tensor(0.9610051, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.83112144, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 988\n",
+ "Discriminator Loss: tf.Tensor(0.245184, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.145058, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 989\n",
+ "Discriminator Loss: tf.Tensor(0.54346585, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.47354487, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 990\n",
+ "Discriminator Loss: tf.Tensor(2.2296114, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.5224457, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 991\n",
+ "Discriminator Loss: tf.Tensor(0.94463044, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.113449134, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 992\n",
+ "Discriminator Loss: tf.Tensor(0.5454517, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.8598008, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 993\n",
+ "Discriminator Loss: tf.Tensor(0.20738485, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.0185604, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 994\n",
+ "Discriminator Loss: tf.Tensor(1.8099065, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.7099478, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 995\n",
+ "Discriminator Loss: tf.Tensor(1.2453777, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.23662911, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 996\n",
+ "Discriminator Loss: tf.Tensor(0.90149826, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.0995954, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 997\n",
+ "Discriminator Loss: tf.Tensor(1.1561418, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.14901511, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 998\n",
+ "Discriminator Loss: tf.Tensor(0.91402173, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.2194426, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 999\n",
+ "Discriminator Loss: tf.Tensor(0.7480929, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.27265954, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 1000\n",
+ "Discriminator Loss: tf.Tensor(0.4350703, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.7225767, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 1001\n",
+ "Discriminator Loss: tf.Tensor(0.81236434, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.19897835, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 1002\n",
+ "Discriminator Loss: tf.Tensor(2.8288598, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.0296109, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 1003\n",
+ "Discriminator Loss: tf.Tensor(0.7743917, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.5445301, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 1004\n",
+ "Discriminator Loss: tf.Tensor(0.41122073, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.77054757, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 1005\n",
+ "Discriminator Loss: tf.Tensor(3.1625516, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(3.1596467, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 1006\n",
+ "Discriminator Loss: tf.Tensor(0.8633102, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.28138107, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 1007\n",
+ "Discriminator Loss: tf.Tensor(0.83498865, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.21156771, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 1008\n",
+ "Discriminator Loss: tf.Tensor(1.6448715, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.7587065, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 1009\n",
+ "Discriminator Loss: tf.Tensor(0.45987284, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.56122667, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 1010\n",
+ "Discriminator Loss: tf.Tensor(0.36133134, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.9699485, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 1011\n",
+ "Discriminator Loss: tf.Tensor(0.30419025, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.8237818, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 1012\n",
+ "Discriminator Loss: tf.Tensor(1.9557106, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.3673272, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 1013\n",
+ "Discriminator Loss: tf.Tensor(0.8040517, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.20728993, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 1014\n",
+ "Discriminator Loss: tf.Tensor(0.6281446, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.9979922, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 1015\n",
+ "Discriminator Loss: tf.Tensor(0.37365785, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.68995243, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 1016\n",
+ "Discriminator Loss: tf.Tensor(1.327941, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(3.3532279, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 1017\n",
+ "Discriminator Loss: tf.Tensor(0.77452207, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.23125996, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 1018\n",
+ "Discriminator Loss: tf.Tensor(0.21824841, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.460195, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 1019\n",
+ "Discriminator Loss: tf.Tensor(0.36754212, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.7693265, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 1020\n",
+ "Discriminator Loss: tf.Tensor(0.60509336, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.8151195, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 1021\n",
+ "Discriminator Loss: tf.Tensor(0.6313494, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.5566886, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 1022\n",
+ "Discriminator Loss: tf.Tensor(2.8919015, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(3.4149592, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 1023\n",
+ "Discriminator Loss: tf.Tensor(1.1050481, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.36429068, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 1024\n",
+ "Discriminator Loss: tf.Tensor(0.40094683, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.7788517, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 1025\n",
+ "Discriminator Loss: tf.Tensor(1.074495, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.3476702, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 1026\n",
+ "Discriminator Loss: tf.Tensor(0.7768026, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.23613192, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 1027\n",
+ "Discriminator Loss: tf.Tensor(1.1136943, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.4378139, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 1028\n",
+ "Discriminator Loss: tf.Tensor(0.75761616, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.26230255, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 1029\n",
+ "Discriminator Loss: tf.Tensor(0.7640021, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.4247307, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 1030\n",
+ "Discriminator Loss: tf.Tensor(0.6346193, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.41358557, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 1031\n",
+ "Discriminator Loss: tf.Tensor(2.5758398, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.1130788, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 1032\n",
+ "Discriminator Loss: tf.Tensor(1.0171275, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.18362091, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 1033\n",
+ "Discriminator Loss: tf.Tensor(0.66218734, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.96831083, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 1034\n",
+ "Discriminator Loss: tf.Tensor(0.4553696, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.58181614, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 1035\n",
+ "Discriminator Loss: tf.Tensor(1.6286719, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.7114407, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 1036\n",
+ "Discriminator Loss: tf.Tensor(0.8858113, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.12750174, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 1037\n",
+ "Discriminator Loss: tf.Tensor(0.61327356, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.0124367, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 1038\n",
+ "Discriminator Loss: tf.Tensor(0.29625005, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.8227295, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 1039\n",
+ "Discriminator Loss: tf.Tensor(0.65459776, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.3601398, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 1040\n",
+ "Discriminator Loss: tf.Tensor(1.3192059, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.31070122, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 1041\n",
+ "Discriminator Loss: tf.Tensor(0.82979345, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.4112234, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 1042\n",
+ "Discriminator Loss: tf.Tensor(0.23468533, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.7876509, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 1043\n",
+ "Discriminator Loss: tf.Tensor(1.2237737, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.4018097, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 1044\n",
+ "Discriminator Loss: tf.Tensor(0.058498103, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.2832416, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 1045\n",
+ "Discriminator Loss: tf.Tensor(0.42341346, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.6873285, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 1046\n",
+ "Discriminator Loss: tf.Tensor(9.095878, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(5.0756564, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 1047\n",
+ "Discriminator Loss: tf.Tensor(1.3644542, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.08487307, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 1048\n",
+ "Discriminator Loss: tf.Tensor(0.99948674, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.2402875, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 1049\n",
+ "Discriminator Loss: tf.Tensor(0.70609254, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.43567994, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 1050\n",
+ "Discriminator Loss: tf.Tensor(1.9558125, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.2760274, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 1051\n",
+ "Discriminator Loss: tf.Tensor(1.0011667, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.006853927, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 1052\n",
+ "Discriminator Loss: tf.Tensor(0.77639294, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.59821814, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 1053\n",
+ "Discriminator Loss: tf.Tensor(0.31327567, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.8399872, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 1054\n",
+ "Discriminator Loss: tf.Tensor(1.6014166, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.9052056, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 1055\n",
+ "Discriminator Loss: tf.Tensor(1.0543127, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.04534833, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 1056\n",
+ "Discriminator Loss: tf.Tensor(0.7492307, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.6693837, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 1057\n",
+ "Discriminator Loss: tf.Tensor(0.07397242, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.3302709, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 1058\n",
+ "Discriminator Loss: tf.Tensor(0.387914, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.2598937, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 1059\n",
+ "Discriminator Loss: tf.Tensor(0.5100534, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.54687935, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 1060\n",
+ "Discriminator Loss: tf.Tensor(3.7689133, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.9714668, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 1061\n",
+ "Discriminator Loss: tf.Tensor(1.4491957, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.10645059, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 1062\n",
+ "Discriminator Loss: tf.Tensor(1.3716221, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.13210683, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 1063\n",
+ "Discriminator Loss: tf.Tensor(1.1588092, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.056022506, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 1064\n",
+ "Discriminator Loss: tf.Tensor(0.68181515, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.45988464, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 1065\n",
+ "Discriminator Loss: tf.Tensor(2.3522573, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.2546582, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 1066\n",
+ "Discriminator Loss: tf.Tensor(0.7719488, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.27868903, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 1067\n",
+ "Discriminator Loss: tf.Tensor(0.8396506, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.3027279, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 1068\n",
+ "Discriminator Loss: tf.Tensor(1.7702408, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.9951, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 1069\n",
+ "Discriminator Loss: tf.Tensor(0.8256511, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.40009627, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 1070\n",
+ "Discriminator Loss: tf.Tensor(0.9944042, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.07722951, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 1071\n",
+ "Discriminator Loss: tf.Tensor(1.8299102, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.3856009, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 1072\n",
+ "Discriminator Loss: tf.Tensor(0.8501236, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.39773855, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 1073\n",
+ "Discriminator Loss: tf.Tensor(0.7212923, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.38160238, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 1074\n",
+ "Discriminator Loss: tf.Tensor(1.3812822, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.2514656, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 1075\n",
+ "Discriminator Loss: tf.Tensor(0.18228073, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.8519478, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 1076\n",
+ "Discriminator Loss: tf.Tensor(0.51498497, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.4393711, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 1077\n",
+ "Discriminator Loss: tf.Tensor(0.49913228, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.5916347, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 1078\n",
+ "Discriminator Loss: tf.Tensor(3.1800518, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.0930464, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 1079\n",
+ "Discriminator Loss: tf.Tensor(0.63097215, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.3852512, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 1080\n",
+ "Discriminator Loss: tf.Tensor(0.5202322, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.1079401, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 1081\n",
+ "Discriminator Loss: tf.Tensor(0.27188516, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.78127235, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 1082\n",
+ "Discriminator Loss: tf.Tensor(0.7318614, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.8595185, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 1083\n",
+ "Discriminator Loss: tf.Tensor(1.802947, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.7940336, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 1084\n",
+ "Discriminator Loss: tf.Tensor(0.3600842, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.2685407, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 1085\n",
+ "Discriminator Loss: tf.Tensor(1.206759, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.19762976, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 1086\n",
+ "Discriminator Loss: tf.Tensor(1.1071124, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.7910892, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 1087\n",
+ "Discriminator Loss: tf.Tensor(0.35415408, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.66879064, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 1088\n",
+ "Discriminator Loss: tf.Tensor(0.3710115, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.96431476, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 1089\n",
+ "Discriminator Loss: tf.Tensor(1.1870576, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(3.254508, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 1090\n",
+ "Discriminator Loss: tf.Tensor(0.37817696, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.6490278, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 1091\n",
+ "Discriminator Loss: tf.Tensor(2.023311, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.8509963, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 1092\n",
+ "Discriminator Loss: tf.Tensor(0.80075777, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.20523334, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 1093\n",
+ "Discriminator Loss: tf.Tensor(0.54438496, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.96266276, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 1094\n",
+ "Discriminator Loss: tf.Tensor(0.021192767, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.5175589, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 1095\n",
+ "Discriminator Loss: tf.Tensor(17.505909, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.29057652, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 1096\n",
+ "Discriminator Loss: tf.Tensor(65.96756, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.53979844, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 1097\n",
+ "Discriminator Loss: tf.Tensor(19.198303, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.7998236, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 1098\n",
+ "Discriminator Loss: tf.Tensor(10.870749, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.030157724, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 1099\n",
+ "Discriminator Loss: tf.Tensor(29.19877, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.1687457, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 1100\n",
+ "Discriminator Loss: tf.Tensor(3.392522, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.028125862, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 1101\n",
+ "Discriminator Loss: tf.Tensor(2.7424574, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.038226306, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 1102\n",
+ "Discriminator Loss: tf.Tensor(2.3143144, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.041344743, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 1103\n",
+ "Discriminator Loss: tf.Tensor(2.2338803, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.03823908, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 1104\n",
+ "Discriminator Loss: tf.Tensor(2.194982, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.037002053, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 1105\n",
+ "Discriminator Loss: tf.Tensor(2.1503162, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.043974053, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 1106\n",
+ "Discriminator Loss: tf.Tensor(2.1098452, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.041493885, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 1107\n",
+ "Discriminator Loss: tf.Tensor(2.0787766, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.037402168, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 1108\n",
+ "Discriminator Loss: tf.Tensor(2.0634146, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.031931896, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 1109\n",
+ "Discriminator Loss: tf.Tensor(2.0475023, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.031260036, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 1110\n",
+ "Discriminator Loss: tf.Tensor(2.0268438, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.029656047, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 1111\n",
+ "Discriminator Loss: tf.Tensor(2.0265677, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.041410983, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 1112\n",
+ "Discriminator Loss: tf.Tensor(2.0070305, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.032305833, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 1113\n",
+ "Discriminator Loss: tf.Tensor(1.9988966, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.033438645, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 1114\n",
+ "Discriminator Loss: tf.Tensor(1.987271, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.019637378, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 1115\n",
+ "Discriminator Loss: tf.Tensor(1.9733195, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.013988241, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 1116\n",
+ "Discriminator Loss: tf.Tensor(1.9540706, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.0011670599, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 1117\n",
+ "Discriminator Loss: tf.Tensor(1.9517174, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.008484469, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 1118\n",
+ "Discriminator Loss: tf.Tensor(1.9546202, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.021612676, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 1119\n",
+ "Discriminator Loss: tf.Tensor(1.9358176, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.0038013738, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 1120\n",
+ "Discriminator Loss: tf.Tensor(1.935164, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.0075228084, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 1121\n",
+ "Discriminator Loss: tf.Tensor(1.8852298, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.041232795, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 1122\n",
+ "Discriminator Loss: tf.Tensor(1.9044871, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.022144867, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 1123\n",
+ "Discriminator Loss: tf.Tensor(1.8614304, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.052400995, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 1124\n",
+ "Discriminator Loss: tf.Tensor(1.7984536, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.10977217, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 1125\n",
+ "Discriminator Loss: tf.Tensor(1.7379293, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.16220714, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 1126\n",
+ "Discriminator Loss: tf.Tensor(1.8459226, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.092589766, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 1127\n",
+ "Discriminator Loss: tf.Tensor(1.795375, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.26474637, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 1128\n",
+ "Discriminator Loss: tf.Tensor(1.8735613, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.07623164, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 1129\n",
+ "Discriminator Loss: tf.Tensor(1.7113644, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.16931932, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 1130\n",
+ "Discriminator Loss: tf.Tensor(1.6782024, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.30422223, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 1131\n",
+ "Discriminator Loss: tf.Tensor(1.7743945, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.45017895, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 1132\n",
+ "Discriminator Loss: tf.Tensor(1.7110242, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.14733164, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 1133\n",
+ "Discriminator Loss: tf.Tensor(1.7669448, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.4891937, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 1134\n",
+ "Discriminator Loss: tf.Tensor(2.33703, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.35924342, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 1135\n",
+ "Discriminator Loss: tf.Tensor(1.7543484, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.13001545, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 1136\n",
+ "Discriminator Loss: tf.Tensor(1.8359246, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.12270877, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 1137\n",
+ "Discriminator Loss: tf.Tensor(1.8905246, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.10089442, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 1138\n",
+ "Discriminator Loss: tf.Tensor(1.7933129, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.10744051, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 1139\n",
+ "Discriminator Loss: tf.Tensor(1.6783651, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.2699238, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 1140\n",
+ "Discriminator Loss: tf.Tensor(1.5653911, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.5702905, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 1141\n",
+ "Discriminator Loss: tf.Tensor(1.5076947, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.9831128, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 1142\n",
+ "Discriminator Loss: tf.Tensor(1.5190219, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.17651562, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 1143\n",
+ "Discriminator Loss: tf.Tensor(1.6517327, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.47601065, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 1144\n",
+ "Discriminator Loss: tf.Tensor(1.2031677, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.9617004, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 1145\n",
+ "Discriminator Loss: tf.Tensor(0.80447435, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.8222763, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 1146\n",
+ "Discriminator Loss: tf.Tensor(1.2164702, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.2884165, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 1147\n",
+ "Discriminator Loss: tf.Tensor(1.6166985, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.6126621, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 1148\n",
+ "Discriminator Loss: tf.Tensor(1.4602765, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.13923877, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 1149\n",
+ "Discriminator Loss: tf.Tensor(1.3617836, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.47577915, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 1150\n",
+ "Discriminator Loss: tf.Tensor(1.9903181, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.8997773, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 1151\n",
+ "Discriminator Loss: tf.Tensor(1.4755988, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.2468559, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 1152\n",
+ "Discriminator Loss: tf.Tensor(1.5353478, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.39423227, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 1153\n",
+ "Discriminator Loss: tf.Tensor(1.4679004, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.38876924, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 1154\n",
+ "Discriminator Loss: tf.Tensor(0.82881296, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.43875948, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 1155\n",
+ "Discriminator Loss: tf.Tensor(1.0285444, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.3961732, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 1156\n",
+ "Discriminator Loss: tf.Tensor(2.5169961, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.1680653, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 1157\n",
+ "Discriminator Loss: tf.Tensor(1.279645, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.086007714, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 1158\n",
+ "Discriminator Loss: tf.Tensor(1.474011, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.42374733, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 1159\n",
+ "Discriminator Loss: tf.Tensor(1.521338, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.3408058, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 1160\n",
+ "Discriminator Loss: tf.Tensor(0.74151736, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.39879736, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 1161\n",
+ "Discriminator Loss: tf.Tensor(1.1282524, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.04121215, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 1162\n",
+ "Discriminator Loss: tf.Tensor(2.4107018, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(3.9304638, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 1163\n",
+ "Discriminator Loss: tf.Tensor(0.73971736, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.43863603, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 1164\n",
+ "Discriminator Loss: tf.Tensor(1.2179397, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.19709378, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 1165\n",
+ "Discriminator Loss: tf.Tensor(1.4105966, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.6608673, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 1166\n",
+ "Discriminator Loss: tf.Tensor(0.87361175, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.14393437, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 1167\n",
+ "Discriminator Loss: tf.Tensor(0.5976096, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.8551734, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 1168\n",
+ "Discriminator Loss: tf.Tensor(1.0363413, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.011908482, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 1169\n",
+ "Discriminator Loss: tf.Tensor(3.5347466, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(4.017196, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 1170\n",
+ "Discriminator Loss: tf.Tensor(1.212498, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.27139482, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 1171\n",
+ "Discriminator Loss: tf.Tensor(0.6779171, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.36846074, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 1172\n",
+ "Discriminator Loss: tf.Tensor(0.71613884, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.5909114, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 1173\n",
+ "Discriminator Loss: tf.Tensor(2.1105573, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.3555994, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 1174\n",
+ "Discriminator Loss: tf.Tensor(0.970773, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.03592481, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 1175\n",
+ "Discriminator Loss: tf.Tensor(0.6966776, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.95826215, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 1176\n",
+ "Discriminator Loss: tf.Tensor(1.2590917, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.252977, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 1177\n",
+ "Discriminator Loss: tf.Tensor(0.9167858, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.1820647, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 1178\n",
+ "Discriminator Loss: tf.Tensor(0.60514975, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.39915752, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 1179\n",
+ "Discriminator Loss: tf.Tensor(0.52152973, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.969232, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 1180\n",
+ "Discriminator Loss: tf.Tensor(0.9791359, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.022975767, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 1181\n",
+ "Discriminator Loss: tf.Tensor(1.4967834, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.8974752, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 1182\n",
+ "Discriminator Loss: tf.Tensor(1.0326679, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.001787452, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 1183\n",
+ "Discriminator Loss: tf.Tensor(0.27329993, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.97713065, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 1184\n",
+ "Discriminator Loss: tf.Tensor(0.1511159, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.239256, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 1185\n",
+ "Discriminator Loss: tf.Tensor(53.136868, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.0756265, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 1186\n",
+ "Discriminator Loss: tf.Tensor(36.063465, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.021734148, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 1187\n",
+ "Discriminator Loss: tf.Tensor(13.393072, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.9986709, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 1188\n",
+ "Discriminator Loss: tf.Tensor(6.3602304, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.2514439, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 1189\n",
+ "Discriminator Loss: tf.Tensor(4.370262, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.28443632, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 1190\n",
+ "Discriminator Loss: tf.Tensor(2.408784, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.1918483, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 1191\n",
+ "Discriminator Loss: tf.Tensor(2.243486, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.1859649, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 1192\n",
+ "Discriminator Loss: tf.Tensor(2.30437, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.17898011, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 1193\n",
+ "Discriminator Loss: tf.Tensor(2.138893, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.1724031, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 1194\n",
+ "Discriminator Loss: tf.Tensor(2.1143982, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.17762373, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 1195\n",
+ "Discriminator Loss: tf.Tensor(2.084715, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.17001195, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 1196\n",
+ "Discriminator Loss: tf.Tensor(2.0742452, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.16811359, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 1197\n",
+ "Discriminator Loss: tf.Tensor(2.0532558, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.1547318, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 1198\n",
+ "Discriminator Loss: tf.Tensor(2.0476265, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.15649621, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 1199\n",
+ "Discriminator Loss: tf.Tensor(2.0374622, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.14728831, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 1200\n",
+ "Discriminator Loss: tf.Tensor(2.026952, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.14984532, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 1201\n",
+ "Discriminator Loss: tf.Tensor(2.0068302, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.11883828, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 1202\n",
+ "Discriminator Loss: tf.Tensor(1.9891367, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.1133717, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 1203\n",
+ "Discriminator Loss: tf.Tensor(1.9809935, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.10953298, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 1204\n",
+ "Discriminator Loss: tf.Tensor(1.9681714, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.092411645, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 1205\n",
+ "Discriminator Loss: tf.Tensor(1.995575, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.09722778, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 1206\n",
+ "Discriminator Loss: tf.Tensor(1.9743415, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.08606247, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 1207\n",
+ "Discriminator Loss: tf.Tensor(1.9586017, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.08486172, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 1208\n",
+ "Discriminator Loss: tf.Tensor(1.9918058, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.0664495, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 1209\n",
+ "Discriminator Loss: tf.Tensor(1.9419076, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.05633902, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 1210\n",
+ "Discriminator Loss: tf.Tensor(1.9280897, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.039125696, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 1211\n",
+ "Discriminator Loss: tf.Tensor(1.943214, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.020983549, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 1212\n",
+ "Discriminator Loss: tf.Tensor(1.9505931, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.054252494, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 1213\n",
+ "Discriminator Loss: tf.Tensor(1.8841842, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.050301958, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 1214\n",
+ "Discriminator Loss: tf.Tensor(2.0107434, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.077056795, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 1215\n",
+ "Discriminator Loss: tf.Tensor(1.9425845, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.044632256, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 1216\n",
+ "Discriminator Loss: tf.Tensor(1.8774031, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.019343784, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 1217\n",
+ "Discriminator Loss: tf.Tensor(1.883764, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.040679973, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 1218\n",
+ "Discriminator Loss: tf.Tensor(1.8369807, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.20214753, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 1219\n",
+ "Discriminator Loss: tf.Tensor(1.8387387, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.15587096, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 1220\n",
+ "Discriminator Loss: tf.Tensor(1.6944324, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.3198985, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 1221\n",
+ "Discriminator Loss: tf.Tensor(1.8391503, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.24730985, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 1222\n",
+ "Discriminator Loss: tf.Tensor(1.7417779, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.4775997, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 1223\n",
+ "Discriminator Loss: tf.Tensor(1.3176862, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.7997999, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 1224\n",
+ "Discriminator Loss: tf.Tensor(3.5205612, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.2064754, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 1225\n",
+ "Discriminator Loss: tf.Tensor(1.874011, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.19116302, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 1226\n",
+ "Discriminator Loss: tf.Tensor(1.7196008, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.009724966, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 1227\n",
+ "Discriminator Loss: tf.Tensor(1.7592477, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.037837196, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 1228\n",
+ "Discriminator Loss: tf.Tensor(1.8625436, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.14707662, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 1229\n",
+ "Discriminator Loss: tf.Tensor(1.8272573, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.14901885, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 1230\n",
+ "Discriminator Loss: tf.Tensor(1.8202654, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.15585433, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 1231\n",
+ "Discriminator Loss: tf.Tensor(1.7238362, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.08188913, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 1232\n",
+ "Discriminator Loss: tf.Tensor(1.5453644, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.21227376, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 1233\n",
+ "Discriminator Loss: tf.Tensor(1.4279056, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.08768847, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 1234\n",
+ "Discriminator Loss: tf.Tensor(1.2354785, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.0501947, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 1235\n",
+ "Discriminator Loss: tf.Tensor(1.4826412, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.38048863, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 1236\n",
+ "Discriminator Loss: tf.Tensor(1.7048306, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.653292, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 1237\n",
+ "Discriminator Loss: tf.Tensor(2.2112932, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.79969764, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 1238\n",
+ "Discriminator Loss: tf.Tensor(1.5447407, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.5501005, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 1239\n",
+ "Discriminator Loss: tf.Tensor(1.4906145, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.45280465, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 1240\n",
+ "Discriminator Loss: tf.Tensor(1.311878, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.95707303, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 1241\n",
+ "Discriminator Loss: tf.Tensor(0.9921878, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.34951043, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 1242\n",
+ "Discriminator Loss: tf.Tensor(1.6227233, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.3809806, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 1243\n",
+ "Discriminator Loss: tf.Tensor(1.5922815, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.5866295, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 1244\n",
+ "Discriminator Loss: tf.Tensor(1.6479874, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.2012658, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 1245\n",
+ "Discriminator Loss: tf.Tensor(1.3282857, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.5727249, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 1246\n",
+ "Discriminator Loss: tf.Tensor(1.0900033, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.88505155, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 1247\n",
+ "Discriminator Loss: tf.Tensor(0.8587146, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.0151417, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 1248\n",
+ "Discriminator Loss: tf.Tensor(0.8413926, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.1764058, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 1249\n",
+ "Discriminator Loss: tf.Tensor(2.3791747, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.2374594, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 1250\n",
+ "Discriminator Loss: tf.Tensor(1.4146008, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.04567049, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 1251\n",
+ "Discriminator Loss: tf.Tensor(1.4775825, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.23867007, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 1252\n",
+ "Discriminator Loss: tf.Tensor(1.2543119, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.0837723, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 1253\n",
+ "Discriminator Loss: tf.Tensor(0.43737498, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.61798424, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 1254\n",
+ "Discriminator Loss: tf.Tensor(1.9515619, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.0122094, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 1255\n",
+ "Discriminator Loss: tf.Tensor(0.62583345, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.37773666, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 1256\n",
+ "Discriminator Loss: tf.Tensor(0.32117876, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.9375542, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 1257\n",
+ "Discriminator Loss: tf.Tensor(0.106946155, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.2735604, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 1258\n",
+ "Discriminator Loss: tf.Tensor(0.48712835, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.7053509, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 1259\n",
+ "Discriminator Loss: tf.Tensor(35.145016, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.8638932, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 1260\n",
+ "Discriminator Loss: tf.Tensor(30.91694, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.18876784, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 1261\n",
+ "Discriminator Loss: tf.Tensor(23.668058, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.24299116, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 1262\n",
+ "Discriminator Loss: tf.Tensor(81.71774, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.31312105, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 1263\n",
+ "Discriminator Loss: tf.Tensor(5.8422813, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.11289227, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 1264\n",
+ "Discriminator Loss: tf.Tensor(4.556546, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.22839761, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 1265\n",
+ "Discriminator Loss: tf.Tensor(3.2375724, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.02559276, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 1266\n",
+ "Discriminator Loss: tf.Tensor(2.31283, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.05148226, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 1267\n",
+ "Discriminator Loss: tf.Tensor(2.186903, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.044093724, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 1268\n",
+ "Discriminator Loss: tf.Tensor(2.1698072, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.04052219, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 1269\n",
+ "Discriminator Loss: tf.Tensor(2.1300147, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.034462407, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 1270\n",
+ "Discriminator Loss: tf.Tensor(2.2322865, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.033960097, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 1271\n",
+ "Discriminator Loss: tf.Tensor(2.0941463, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.026325867, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 1272\n",
+ "Discriminator Loss: tf.Tensor(2.1566572, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.03006593, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 1273\n",
+ "Discriminator Loss: tf.Tensor(2.0618572, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.02781181, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 1274\n",
+ "Discriminator Loss: tf.Tensor(2.0409646, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.02589746, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 1275\n",
+ "Discriminator Loss: tf.Tensor(2.057467, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.018699326, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 1276\n",
+ "Discriminator Loss: tf.Tensor(2.0391295, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.027866127, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 1277\n",
+ "Discriminator Loss: tf.Tensor(2.0200133, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.024877667, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 1278\n",
+ "Discriminator Loss: tf.Tensor(2.0555582, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.02705589, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 1279\n",
+ "Discriminator Loss: tf.Tensor(2.0082893, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.025841525, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 1280\n",
+ "Discriminator Loss: tf.Tensor(2.0107834, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.02137906, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 1281\n",
+ "Discriminator Loss: tf.Tensor(2.0000906, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.025741717, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 1282\n",
+ "Discriminator Loss: tf.Tensor(2.0163343, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.012821098, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 1283\n",
+ "Discriminator Loss: tf.Tensor(2.0010657, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.018509425, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 1284\n",
+ "Discriminator Loss: tf.Tensor(1.9895769, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.029056998, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 1285\n",
+ "Discriminator Loss: tf.Tensor(2.0072863, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.023899054, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 1286\n",
+ "Discriminator Loss: tf.Tensor(2.0221353, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.02063649, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 1287\n",
+ "Discriminator Loss: tf.Tensor(1.9696994, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.013314926, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 1288\n",
+ "Discriminator Loss: tf.Tensor(1.9751656, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.019674653, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 1289\n",
+ "Discriminator Loss: tf.Tensor(1.9602472, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.041103438, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 1290\n",
+ "Discriminator Loss: tf.Tensor(1.977588, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.03209288, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 1291\n",
+ "Discriminator Loss: tf.Tensor(1.9696333, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.020280346, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 1292\n",
+ "Discriminator Loss: tf.Tensor(1.9412221, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.041924253, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 1293\n",
+ "Discriminator Loss: tf.Tensor(1.9553094, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.029729838, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 1294\n",
+ "Discriminator Loss: tf.Tensor(1.8978639, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.092062585, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 1295\n",
+ "Discriminator Loss: tf.Tensor(1.8895093, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.10647891, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 1296\n",
+ "Discriminator Loss: tf.Tensor(1.8933138, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.13202624, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 1297\n",
+ "Discriminator Loss: tf.Tensor(1.8046145, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.17690276, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 1298\n",
+ "Discriminator Loss: tf.Tensor(1.8144068, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.14926763, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 1299\n",
+ "Discriminator Loss: tf.Tensor(1.7235004, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.35318542, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 1300\n",
+ "Discriminator Loss: tf.Tensor(1.7958298, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.19024049, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 1301\n",
+ "Discriminator Loss: tf.Tensor(1.5921384, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.51455694, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 1302\n",
+ "Discriminator Loss: tf.Tensor(1.8737184, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.39592502, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 1303\n",
+ "Discriminator Loss: tf.Tensor(1.7314775, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.5846253, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 1304\n",
+ "Discriminator Loss: tf.Tensor(1.7083237, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.34001765, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 1305\n",
+ "Discriminator Loss: tf.Tensor(1.3497764, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.80475545, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 1306\n",
+ "Discriminator Loss: tf.Tensor(1.4915191, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.58784753, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 1307\n",
+ "Discriminator Loss: tf.Tensor(2.6979308, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.5215503, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 1308\n",
+ "Discriminator Loss: tf.Tensor(2.0550122, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.73757905, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 1309\n",
+ "Discriminator Loss: tf.Tensor(1.9601539, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.5650308, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 1310\n",
+ "Discriminator Loss: tf.Tensor(1.822266, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.37988016, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 1311\n",
+ "Discriminator Loss: tf.Tensor(1.7190602, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.33462158, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 1312\n",
+ "Discriminator Loss: tf.Tensor(1.7242862, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.4669383, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 1313\n",
+ "Discriminator Loss: tf.Tensor(1.7496499, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.6027825, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 1314\n",
+ "Discriminator Loss: tf.Tensor(1.6864661, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.59326506, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 1315\n",
+ "Discriminator Loss: tf.Tensor(1.551915, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.19272716, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 1316\n",
+ "Discriminator Loss: tf.Tensor(2.3164215, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-1.1834031, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 1317\n",
+ "Discriminator Loss: tf.Tensor(1.4486442, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.8065515, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 1318\n",
+ "Discriminator Loss: tf.Tensor(1.6577761, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.7084776, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 1319\n",
+ "Discriminator Loss: tf.Tensor(1.5440046, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.09017364, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 1320\n",
+ "Discriminator Loss: tf.Tensor(1.4450613, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.07188757, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 1321\n",
+ "Discriminator Loss: tf.Tensor(1.707727, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.37941948, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 1322\n",
+ "Discriminator Loss: tf.Tensor(1.22375, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.05869646, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 1323\n",
+ "Discriminator Loss: tf.Tensor(1.2485433, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.62167484, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 1324\n",
+ "Discriminator Loss: tf.Tensor(0.98857486, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.02224425, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 1325\n",
+ "Discriminator Loss: tf.Tensor(2.7847543, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.5938709, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 1326\n",
+ "Discriminator Loss: tf.Tensor(1.2737476, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.44308487, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 1327\n",
+ "Discriminator Loss: tf.Tensor(0.5750891, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.7073229, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 1328\n",
+ "Discriminator Loss: tf.Tensor(0.6257154, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.42238688, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 1329\n",
+ "Discriminator Loss: tf.Tensor(3.3173447, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(5.3665442, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 1330\n",
+ "Discriminator Loss: tf.Tensor(0.9328002, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.24127631, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 1331\n",
+ "Discriminator Loss: tf.Tensor(1.2912638, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.24200125, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 1332\n",
+ "Discriminator Loss: tf.Tensor(1.3040593, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.1365334, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 1333\n",
+ "Discriminator Loss: tf.Tensor(0.91700286, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.25263178, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 1334\n",
+ "Discriminator Loss: tf.Tensor(1.4055055, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.38752642, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 1335\n",
+ "Discriminator Loss: tf.Tensor(1.296179, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.99724823, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 1336\n",
+ "Discriminator Loss: tf.Tensor(0.8407066, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.3743292, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 1337\n",
+ "Discriminator Loss: tf.Tensor(0.50289065, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.55380243, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 1338\n",
+ "Discriminator Loss: tf.Tensor(1.7742639, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.1060178, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 1339\n",
+ "Discriminator Loss: tf.Tensor(1.1708108, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.16292976, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 1340\n",
+ "Discriminator Loss: tf.Tensor(0.9414891, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.7507887, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 1341\n",
+ "Discriminator Loss: tf.Tensor(0.6948046, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.31679502, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 1342\n",
+ "Discriminator Loss: tf.Tensor(2.1302695, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(4.6712894, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 1343\n",
+ "Discriminator Loss: tf.Tensor(0.27434602, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.899498, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 1344\n",
+ "Discriminator Loss: tf.Tensor(0.16420153, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.1665106, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 1345\n",
+ "Discriminator Loss: tf.Tensor(0.88305074, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.354516, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 1346\n",
+ "Discriminator Loss: tf.Tensor(105.62406, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.3101455, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 1347\n",
+ "Discriminator Loss: tf.Tensor(18.434216, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.3625866, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 1348\n",
+ "Discriminator Loss: tf.Tensor(27.555258, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.1636674, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 1349\n",
+ "Discriminator Loss: tf.Tensor(2.640427, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.17399092, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 1350\n",
+ "Discriminator Loss: tf.Tensor(2.2960117, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.15752293, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 1351\n",
+ "Discriminator Loss: tf.Tensor(2.2093277, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.13871482, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 1352\n",
+ "Discriminator Loss: tf.Tensor(2.200851, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.13647494, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 1353\n",
+ "Discriminator Loss: tf.Tensor(2.165608, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.11442208, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 1354\n",
+ "Discriminator Loss: tf.Tensor(2.1342967, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.11355609, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 1355\n",
+ "Discriminator Loss: tf.Tensor(2.0819404, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.115831874, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 1356\n",
+ "Discriminator Loss: tf.Tensor(2.074112, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.123957835, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 1357\n",
+ "Discriminator Loss: tf.Tensor(2.0575476, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.110893376, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 1358\n",
+ "Discriminator Loss: tf.Tensor(2.028967, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.12034115, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 1359\n",
+ "Discriminator Loss: tf.Tensor(2.0218117, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.111776024, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 1360\n",
+ "Discriminator Loss: tf.Tensor(2.0456963, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.11074873, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 1361\n",
+ "Discriminator Loss: tf.Tensor(2.0323534, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.11315468, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 1362\n",
+ "Discriminator Loss: tf.Tensor(2.010947, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.10924893, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 1363\n",
+ "Discriminator Loss: tf.Tensor(1.972203, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.12668006, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 1364\n",
+ "Discriminator Loss: tf.Tensor(1.9820402, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.11476169, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 1365\n",
+ "Discriminator Loss: tf.Tensor(2.0057328, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.10811275, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 1366\n",
+ "Discriminator Loss: tf.Tensor(1.983958, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.11099738, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 1367\n",
+ "Discriminator Loss: tf.Tensor(1.9802611, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.11354181, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 1368\n",
+ "Discriminator Loss: tf.Tensor(1.9888444, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.10162964, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 1369\n",
+ "Discriminator Loss: tf.Tensor(1.9795138, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.10706674, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 1370\n",
+ "Discriminator Loss: tf.Tensor(1.9685768, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.11214429, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 1371\n",
+ "Discriminator Loss: tf.Tensor(1.9395326, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.12989609, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 1372\n",
+ "Discriminator Loss: tf.Tensor(1.9826686, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.121228635, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 1373\n",
+ "Discriminator Loss: tf.Tensor(1.9659777, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.12272362, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 1374\n",
+ "Discriminator Loss: tf.Tensor(1.9341588, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.13165863, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 1375\n",
+ "Discriminator Loss: tf.Tensor(1.9477158, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.11532607, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 1376\n",
+ "Discriminator Loss: tf.Tensor(1.9402167, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.13102238, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 1377\n",
+ "Discriminator Loss: tf.Tensor(1.9143465, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.15331753, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 1378\n",
+ "Discriminator Loss: tf.Tensor(1.9684207, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.1369685, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 1379\n",
+ "Discriminator Loss: tf.Tensor(1.9135361, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.17389159, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 1380\n",
+ "Discriminator Loss: tf.Tensor(1.9029509, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.18245743, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 1381\n",
+ "Discriminator Loss: tf.Tensor(1.9234551, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.1711725, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 1382\n",
+ "Discriminator Loss: tf.Tensor(1.8982153, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.17412941, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 1383\n",
+ "Discriminator Loss: tf.Tensor(1.9461787, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.24739826, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 1384\n",
+ "Discriminator Loss: tf.Tensor(1.8504759, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.24179529, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 1385\n",
+ "Discriminator Loss: tf.Tensor(1.9189842, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.17285526, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 1386\n",
+ "Discriminator Loss: tf.Tensor(1.8730366, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.23908943, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 1387\n",
+ "Discriminator Loss: tf.Tensor(1.8857423, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.2740859, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 1388\n",
+ "Discriminator Loss: tf.Tensor(1.8633015, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.2598098, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 1389\n",
+ "Discriminator Loss: tf.Tensor(1.7846385, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.34647343, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 1390\n",
+ "Discriminator Loss: tf.Tensor(1.7483455, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.39669952, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 1391\n",
+ "Discriminator Loss: tf.Tensor(1.7416006, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.50279444, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 1392\n",
+ "Discriminator Loss: tf.Tensor(1.8209947, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.69269943, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 1393\n",
+ "Discriminator Loss: tf.Tensor(1.5964087, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.48996177, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 1394\n",
+ "Discriminator Loss: tf.Tensor(1.7850972, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.6276785, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 1395\n",
+ "Discriminator Loss: tf.Tensor(1.5345998, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.9263918, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 1396\n",
+ "Discriminator Loss: tf.Tensor(1.6189305, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.36633, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 1397\n",
+ "Discriminator Loss: tf.Tensor(1.565022, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.7881275, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 1398\n",
+ "Discriminator Loss: tf.Tensor(1.3958348, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.0557505, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 1399\n",
+ "Discriminator Loss: tf.Tensor(1.8027277, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.28658476, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 1400\n",
+ "Discriminator Loss: tf.Tensor(1.7576863, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.14388578, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 1401\n",
+ "Discriminator Loss: tf.Tensor(1.5635285, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.18697608, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 1402\n",
+ "Discriminator Loss: tf.Tensor(1.256115, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.0811652, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 1403\n",
+ "Discriminator Loss: tf.Tensor(1.4823176, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.45441476, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 1404\n",
+ "Discriminator Loss: tf.Tensor(1.0083377, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.37623402, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 1405\n",
+ "Discriminator Loss: tf.Tensor(3.083242, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.5284897, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 1406\n",
+ "Discriminator Loss: tf.Tensor(1.8050003, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.71797377, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 1407\n",
+ "Discriminator Loss: tf.Tensor(1.6771141, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.59650165, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 1408\n",
+ "Discriminator Loss: tf.Tensor(1.5972384, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.5633455, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 1409\n",
+ "Discriminator Loss: tf.Tensor(1.7640089, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.7539382, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 1410\n",
+ "Discriminator Loss: tf.Tensor(1.6235673, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.6359283, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 1411\n",
+ "Discriminator Loss: tf.Tensor(1.3813345, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.834418, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 1412\n",
+ "Discriminator Loss: tf.Tensor(1.0371666, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.9662168, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 1413\n",
+ "Discriminator Loss: tf.Tensor(0.39717636, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.98055476, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 1414\n",
+ "Discriminator Loss: tf.Tensor(0.9742507, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.51102185, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 1415\n",
+ "Discriminator Loss: tf.Tensor(5.115067, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(7.0048466, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 1416\n",
+ "Discriminator Loss: tf.Tensor(1.2057884, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.14710516, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 1417\n",
+ "Discriminator Loss: tf.Tensor(0.8426192, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.16572432, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 1418\n",
+ "Discriminator Loss: tf.Tensor(1.2329034, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.15499075, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 1419\n",
+ "Discriminator Loss: tf.Tensor(1.4330472, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.33932912, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 1420\n",
+ "Discriminator Loss: tf.Tensor(1.6298175, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.6458116, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 1421\n",
+ "Discriminator Loss: tf.Tensor(1.2676456, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.45892438, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 1422\n",
+ "Discriminator Loss: tf.Tensor(1.0019248, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.2918849, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 1423\n",
+ "Discriminator Loss: tf.Tensor(1.4662066, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.46111754, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 1424\n",
+ "Discriminator Loss: tf.Tensor(0.8925594, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.1078109, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 1425\n",
+ "Discriminator Loss: tf.Tensor(1.2258518, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.22013223, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 1426\n",
+ "Discriminator Loss: tf.Tensor(1.7234817, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.0283432, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 1427\n",
+ "Discriminator Loss: tf.Tensor(1.3937666, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.0016574239, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 1428\n",
+ "Discriminator Loss: tf.Tensor(1.1827734, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.028480785, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 1429\n",
+ "Discriminator Loss: tf.Tensor(0.5700065, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.1676645, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 1430\n",
+ "Discriminator Loss: tf.Tensor(2.2756355, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-1.2705387, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 1431\n",
+ "Discriminator Loss: tf.Tensor(0.61356986, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.964148, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 1432\n",
+ "Discriminator Loss: tf.Tensor(0.2664705, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.87586004, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 1433\n",
+ "Discriminator Loss: tf.Tensor(0.8787892, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.59534, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 1434\n",
+ "Discriminator Loss: tf.Tensor(1.6221861, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.6194481, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 1435\n",
+ "Discriminator Loss: tf.Tensor(0.4318937, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.4387201, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 1436\n",
+ "Discriminator Loss: tf.Tensor(1.0423262, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.035784107, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 1437\n",
+ "Discriminator Loss: tf.Tensor(1.6617391, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.693696, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 1438\n",
+ "Discriminator Loss: tf.Tensor(1.0996431, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.20798981, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 1439\n",
+ "Discriminator Loss: tf.Tensor(0.83909214, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.22575776, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 1440\n",
+ "Discriminator Loss: tf.Tensor(0.61011934, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(3.5687008, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 1441\n",
+ "Discriminator Loss: tf.Tensor(1.1854577, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.18018554, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 1442\n",
+ "Discriminator Loss: tf.Tensor(0.16851422, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.79177, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 1443\n",
+ "Discriminator Loss: tf.Tensor(0.20194668, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.418734, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 1444\n",
+ "Discriminator Loss: tf.Tensor(2.8426483, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(3.2734585, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 1445\n",
+ "Discriminator Loss: tf.Tensor(37.001793, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.4679964, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 1446\n",
+ "Discriminator Loss: tf.Tensor(6.7310586, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.1111212, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 1447\n",
+ "Discriminator Loss: tf.Tensor(4.710308, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.18745053, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 1448\n",
+ "Discriminator Loss: tf.Tensor(2.3541596, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.101790346, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 1449\n",
+ "Discriminator Loss: tf.Tensor(2.1399698, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.09577183, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 1450\n",
+ "Discriminator Loss: tf.Tensor(2.0799003, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.088924706, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 1451\n",
+ "Discriminator Loss: tf.Tensor(2.089423, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.113733046, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 1452\n",
+ "Discriminator Loss: tf.Tensor(2.0572612, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.11931116, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 1453\n",
+ "Discriminator Loss: tf.Tensor(2.0310576, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.12837811, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 1454\n",
+ "Discriminator Loss: tf.Tensor(2.0171852, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.123059906, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 1455\n",
+ "Discriminator Loss: tf.Tensor(2.0045183, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.11748264, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 1456\n",
+ "Discriminator Loss: tf.Tensor(1.990011, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.10556692, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 1457\n",
+ "Discriminator Loss: tf.Tensor(1.9871176, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.072584085, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 1458\n",
+ "Discriminator Loss: tf.Tensor(1.9861735, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.08446316, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 1459\n",
+ "Discriminator Loss: tf.Tensor(1.9735665, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.0805855, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 1460\n",
+ "Discriminator Loss: tf.Tensor(1.9751308, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.08246462, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 1461\n",
+ "Discriminator Loss: tf.Tensor(1.9684591, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.07051445, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 1462\n",
+ "Discriminator Loss: tf.Tensor(1.9619422, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.056353897, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 1463\n",
+ "Discriminator Loss: tf.Tensor(1.970203, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.078085, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 1464\n",
+ "Discriminator Loss: tf.Tensor(1.9436696, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.046153028, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 1465\n",
+ "Discriminator Loss: tf.Tensor(1.9504347, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.0354334, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 1466\n",
+ "Discriminator Loss: tf.Tensor(1.9884875, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.043516427, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 1467\n",
+ "Discriminator Loss: tf.Tensor(1.9418658, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.08342483, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 1468\n",
+ "Discriminator Loss: tf.Tensor(1.9434892, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.02579531, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 1469\n",
+ "Discriminator Loss: tf.Tensor(1.9369833, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.022514895, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 1470\n",
+ "Discriminator Loss: tf.Tensor(1.9958277, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.020726608, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 1471\n",
+ "Discriminator Loss: tf.Tensor(1.9520757, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.093467, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 1472\n",
+ "Discriminator Loss: tf.Tensor(2.0069733, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.06307817, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 1473\n",
+ "Discriminator Loss: tf.Tensor(1.9854169, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.14224769, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 1474\n",
+ "Discriminator Loss: tf.Tensor(1.9478545, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.06768474, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 1475\n",
+ "Discriminator Loss: tf.Tensor(1.950509, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.014769121, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 1476\n",
+ "Discriminator Loss: tf.Tensor(1.9195441, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.00328718, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 1477\n",
+ "Discriminator Loss: tf.Tensor(1.8782865, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.12251985, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 1478\n",
+ "Discriminator Loss: tf.Tensor(1.8919095, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.14385901, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 1479\n",
+ "Discriminator Loss: tf.Tensor(1.8897111, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.3653752, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 1480\n",
+ "Discriminator Loss: tf.Tensor(1.9918954, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.0074407025, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 1481\n",
+ "Discriminator Loss: tf.Tensor(1.9428841, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.05719563, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 1482\n",
+ "Discriminator Loss: tf.Tensor(1.9562023, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.054406166, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 1483\n",
+ "Discriminator Loss: tf.Tensor(1.9550045, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.014824472, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 1484\n",
+ "Discriminator Loss: tf.Tensor(1.9038286, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.08678716, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 1485\n",
+ "Discriminator Loss: tf.Tensor(1.968087, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.15842901, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 1486\n",
+ "Discriminator Loss: tf.Tensor(1.8567781, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.14781132, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 1487\n",
+ "Discriminator Loss: tf.Tensor(1.8838236, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.29232755, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 1488\n",
+ "Discriminator Loss: tf.Tensor(1.9076297, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.63383114, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 1489\n",
+ "Discriminator Loss: tf.Tensor(1.8735015, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.04530038, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 1490\n",
+ "Discriminator Loss: tf.Tensor(1.8582625, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.26573318, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 1491\n",
+ "Discriminator Loss: tf.Tensor(1.8800194, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.28229615, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 1492\n",
+ "Discriminator Loss: tf.Tensor(1.8570378, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.48702416, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 1493\n",
+ "Discriminator Loss: tf.Tensor(1.8940979, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.07631863, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 1494\n",
+ "Discriminator Loss: tf.Tensor(1.8071812, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.21441865, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 1495\n",
+ "Discriminator Loss: tf.Tensor(1.4955506, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.9147232, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 1496\n",
+ "Discriminator Loss: tf.Tensor(1.3987484, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.56668866, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 1497\n",
+ "Discriminator Loss: tf.Tensor(2.1920347, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.7149096, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 1498\n",
+ "Discriminator Loss: tf.Tensor(1.9813032, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.58062196, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 1499\n",
+ "Discriminator Loss: tf.Tensor(1.6383215, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.36838326, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 1500\n",
+ "Discriminator Loss: tf.Tensor(1.3325851, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.3123357, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 1501\n",
+ "Discriminator Loss: tf.Tensor(1.9477952, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.086543284, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 1502\n",
+ "Discriminator Loss: tf.Tensor(1.94485, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.17683958, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 1503\n",
+ "Discriminator Loss: tf.Tensor(1.8768249, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.20711708, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 1504\n",
+ "Discriminator Loss: tf.Tensor(1.8542495, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.32528552, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 1505\n",
+ "Discriminator Loss: tf.Tensor(1.7467974, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.70510215, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 1506\n",
+ "Discriminator Loss: tf.Tensor(2.5264606, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.1666949, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 1507\n",
+ "Discriminator Loss: tf.Tensor(1.3519157, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.25123656, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 1508\n",
+ "Discriminator Loss: tf.Tensor(2.2798991, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-1.2475115, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 1509\n",
+ "Discriminator Loss: tf.Tensor(1.7238463, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.27054211, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 1510\n",
+ "Discriminator Loss: tf.Tensor(1.3085008, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.7688601, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 1511\n",
+ "Discriminator Loss: tf.Tensor(1.4274611, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.7343451, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 1512\n",
+ "Discriminator Loss: tf.Tensor(1.7255447, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.3093336, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 1513\n",
+ "Discriminator Loss: tf.Tensor(1.6950402, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.49308622, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 1514\n",
+ "Discriminator Loss: tf.Tensor(1.181917, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.071986794, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 1515\n",
+ "Discriminator Loss: tf.Tensor(1.3230234, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.8237683, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 1516\n",
+ "Discriminator Loss: tf.Tensor(1.5229355, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.3530979, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 1517\n",
+ "Discriminator Loss: tf.Tensor(0.70019084, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.6193531, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 1518\n",
+ "Discriminator Loss: tf.Tensor(0.66510427, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.71227765, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 1519\n",
+ "Discriminator Loss: tf.Tensor(5.9045835, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(7.825091, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 1520\n",
+ "Discriminator Loss: tf.Tensor(1.6319288, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.62868005, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 1521\n",
+ "Discriminator Loss: tf.Tensor(1.1958516, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.5594483, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 1522\n",
+ "Discriminator Loss: tf.Tensor(1.0463498, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.20416188, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 1523\n",
+ "Discriminator Loss: tf.Tensor(1.2014086, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.79984266, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 1524\n",
+ "Discriminator Loss: tf.Tensor(0.56530553, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.45582935, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 1525\n",
+ "Discriminator Loss: tf.Tensor(3.143124, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(3.3747432, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 1526\n",
+ "Discriminator Loss: tf.Tensor(1.2010686, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.016943544, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 1527\n",
+ "Discriminator Loss: tf.Tensor(1.2819207, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.27419943, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 1528\n",
+ "Discriminator Loss: tf.Tensor(1.1831684, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.114452, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 1529\n",
+ "Discriminator Loss: tf.Tensor(1.3379025, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.10700882, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 1530\n",
+ "Discriminator Loss: tf.Tensor(0.75883615, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.5735282, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 1531\n",
+ "Discriminator Loss: tf.Tensor(0.7173643, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.3772354, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 1532\n",
+ "Discriminator Loss: tf.Tensor(2.0819156, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(3.3043795, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 1533\n",
+ "Discriminator Loss: tf.Tensor(1.1292485, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.2281394, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 1534\n",
+ "Discriminator Loss: tf.Tensor(0.35042542, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.9150948, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 1535\n",
+ "Discriminator Loss: tf.Tensor(0.9074708, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.5953759, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 1536\n",
+ "Discriminator Loss: tf.Tensor(1.8530898, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.8401095, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 1537\n",
+ "Discriminator Loss: tf.Tensor(1.1448209, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.73743844, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 1538\n",
+ "Discriminator Loss: tf.Tensor(1.1975331, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.2572172, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 1539\n",
+ "Discriminator Loss: tf.Tensor(2.187817, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.2880608, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 1540\n",
+ "Discriminator Loss: tf.Tensor(1.3745837, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.21539152, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 1541\n",
+ "Discriminator Loss: tf.Tensor(1.4917165, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.29826584, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 1542\n",
+ "Discriminator Loss: tf.Tensor(1.180458, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.2668165, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 1543\n",
+ "Discriminator Loss: tf.Tensor(0.66755116, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.1991853, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 1544\n",
+ "Discriminator Loss: tf.Tensor(0.8766478, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.13489223, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 1545\n",
+ "Discriminator Loss: tf.Tensor(3.3644357, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(3.3536737, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 1546\n",
+ "Discriminator Loss: tf.Tensor(1.269407, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.11589569, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 1547\n",
+ "Discriminator Loss: tf.Tensor(1.3113376, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.21024358, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 1548\n",
+ "Discriminator Loss: tf.Tensor(0.73112404, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.78453875, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 1549\n",
+ "Discriminator Loss: tf.Tensor(1.7336384, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.7179213, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 1550\n",
+ "Discriminator Loss: tf.Tensor(1.6643506, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.1097304, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 1551\n",
+ "Discriminator Loss: tf.Tensor(1.015711, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.23221092, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 1552\n",
+ "Discriminator Loss: tf.Tensor(0.51451415, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.7456985, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 1553\n",
+ "Discriminator Loss: tf.Tensor(1.067548, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.545898, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 1554\n",
+ "Discriminator Loss: tf.Tensor(0.8024279, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.20580088, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 1555\n",
+ "Discriminator Loss: tf.Tensor(1.3215928, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.1886605, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 1556\n",
+ "Discriminator Loss: tf.Tensor(1.0918586, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.06388243, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 1557\n",
+ "Discriminator Loss: tf.Tensor(0.7732515, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.99595815, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 1558\n",
+ "Discriminator Loss: tf.Tensor(0.85130495, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.156924, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 1559\n",
+ "Discriminator Loss: tf.Tensor(1.7243147, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.731736, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 1560\n",
+ "Discriminator Loss: tf.Tensor(1.2372347, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.03197126, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 1561\n",
+ "Discriminator Loss: tf.Tensor(0.88317394, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.28878018, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 1562\n",
+ "Discriminator Loss: tf.Tensor(0.13720158, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.4673351, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 1563\n",
+ "Discriminator Loss: tf.Tensor(1.3166306, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.5201765, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 1564\n",
+ "Discriminator Loss: tf.Tensor(22.36349, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.25417393, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 1565\n",
+ "Discriminator Loss: tf.Tensor(7.917641, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.047446977, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 1566\n",
+ "Discriminator Loss: tf.Tensor(6.3426523, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.0033977337, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 1567\n",
+ "Discriminator Loss: tf.Tensor(3.7488298, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.09728988, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 1568\n",
+ "Discriminator Loss: tf.Tensor(2.7025752, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.10268319, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 1569\n",
+ "Discriminator Loss: tf.Tensor(2.1532614, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.07576497, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 1570\n",
+ "Discriminator Loss: tf.Tensor(2.0512104, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.06891467, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 1571\n",
+ "Discriminator Loss: tf.Tensor(2.0316336, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.070738636, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 1572\n",
+ "Discriminator Loss: tf.Tensor(2.0230176, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.064986326, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 1573\n",
+ "Discriminator Loss: tf.Tensor(2.0179665, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.06343468, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 1574\n",
+ "Discriminator Loss: tf.Tensor(2.0142164, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.053424317, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 1575\n",
+ "Discriminator Loss: tf.Tensor(2.0078065, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.05302349, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 1576\n",
+ "Discriminator Loss: tf.Tensor(2.0038888, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.046730977, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 1577\n",
+ "Discriminator Loss: tf.Tensor(2.0011477, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.04648319, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 1578\n",
+ "Discriminator Loss: tf.Tensor(2.0098503, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.041340943, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 1579\n",
+ "Discriminator Loss: tf.Tensor(1.9933659, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.041741323, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 1580\n",
+ "Discriminator Loss: tf.Tensor(1.9906429, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.03985005, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 1581\n",
+ "Discriminator Loss: tf.Tensor(1.9873314, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.042356133, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 1582\n",
+ "Discriminator Loss: tf.Tensor(1.980518, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.042595837, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 1583\n",
+ "Discriminator Loss: tf.Tensor(1.9872068, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.031025494, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 1584\n",
+ "Discriminator Loss: tf.Tensor(1.975912, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.03762347, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 1585\n",
+ "Discriminator Loss: tf.Tensor(1.9802616, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.03394879, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 1586\n",
+ "Discriminator Loss: tf.Tensor(1.9764736, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.031515215, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 1587\n",
+ "Discriminator Loss: tf.Tensor(1.980035, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.027238771, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 1588\n",
+ "Discriminator Loss: tf.Tensor(1.983456, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.03309055, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 1589\n",
+ "Discriminator Loss: tf.Tensor(1.9798977, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.027468557, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 1590\n",
+ "Discriminator Loss: tf.Tensor(1.9653654, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.03416656, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 1591\n",
+ "Discriminator Loss: tf.Tensor(1.9746886, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.047597677, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 1592\n",
+ "Discriminator Loss: tf.Tensor(1.9766947, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.03777495, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 1593\n",
+ "Discriminator Loss: tf.Tensor(1.9691523, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.037373368, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 1594\n",
+ "Discriminator Loss: tf.Tensor(1.9548084, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.04535352, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 1595\n",
+ "Discriminator Loss: tf.Tensor(1.949663, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.059043348, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 1596\n",
+ "Discriminator Loss: tf.Tensor(1.9401736, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.060812667, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 1597\n",
+ "Discriminator Loss: tf.Tensor(1.9712515, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.08673173, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 1598\n",
+ "Discriminator Loss: tf.Tensor(1.9209318, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.10276579, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 1599\n",
+ "Discriminator Loss: tf.Tensor(1.9562464, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.046636213, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 1600\n",
+ "Discriminator Loss: tf.Tensor(1.9327195, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.06791974, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 1601\n",
+ "Discriminator Loss: tf.Tensor(1.922136, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.14844702, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 1602\n",
+ "Discriminator Loss: tf.Tensor(1.8542093, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.12995568, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 1603\n",
+ "Discriminator Loss: tf.Tensor(1.6907983, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.41231886, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 1604\n",
+ "Discriminator Loss: tf.Tensor(1.9110936, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.047097895, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 1605\n",
+ "Discriminator Loss: tf.Tensor(1.9233446, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.10438939, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 1606\n",
+ "Discriminator Loss: tf.Tensor(1.6365683, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.28944242, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 1607\n",
+ "Discriminator Loss: tf.Tensor(1.5039371, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.4275455, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 1608\n",
+ "Discriminator Loss: tf.Tensor(1.891084, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.8859043, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 1609\n",
+ "Discriminator Loss: tf.Tensor(1.9169589, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.012029749, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 1610\n",
+ "Discriminator Loss: tf.Tensor(1.8897605, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.017063154, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 1611\n",
+ "Discriminator Loss: tf.Tensor(1.8859562, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.0472323, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 1612\n",
+ "Discriminator Loss: tf.Tensor(1.8247404, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.0136973495, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 1613\n",
+ "Discriminator Loss: tf.Tensor(1.7624817, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.07715098, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 1614\n",
+ "Discriminator Loss: tf.Tensor(1.6837068, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.017016185, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 1615\n",
+ "Discriminator Loss: tf.Tensor(1.687145, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.6363063, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 1616\n",
+ "Discriminator Loss: tf.Tensor(1.8171142, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.18619312, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 1617\n",
+ "Discriminator Loss: tf.Tensor(1.506243, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.5067615, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 1618\n",
+ "Discriminator Loss: tf.Tensor(2.8063293, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.7234621, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 1619\n",
+ "Discriminator Loss: tf.Tensor(1.7952812, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.7019016, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 1620\n",
+ "Discriminator Loss: tf.Tensor(1.7751497, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.76623124, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 1621\n",
+ "Discriminator Loss: tf.Tensor(1.8843967, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.14226632, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 1622\n",
+ "Discriminator Loss: tf.Tensor(1.8439806, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.13761981, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 1623\n",
+ "Discriminator Loss: tf.Tensor(1.6913536, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.28184438, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 1624\n",
+ "Discriminator Loss: tf.Tensor(1.1028991, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.87552613, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 1625\n",
+ "Discriminator Loss: tf.Tensor(1.0268945, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.5471653, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 1626\n",
+ "Discriminator Loss: tf.Tensor(1.0545899, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.052298624, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 1627\n",
+ "Discriminator Loss: tf.Tensor(0.6953021, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.2038233, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 1628\n",
+ "Discriminator Loss: tf.Tensor(0.27111372, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.215479, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 1629\n",
+ "Discriminator Loss: tf.Tensor(0.15886736, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.99838644, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 1630\n",
+ "Discriminator Loss: tf.Tensor(19.83785, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(7.1797066, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 1631\n",
+ "Discriminator Loss: tf.Tensor(1.4029455, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.31777385, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 1632\n",
+ "Discriminator Loss: tf.Tensor(1.1871613, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.3780354, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 1633\n",
+ "Discriminator Loss: tf.Tensor(1.1141795, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.30384627, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 1634\n",
+ "Discriminator Loss: tf.Tensor(1.0120982, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.35763457, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 1635\n",
+ "Discriminator Loss: tf.Tensor(0.74321747, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.5655628, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 1636\n",
+ "Discriminator Loss: tf.Tensor(0.2171817, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.153616, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 1637\n",
+ "Discriminator Loss: tf.Tensor(2.5701756, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(3.2718792, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 1638\n",
+ "Discriminator Loss: tf.Tensor(1.4931692, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.48173228, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 1639\n",
+ "Discriminator Loss: tf.Tensor(1.2636635, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.1711766, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 1640\n",
+ "Discriminator Loss: tf.Tensor(1.0840089, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.3954229, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 1641\n",
+ "Discriminator Loss: tf.Tensor(0.7784035, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.42331338, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 1642\n",
+ "Discriminator Loss: tf.Tensor(1.504119, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.6920795, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 1643\n",
+ "Discriminator Loss: tf.Tensor(1.9845386, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.9751877, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 1644\n",
+ "Discriminator Loss: tf.Tensor(0.9555444, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.4474636, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 1645\n",
+ "Discriminator Loss: tf.Tensor(1.0274075, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.24744277, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 1646\n",
+ "Discriminator Loss: tf.Tensor(0.7782134, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.4331936, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 1647\n",
+ "Discriminator Loss: tf.Tensor(1.4591439, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.45318452, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 1648\n",
+ "Discriminator Loss: tf.Tensor(1.4508033, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.5903482, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 1649\n",
+ "Discriminator Loss: tf.Tensor(1.3378141, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.30617326, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 1650\n",
+ "Discriminator Loss: tf.Tensor(1.2068458, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.02261216, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 1651\n",
+ "Discriminator Loss: tf.Tensor(0.7780044, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.68633723, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 1652\n",
+ "Discriminator Loss: tf.Tensor(0.6292572, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.7204284, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 1653\n",
+ "Discriminator Loss: tf.Tensor(2.5438204, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(3.272817, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 1654\n",
+ "Discriminator Loss: tf.Tensor(0.33842042, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.6859886, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 1655\n",
+ "Discriminator Loss: tf.Tensor(1.0671363, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.2610562, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 1656\n",
+ "Discriminator Loss: tf.Tensor(1.2021816, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.828441, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 1657\n",
+ "Discriminator Loss: tf.Tensor(1.6745658, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.6693938, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 1658\n",
+ "Discriminator Loss: tf.Tensor(1.0579293, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.4413791, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 1659\n",
+ "Discriminator Loss: tf.Tensor(0.829178, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.8239024, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 1660\n",
+ "Discriminator Loss: tf.Tensor(0.21371186, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.9412999, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 1661\n",
+ "Discriminator Loss: tf.Tensor(0.9504232, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.5442587, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 1662\n",
+ "Discriminator Loss: tf.Tensor(1.2155856, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.21063308, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 1663\n",
+ "Discriminator Loss: tf.Tensor(2.24186, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.5772405, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 1664\n",
+ "Discriminator Loss: tf.Tensor(1.6887541, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.3155692, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 1665\n",
+ "Discriminator Loss: tf.Tensor(1.5245969, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.18030334, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 1666\n",
+ "Discriminator Loss: tf.Tensor(1.2876959, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.05306987, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 1667\n",
+ "Discriminator Loss: tf.Tensor(0.7499478, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.5168288, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 1668\n",
+ "Discriminator Loss: tf.Tensor(0.57293403, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.80541974, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 1669\n",
+ "Discriminator Loss: tf.Tensor(3.5126293, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(5.9647346, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 1670\n",
+ "Discriminator Loss: tf.Tensor(1.1602187, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.01205152, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 1671\n",
+ "Discriminator Loss: tf.Tensor(1.2018657, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.025302947, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 1672\n",
+ "Discriminator Loss: tf.Tensor(1.5419929, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.7560819, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 1673\n",
+ "Discriminator Loss: tf.Tensor(1.1235764, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.3293012, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 1674\n",
+ "Discriminator Loss: tf.Tensor(0.3213421, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.92698765, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 1675\n",
+ "Discriminator Loss: tf.Tensor(0.4813642, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.0308189, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 1676\n",
+ "Discriminator Loss: tf.Tensor(1.4043125, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.9668425, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 1677\n",
+ "Discriminator Loss: tf.Tensor(2.0339172, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-1.0214186, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 1678\n",
+ "Discriminator Loss: tf.Tensor(1.4317883, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.6446412, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 1679\n",
+ "Discriminator Loss: tf.Tensor(0.98129874, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.46665534, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 1680\n",
+ "Discriminator Loss: tf.Tensor(2.2037978, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.1318378, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 1681\n",
+ "Discriminator Loss: tf.Tensor(1.6702181, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.6656519, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 1682\n",
+ "Discriminator Loss: tf.Tensor(1.6076677, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.0770564, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 1683\n",
+ "Discriminator Loss: tf.Tensor(1.3255154, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.20158899, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 1684\n",
+ "Discriminator Loss: tf.Tensor(0.95559627, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.27413166, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 1685\n",
+ "Discriminator Loss: tf.Tensor(1.7484688, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.2067442, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 1686\n",
+ "Discriminator Loss: tf.Tensor(1.5200719, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.5078756, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 1687\n",
+ "Discriminator Loss: tf.Tensor(1.5173867, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.37502936, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 1688\n",
+ "Discriminator Loss: tf.Tensor(1.3637619, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.34776196, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 1689\n",
+ "Discriminator Loss: tf.Tensor(0.95415384, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.9925795, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 1690\n",
+ "Discriminator Loss: tf.Tensor(0.38185486, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.6444101, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 1691\n",
+ "Discriminator Loss: tf.Tensor(1.5141649, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.6212683, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 1692\n",
+ "Discriminator Loss: tf.Tensor(0.18859373, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.1765046, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 1693\n",
+ "Discriminator Loss: tf.Tensor(0.39414746, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.61252433, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 1694\n",
+ "Discriminator Loss: tf.Tensor(0.2713784, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.0363884, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 1695\n",
+ "Discriminator Loss: tf.Tensor(8.971999, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(3.8676736, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 1696\n",
+ "Discriminator Loss: tf.Tensor(1.424043, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.2785661, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 1697\n",
+ "Discriminator Loss: tf.Tensor(1.0546101, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.39701936, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 1698\n",
+ "Discriminator Loss: tf.Tensor(0.6943448, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.53890175, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 1699\n",
+ "Discriminator Loss: tf.Tensor(0.25842863, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.1381651, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 1700\n",
+ "Discriminator Loss: tf.Tensor(0.8778358, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.13600115, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 1701\n",
+ "Discriminator Loss: tf.Tensor(2.1233728, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.9312104, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 1702\n",
+ "Discriminator Loss: tf.Tensor(0.46310294, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.5450378, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 1703\n",
+ "Discriminator Loss: tf.Tensor(0.027939359, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.1247395, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 1704\n",
+ "Discriminator Loss: tf.Tensor(0.42590666, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.98015374, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 1705\n",
+ "Discriminator Loss: tf.Tensor(4.3361, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.0472784, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 1706\n",
+ "Discriminator Loss: tf.Tensor(1.332564, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.28479168, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 1707\n",
+ "Discriminator Loss: tf.Tensor(1.1191126, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.3038005, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 1708\n",
+ "Discriminator Loss: tf.Tensor(1.0278622, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.687639, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 1709\n",
+ "Discriminator Loss: tf.Tensor(0.58875173, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.861109, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 1710\n",
+ "Discriminator Loss: tf.Tensor(3.5875976, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.1963208, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 1711\n",
+ "Discriminator Loss: tf.Tensor(1.6077896, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.08775801, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 1712\n",
+ "Discriminator Loss: tf.Tensor(1.4835294, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.106943406, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 1713\n",
+ "Discriminator Loss: tf.Tensor(1.330371, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.10608888, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 1714\n",
+ "Discriminator Loss: tf.Tensor(1.2330766, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.067991056, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 1715\n",
+ "Discriminator Loss: tf.Tensor(1.3689067, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.8545332, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 1716\n",
+ "Discriminator Loss: tf.Tensor(0.94488585, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.67486066, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 1717\n",
+ "Discriminator Loss: tf.Tensor(0.5056763, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.6460887, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 1718\n",
+ "Discriminator Loss: tf.Tensor(1.4186682, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.40095297, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 1719\n",
+ "Discriminator Loss: tf.Tensor(1.1929677, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.3343819, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 1720\n",
+ "Discriminator Loss: tf.Tensor(1.4313743, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.8498769, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 1721\n",
+ "Discriminator Loss: tf.Tensor(1.3322431, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.618334, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 1722\n",
+ "Discriminator Loss: tf.Tensor(2.2232137, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.3151143, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 1723\n",
+ "Discriminator Loss: tf.Tensor(1.098109, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.16078286, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 1724\n",
+ "Discriminator Loss: tf.Tensor(1.4598323, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.23655498, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 1725\n",
+ "Discriminator Loss: tf.Tensor(0.9982556, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.235245, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 1726\n",
+ "Discriminator Loss: tf.Tensor(3.000977, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.9006202, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 1727\n",
+ "Discriminator Loss: tf.Tensor(1.5348061, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.09362056, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 1728\n",
+ "Discriminator Loss: tf.Tensor(1.2237806, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.39452872, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 1729\n",
+ "Discriminator Loss: tf.Tensor(1.9255338, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.98975784, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 1730\n",
+ "Discriminator Loss: tf.Tensor(1.6092646, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.30087814, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 1731\n",
+ "Discriminator Loss: tf.Tensor(1.6408833, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.47906908, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 1732\n",
+ "Discriminator Loss: tf.Tensor(1.6448587, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.4714836, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 1733\n",
+ "Discriminator Loss: tf.Tensor(1.4419312, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.067101054, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 1734\n",
+ "Discriminator Loss: tf.Tensor(0.8341627, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.29102862, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 1735\n",
+ "Discriminator Loss: tf.Tensor(2.5452006, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.3720155, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 1736\n",
+ "Discriminator Loss: tf.Tensor(1.4733309, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.09365503, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 1737\n",
+ "Discriminator Loss: tf.Tensor(1.4787592, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.15074281, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 1738\n",
+ "Discriminator Loss: tf.Tensor(1.1246299, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.33454522, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 1739\n",
+ "Discriminator Loss: tf.Tensor(1.2240919, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.096544236, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 1740\n",
+ "Discriminator Loss: tf.Tensor(1.6215034, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.212782, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 1741\n",
+ "Discriminator Loss: tf.Tensor(1.270425, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.22039412, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 1742\n",
+ "Discriminator Loss: tf.Tensor(0.7828018, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.3753219, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 1743\n",
+ "Discriminator Loss: tf.Tensor(0.7655755, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.7486225, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 1744\n",
+ "Discriminator Loss: tf.Tensor(2.440543, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.113623, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 1745\n",
+ "Discriminator Loss: tf.Tensor(1.0794736, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.23067103, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 1746\n",
+ "Discriminator Loss: tf.Tensor(1.1548712, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.08760581, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 1747\n",
+ "Discriminator Loss: tf.Tensor(1.3677481, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.3288409, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 1748\n",
+ "Discriminator Loss: tf.Tensor(0.92024446, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.111836374, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 1749\n",
+ "Discriminator Loss: tf.Tensor(0.5476583, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.7127032, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 1750\n",
+ "Discriminator Loss: tf.Tensor(1.9093367, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.89161986, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 1751\n",
+ "Discriminator Loss: tf.Tensor(1.7969229, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(3.3854227, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 1752\n",
+ "Discriminator Loss: tf.Tensor(1.1682876, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.06574365, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 1753\n",
+ "Discriminator Loss: tf.Tensor(0.66943586, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.041078, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 1754\n",
+ "Discriminator Loss: tf.Tensor(1.1372255, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.11795106, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 1755\n",
+ "Discriminator Loss: tf.Tensor(2.6608403, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.84064, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 1756\n",
+ "Discriminator Loss: tf.Tensor(1.138264, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.17113638, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 1757\n",
+ "Discriminator Loss: tf.Tensor(1.063674, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.049323928, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 1758\n",
+ "Discriminator Loss: tf.Tensor(0.3384177, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.8941675, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 1759\n",
+ "Discriminator Loss: tf.Tensor(1.4289528, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.38854727, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 1760\n",
+ "Discriminator Loss: tf.Tensor(1.9468209, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(3.1998947, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 1761\n",
+ "Discriminator Loss: tf.Tensor(0.8053625, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.22488034, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 1762\n",
+ "Discriminator Loss: tf.Tensor(0.5920211, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.70254344, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 1763\n",
+ "Discriminator Loss: tf.Tensor(0.4692945, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.6506687, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 1764\n",
+ "Discriminator Loss: tf.Tensor(1.9837325, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.7390893, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 1765\n",
+ "Discriminator Loss: tf.Tensor(0.7686701, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.23800004, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 1766\n",
+ "Discriminator Loss: tf.Tensor(0.8318579, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.5067087, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 1767\n",
+ "Discriminator Loss: tf.Tensor(0.06160671, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.6423141, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 1768\n",
+ "Discriminator Loss: tf.Tensor(74.662926, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.55183446, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 1769\n",
+ "Discriminator Loss: tf.Tensor(36.372177, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.7318277, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 1770\n",
+ "Discriminator Loss: tf.Tensor(2.9911962, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.25156578, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 1771\n",
+ "Discriminator Loss: tf.Tensor(2.4103966, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.16245647, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 1772\n",
+ "Discriminator Loss: tf.Tensor(2.1720102, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.13750878, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 1773\n",
+ "Discriminator Loss: tf.Tensor(2.0975823, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.09938433, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 1774\n",
+ "Discriminator Loss: tf.Tensor(2.0942187, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.08283747, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 1775\n",
+ "Discriminator Loss: tf.Tensor(2.0501153, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.071775354, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 1776\n",
+ "Discriminator Loss: tf.Tensor(2.1377063, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.051709116, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 1777\n",
+ "Discriminator Loss: tf.Tensor(2.0724158, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.0114665935, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 1778\n",
+ "Discriminator Loss: tf.Tensor(2.0432835, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.018862061, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 1779\n",
+ "Discriminator Loss: tf.Tensor(2.0512877, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.02056695, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 1780\n",
+ "Discriminator Loss: tf.Tensor(2.044654, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.008688953, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 1781\n",
+ "Discriminator Loss: tf.Tensor(2.0261977, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.019449996, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 1782\n",
+ "Discriminator Loss: tf.Tensor(2.0033293, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.015722705, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 1783\n",
+ "Discriminator Loss: tf.Tensor(2.0027463, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.024877688, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 1784\n",
+ "Discriminator Loss: tf.Tensor(1.9971558, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.021609664, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 1785\n",
+ "Discriminator Loss: tf.Tensor(1.9839649, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.00786551, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 1786\n",
+ "Discriminator Loss: tf.Tensor(1.9724655, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.0050509092, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 1787\n",
+ "Discriminator Loss: tf.Tensor(1.980875, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.021812081, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 1788\n",
+ "Discriminator Loss: tf.Tensor(1.9771816, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.018990776, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 1789\n",
+ "Discriminator Loss: tf.Tensor(1.9680135, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.012156918, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 1790\n",
+ "Discriminator Loss: tf.Tensor(1.9880728, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.009317209, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 1791\n",
+ "Discriminator Loss: tf.Tensor(1.9726796, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.012354768, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 1792\n",
+ "Discriminator Loss: tf.Tensor(1.9644417, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.011422417, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 1793\n",
+ "Discriminator Loss: tf.Tensor(1.9770442, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.0057399627, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 1794\n",
+ "Discriminator Loss: tf.Tensor(1.9526955, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.00052555, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 1795\n",
+ "Discriminator Loss: tf.Tensor(1.954185, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.017317055, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 1796\n",
+ "Discriminator Loss: tf.Tensor(1.9470893, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.007716915, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 1797\n",
+ "Discriminator Loss: tf.Tensor(1.9321969, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.020889873, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 1798\n",
+ "Discriminator Loss: tf.Tensor(1.978193, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.0023100607, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 1799\n",
+ "Discriminator Loss: tf.Tensor(1.9381278, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.03387927, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 1800\n",
+ "Discriminator Loss: tf.Tensor(1.9447992, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.0008099747, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 1801\n",
+ "Discriminator Loss: tf.Tensor(1.9130554, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.028318204, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 1802\n",
+ "Discriminator Loss: tf.Tensor(1.912537, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.038997907, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 1803\n",
+ "Discriminator Loss: tf.Tensor(1.848527, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.1235499, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 1804\n",
+ "Discriminator Loss: tf.Tensor(1.8778821, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.061501592, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 1805\n",
+ "Discriminator Loss: tf.Tensor(1.7646071, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.26357073, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 1806\n",
+ "Discriminator Loss: tf.Tensor(1.9450336, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.18818898, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 1807\n",
+ "Discriminator Loss: tf.Tensor(1.8492594, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.026784567, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 1808\n",
+ "Discriminator Loss: tf.Tensor(1.8164098, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.12266924, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 1809\n",
+ "Discriminator Loss: tf.Tensor(1.8835304, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.090872146, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 1810\n",
+ "Discriminator Loss: tf.Tensor(1.801839, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.21895675, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 1811\n",
+ "Discriminator Loss: tf.Tensor(1.7441862, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.18841405, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 1812\n",
+ "Discriminator Loss: tf.Tensor(1.973566, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.5760493, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 1813\n",
+ "Discriminator Loss: tf.Tensor(1.9174272, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.03757147, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 1814\n",
+ "Discriminator Loss: tf.Tensor(1.9441211, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.01740064, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 1815\n",
+ "Discriminator Loss: tf.Tensor(1.8912042, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.07632523, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 1816\n",
+ "Discriminator Loss: tf.Tensor(1.8780282, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.14911975, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 1817\n",
+ "Discriminator Loss: tf.Tensor(1.7562014, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.3396032, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 1818\n",
+ "Discriminator Loss: tf.Tensor(1.7265781, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.52040595, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 1819\n",
+ "Discriminator Loss: tf.Tensor(1.4776486, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.1127735, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 1820\n",
+ "Discriminator Loss: tf.Tensor(1.947492, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.71912926, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 1821\n",
+ "Discriminator Loss: tf.Tensor(1.8546062, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.5729431, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 1822\n",
+ "Discriminator Loss: tf.Tensor(1.7910357, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.489755, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 1823\n",
+ "Discriminator Loss: tf.Tensor(1.7068269, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.308635, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 1824\n",
+ "Discriminator Loss: tf.Tensor(1.6222916, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.098157436, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 1825\n",
+ "Discriminator Loss: tf.Tensor(1.3121542, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.18513621, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 1826\n",
+ "Discriminator Loss: tf.Tensor(1.7521628, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.7649028, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 1827\n",
+ "Discriminator Loss: tf.Tensor(1.5908862, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.47038117, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 1828\n",
+ "Discriminator Loss: tf.Tensor(1.0532919, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.8380839, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 1829\n",
+ "Discriminator Loss: tf.Tensor(3.4421816, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.2276504, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 1830\n",
+ "Discriminator Loss: tf.Tensor(1.7327708, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.28366646, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 1831\n",
+ "Discriminator Loss: tf.Tensor(1.397879, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.19748567, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 1832\n",
+ "Discriminator Loss: tf.Tensor(1.2161179, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.36102107, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 1833\n",
+ "Discriminator Loss: tf.Tensor(1.0848845, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.6559588, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 1834\n",
+ "Discriminator Loss: tf.Tensor(2.6543517, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.1297553, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 1835\n",
+ "Discriminator Loss: tf.Tensor(1.862478, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.8571978, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 1836\n",
+ "Discriminator Loss: tf.Tensor(0.8757555, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.48279095, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 1837\n",
+ "Discriminator Loss: tf.Tensor(0.12115908, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.9037661, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 1838\n",
+ "Discriminator Loss: tf.Tensor(1.8885854, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.1046507, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 1839\n",
+ "Discriminator Loss: tf.Tensor(0.38034675, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.0724369, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 1840\n",
+ "Discriminator Loss: tf.Tensor(1.2079566, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.19780177, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 1841\n",
+ "Discriminator Loss: tf.Tensor(1.7433598, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.84805876, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 1842\n",
+ "Discriminator Loss: tf.Tensor(0.565126, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.9698932, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 1843\n",
+ "Discriminator Loss: tf.Tensor(1.1578376, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.13232644, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 1844\n",
+ "Discriminator Loss: tf.Tensor(2.5542064, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(3.376608, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 1845\n",
+ "Discriminator Loss: tf.Tensor(1.566416, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.22666007, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 1846\n",
+ "Discriminator Loss: tf.Tensor(1.275398, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.08629169, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 1847\n",
+ "Discriminator Loss: tf.Tensor(1.038467, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.24627984, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 1848\n",
+ "Discriminator Loss: tf.Tensor(0.9377023, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.6322417, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 1849\n",
+ "Discriminator Loss: tf.Tensor(1.6089104, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.3728882, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 1850\n",
+ "Discriminator Loss: tf.Tensor(0.8268377, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.38760373, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 1851\n",
+ "Discriminator Loss: tf.Tensor(1.4512609, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.1300527, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 1852\n",
+ "Discriminator Loss: tf.Tensor(1.421484, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.4693408, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 1853\n",
+ "Discriminator Loss: tf.Tensor(1.3451608, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.0042024106, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 1854\n",
+ "Discriminator Loss: tf.Tensor(0.89740705, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.8455937, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 1855\n",
+ "Discriminator Loss: tf.Tensor(1.3464735, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.28816727, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 1856\n",
+ "Discriminator Loss: tf.Tensor(1.8098476, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.1219594, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 1857\n",
+ "Discriminator Loss: tf.Tensor(1.2383522, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.034882028, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 1858\n",
+ "Discriminator Loss: tf.Tensor(0.6498704, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.6491618, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 1859\n",
+ "Discriminator Loss: tf.Tensor(0.44584984, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.71525925, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 1860\n",
+ "Discriminator Loss: tf.Tensor(1.7735112, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(3.715932, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 1861\n",
+ "Discriminator Loss: tf.Tensor(1.2339091, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.2307688, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 1862\n",
+ "Discriminator Loss: tf.Tensor(1.0467116, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.89974195, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 1863\n",
+ "Discriminator Loss: tf.Tensor(0.975335, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.11201209, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 1864\n",
+ "Discriminator Loss: tf.Tensor(1.8766172, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(3.5346375, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 1865\n",
+ "Discriminator Loss: tf.Tensor(1.4751422, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.4706265, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 1866\n",
+ "Discriminator Loss: tf.Tensor(1.1754982, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.32505965, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 1867\n",
+ "Discriminator Loss: tf.Tensor(0.9838563, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.21518843, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 1868\n",
+ "Discriminator Loss: tf.Tensor(1.164066, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.38234, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 1869\n",
+ "Discriminator Loss: tf.Tensor(0.9175526, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.0870786, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 1870\n",
+ "Discriminator Loss: tf.Tensor(0.2984322, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.7774938, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 1871\n",
+ "Discriminator Loss: tf.Tensor(1.2389629, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.3535491, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 1872\n",
+ "Discriminator Loss: tf.Tensor(0.015092009, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.7323836, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 1873\n",
+ "Discriminator Loss: tf.Tensor(17.806929, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.052217614, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 1874\n",
+ "Discriminator Loss: tf.Tensor(201.9288, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.5364561, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 1875\n",
+ "Discriminator Loss: tf.Tensor(8.878307, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-1.1588687, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 1876\n",
+ "Discriminator Loss: tf.Tensor(6.1753907, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.34942365, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 1877\n",
+ "Discriminator Loss: tf.Tensor(2.4076755, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.13463105, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 1878\n",
+ "Discriminator Loss: tf.Tensor(2.1644762, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.13092513, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 1879\n",
+ "Discriminator Loss: tf.Tensor(2.103956, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.12614991, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 1880\n",
+ "Discriminator Loss: tf.Tensor(2.1262147, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.13080183, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 1881\n",
+ "Discriminator Loss: tf.Tensor(2.0996614, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.13173129, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 1882\n",
+ "Discriminator Loss: tf.Tensor(2.0692682, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.12484309, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 1883\n",
+ "Discriminator Loss: tf.Tensor(2.0496547, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.122609474, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 1884\n",
+ "Discriminator Loss: tf.Tensor(2.0395124, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.12068874, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 1885\n",
+ "Discriminator Loss: tf.Tensor(2.0290456, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.118018605, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 1886\n",
+ "Discriminator Loss: tf.Tensor(2.0205903, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.11512294, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 1887\n",
+ "Discriminator Loss: tf.Tensor(2.0110517, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.11164048, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 1888\n",
+ "Discriminator Loss: tf.Tensor(2.0086553, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.113284744, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 1889\n",
+ "Discriminator Loss: tf.Tensor(2.0030992, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.10743672, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 1890\n",
+ "Discriminator Loss: tf.Tensor(2.0123901, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.11731693, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 1891\n",
+ "Discriminator Loss: tf.Tensor(2.0134814, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.116531454, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 1892\n",
+ "Discriminator Loss: tf.Tensor(2.0058558, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.11390767, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 1893\n",
+ "Discriminator Loss: tf.Tensor(2.0141835, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.12427639, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 1894\n",
+ "Discriminator Loss: tf.Tensor(1.9956039, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.11453963, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 1895\n",
+ "Discriminator Loss: tf.Tensor(1.9858702, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.10970884, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 1896\n",
+ "Discriminator Loss: tf.Tensor(1.9945846, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.11984271, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 1897\n",
+ "Discriminator Loss: tf.Tensor(1.9880404, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.11799583, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 1898\n",
+ "Discriminator Loss: tf.Tensor(1.9826045, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.11368877, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 1899\n",
+ "Discriminator Loss: tf.Tensor(1.9799597, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.11451604, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 1900\n",
+ "Discriminator Loss: tf.Tensor(1.987525, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.12075188, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 1901\n",
+ "Discriminator Loss: tf.Tensor(1.9836811, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.10848466, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 1902\n",
+ "Discriminator Loss: tf.Tensor(1.9817417, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.11060039, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 1903\n",
+ "Discriminator Loss: tf.Tensor(1.973929, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.106842615, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 1904\n",
+ "Discriminator Loss: tf.Tensor(1.9741448, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.11103677, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 1905\n",
+ "Discriminator Loss: tf.Tensor(1.9706194, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.10183702, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 1906\n",
+ "Discriminator Loss: tf.Tensor(1.9599128, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.0844959, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 1907\n",
+ "Discriminator Loss: tf.Tensor(1.9348574, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.07499988, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 1908\n",
+ "Discriminator Loss: tf.Tensor(1.9390366, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.06959926, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 1909\n",
+ "Discriminator Loss: tf.Tensor(1.9043834, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.031219294, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 1910\n",
+ "Discriminator Loss: tf.Tensor(1.9322472, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.03323726, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 1911\n",
+ "Discriminator Loss: tf.Tensor(1.8963794, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.035453033, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 1912\n",
+ "Discriminator Loss: tf.Tensor(1.9172103, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.053985495, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 1913\n",
+ "Discriminator Loss: tf.Tensor(1.810632, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.09891308, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 1914\n",
+ "Discriminator Loss: tf.Tensor(1.9243543, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.029977232, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 1915\n",
+ "Discriminator Loss: tf.Tensor(1.8227882, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.1770734, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 1916\n",
+ "Discriminator Loss: tf.Tensor(1.9215691, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.037988737, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 1917\n",
+ "Discriminator Loss: tf.Tensor(1.7505677, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.19764148, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 1918\n",
+ "Discriminator Loss: tf.Tensor(1.8331581, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.26611266, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 1919\n",
+ "Discriminator Loss: tf.Tensor(1.8443643, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.40826225, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 1920\n",
+ "Discriminator Loss: tf.Tensor(1.9155722, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.05085309, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 1921\n",
+ "Discriminator Loss: tf.Tensor(1.7740375, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.17607023, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 1922\n",
+ "Discriminator Loss: tf.Tensor(1.7279245, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.6108797, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 1923\n",
+ "Discriminator Loss: tf.Tensor(1.728522, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.46151042, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 1924\n",
+ "Discriminator Loss: tf.Tensor(1.6263279, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.53595567, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 1925\n",
+ "Discriminator Loss: tf.Tensor(2.8151612, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.825727, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 1926\n",
+ "Discriminator Loss: tf.Tensor(1.9334791, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.4646879, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 1927\n",
+ "Discriminator Loss: tf.Tensor(1.9034554, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.44155264, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 1928\n",
+ "Discriminator Loss: tf.Tensor(1.90269, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.46952102, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 1929\n",
+ "Discriminator Loss: tf.Tensor(1.9103589, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.50523037, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 1930\n",
+ "Discriminator Loss: tf.Tensor(1.8955941, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.5179252, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 1931\n",
+ "Discriminator Loss: tf.Tensor(1.8934046, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.5333591, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 1932\n",
+ "Discriminator Loss: tf.Tensor(1.8425106, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.510273, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 1933\n",
+ "Discriminator Loss: tf.Tensor(1.8338659, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.55543494, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 1934\n",
+ "Discriminator Loss: tf.Tensor(1.7301755, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.43109044, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 1935\n",
+ "Discriminator Loss: tf.Tensor(1.7731657, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.6169321, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 1936\n",
+ "Discriminator Loss: tf.Tensor(1.7386583, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.22598572, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 1937\n",
+ "Discriminator Loss: tf.Tensor(1.8294823, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.8192856, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 1938\n",
+ "Discriminator Loss: tf.Tensor(1.7597839, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.24968563, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 1939\n",
+ "Discriminator Loss: tf.Tensor(1.7405287, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.16391808, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 1940\n",
+ "Discriminator Loss: tf.Tensor(1.6228338, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.22477227, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 1941\n",
+ "Discriminator Loss: tf.Tensor(1.3488734, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.5221583, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 1942\n",
+ "Discriminator Loss: tf.Tensor(0.8896291, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.8355005, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 1943\n",
+ "Discriminator Loss: tf.Tensor(1.2873107, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.3945286, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 1944\n",
+ "Discriminator Loss: tf.Tensor(2.2717402, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-1.2696937, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 1945\n",
+ "Discriminator Loss: tf.Tensor(1.8376855, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.22010083, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 1946\n",
+ "Discriminator Loss: tf.Tensor(1.6733726, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.081796564, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 1947\n",
+ "Discriminator Loss: tf.Tensor(1.178175, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.62421125, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 1948\n",
+ "Discriminator Loss: tf.Tensor(1.4072008, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.27196583, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 1949\n",
+ "Discriminator Loss: tf.Tensor(2.1913047, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(4.866306, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 1950\n",
+ "Discriminator Loss: tf.Tensor(1.4663651, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.43152222, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 1951\n",
+ "Discriminator Loss: tf.Tensor(1.5609237, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.5545117, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 1952\n",
+ "Discriminator Loss: tf.Tensor(1.1322982, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.5773305, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 1953\n",
+ "Discriminator Loss: tf.Tensor(1.1443298, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.3739845, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 1954\n",
+ "Discriminator Loss: tf.Tensor(1.1230166, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.4396336, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 1955\n",
+ "Discriminator Loss: tf.Tensor(1.3862038, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.38435698, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 1956\n",
+ "Discriminator Loss: tf.Tensor(1.0545037, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.40351534, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 1957\n",
+ "Discriminator Loss: tf.Tensor(1.1325111, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.0903952, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 1958\n",
+ "Discriminator Loss: tf.Tensor(1.8293324, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.8278535, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 1959\n",
+ "Discriminator Loss: tf.Tensor(1.325856, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.28400046, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 1960\n",
+ "Discriminator Loss: tf.Tensor(0.6672252, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.1530384, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 1961\n",
+ "Discriminator Loss: tf.Tensor(0.02859247, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.218737, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 1962\n",
+ "Discriminator Loss: tf.Tensor(0.99037284, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.15539213, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 1963\n",
+ "Discriminator Loss: tf.Tensor(8.78991, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(8.60071, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 1964\n",
+ "Discriminator Loss: tf.Tensor(1.4241167, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.22334199, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 1965\n",
+ "Discriminator Loss: tf.Tensor(1.1004463, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.19433284, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 1966\n",
+ "Discriminator Loss: tf.Tensor(1.3926656, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.27669787, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 1967\n",
+ "Discriminator Loss: tf.Tensor(2.0711823, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.39086354, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 1968\n",
+ "Discriminator Loss: tf.Tensor(1.5556966, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.09420369, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 1969\n",
+ "Discriminator Loss: tf.Tensor(1.6423277, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.037601393, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 1970\n",
+ "Discriminator Loss: tf.Tensor(1.4925625, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.05700312, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 1971\n",
+ "Discriminator Loss: tf.Tensor(1.0210164, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.4749988, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 1972\n",
+ "Discriminator Loss: tf.Tensor(1.1600296, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.007486423, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 1973\n",
+ "Discriminator Loss: tf.Tensor(2.2853668, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.6455871, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 1974\n",
+ "Discriminator Loss: tf.Tensor(1.6494021, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.19566941, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 1975\n",
+ "Discriminator Loss: tf.Tensor(1.5018214, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.07558421, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 1976\n",
+ "Discriminator Loss: tf.Tensor(1.2081861, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.37317336, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 1977\n",
+ "Discriminator Loss: tf.Tensor(1.0753787, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.009009517, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 1978\n",
+ "Discriminator Loss: tf.Tensor(1.3409889, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.2030782, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 1979\n",
+ "Discriminator Loss: tf.Tensor(1.5453305, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.51822966, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 1980\n",
+ "Discriminator Loss: tf.Tensor(1.5366702, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.56061655, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 1981\n",
+ "Discriminator Loss: tf.Tensor(1.2668178, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.3403592, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 1982\n",
+ "Discriminator Loss: tf.Tensor(0.76180947, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.0485296, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 1983\n",
+ "Discriminator Loss: tf.Tensor(1.8937265, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.88788885, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 1984\n",
+ "Discriminator Loss: tf.Tensor(1.249121, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.95327336, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 1985\n",
+ "Discriminator Loss: tf.Tensor(1.0931841, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.16361238, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 1986\n",
+ "Discriminator Loss: tf.Tensor(1.7456685, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.4466143, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 1987\n",
+ "Discriminator Loss: tf.Tensor(1.8631943, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.8594405, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 1988\n",
+ "Discriminator Loss: tf.Tensor(1.6198786, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.064887114, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 1989\n",
+ "Discriminator Loss: tf.Tensor(1.3545492, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.31226435, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 1990\n",
+ "Discriminator Loss: tf.Tensor(1.1529105, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.4049252, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 1991\n",
+ "Discriminator Loss: tf.Tensor(0.7060787, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.3372027, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 1992\n",
+ "Discriminator Loss: tf.Tensor(2.095816, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-1.0916934, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 1993\n",
+ "Discriminator Loss: tf.Tensor(1.3056331, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.1658421, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 1994\n",
+ "Discriminator Loss: tf.Tensor(1.1247299, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.5364359, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 1995\n",
+ "Discriminator Loss: tf.Tensor(0.56954396, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.91498476, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 1996\n",
+ "Discriminator Loss: tf.Tensor(0.72566533, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.8646531, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 1997\n",
+ "Discriminator Loss: tf.Tensor(0.7564196, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.2813717, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 1998\n",
+ "Discriminator Loss: tf.Tensor(2.2087054, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-1.1947432, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 1999\n",
+ "Discriminator Loss: tf.Tensor(1.6522181, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.08731016, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 2000\n",
+ "Discriminator Loss: tf.Tensor(1.9188399, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.25005925, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 2001\n",
+ "Discriminator Loss: tf.Tensor(1.4546902, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.10659271, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 2002\n",
+ "Discriminator Loss: tf.Tensor(1.5456266, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.55218047, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 2003\n",
+ "Discriminator Loss: tf.Tensor(1.2844989, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.48387435, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 2004\n",
+ "Discriminator Loss: tf.Tensor(1.6307666, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.517379, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 2005\n",
+ "Discriminator Loss: tf.Tensor(1.5985099, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.3695675, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 2006\n",
+ "Discriminator Loss: tf.Tensor(0.95606863, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.39560676, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 2007\n",
+ "Discriminator Loss: tf.Tensor(1.4621594, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.3754625, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 2008\n",
+ "Discriminator Loss: tf.Tensor(2.1014383, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-1.095142, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 2009\n",
+ "Discriminator Loss: tf.Tensor(1.4676219, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.070206106, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 2010\n",
+ "Discriminator Loss: tf.Tensor(1.3684423, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.1193024, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 2011\n",
+ "Discriminator Loss: tf.Tensor(1.8926164, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.3635632, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 2012\n",
+ "Discriminator Loss: tf.Tensor(1.7795248, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.77583504, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 2013\n",
+ "Discriminator Loss: tf.Tensor(1.7521238, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.2601789, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 2014\n",
+ "Discriminator Loss: tf.Tensor(1.5812999, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.15165102, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 2015\n",
+ "Discriminator Loss: tf.Tensor(1.2252401, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.21109746, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 2016\n",
+ "Discriminator Loss: tf.Tensor(0.73916525, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.55147916, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 2017\n",
+ "Discriminator Loss: tf.Tensor(1.7801926, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.0370185, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 2018\n",
+ "Discriminator Loss: tf.Tensor(1.6443139, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.6396796, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 2019\n",
+ "Discriminator Loss: tf.Tensor(1.4957346, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.019815864, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 2020\n",
+ "Discriminator Loss: tf.Tensor(1.1684939, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.1549835, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 2021\n",
+ "Discriminator Loss: tf.Tensor(0.781253, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.6761443, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 2022\n",
+ "Discriminator Loss: tf.Tensor(1.4415244, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.8123626, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 2023\n",
+ "Discriminator Loss: tf.Tensor(2.170933, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-1.1662341, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 2024\n",
+ "Discriminator Loss: tf.Tensor(1.8036147, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.45677447, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 2025\n",
+ "Discriminator Loss: tf.Tensor(1.7256486, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.319363, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 2026\n",
+ "Discriminator Loss: tf.Tensor(1.4723736, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.07529884, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 2027\n",
+ "Discriminator Loss: tf.Tensor(0.6789048, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.82201916, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 2028\n",
+ "Discriminator Loss: tf.Tensor(0.65549546, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.3839971, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 2029\n",
+ "Discriminator Loss: tf.Tensor(3.2081766, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(8.620574, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 2030\n",
+ "Discriminator Loss: tf.Tensor(0.89504176, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.32855663, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 2031\n",
+ "Discriminator Loss: tf.Tensor(0.48091042, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.6309604, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 2032\n",
+ "Discriminator Loss: tf.Tensor(0.5100198, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.9997897, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 2033\n",
+ "Discriminator Loss: tf.Tensor(2.2714572, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.1029333, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 2034\n",
+ "Discriminator Loss: tf.Tensor(1.2728156, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.2561061, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 2035\n",
+ "Discriminator Loss: tf.Tensor(1.2917573, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.960398, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 2036\n",
+ "Discriminator Loss: tf.Tensor(1.2040352, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.03011415, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 2037\n",
+ "Discriminator Loss: tf.Tensor(0.6538271, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.7434573, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 2038\n",
+ "Discriminator Loss: tf.Tensor(0.28341514, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.6124815, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 2039\n",
+ "Discriminator Loss: tf.Tensor(218.28293, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.28982112, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 2040\n",
+ "Discriminator Loss: tf.Tensor(67.45292, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.48068437, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 2041\n",
+ "Discriminator Loss: tf.Tensor(8.985737, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.18288188, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 2042\n",
+ "Discriminator Loss: tf.Tensor(3.32936, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.06772003, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 2043\n",
+ "Discriminator Loss: tf.Tensor(2.6437657, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.036184918, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 2044\n",
+ "Discriminator Loss: tf.Tensor(2.4940763, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.024648244, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 2045\n",
+ "Discriminator Loss: tf.Tensor(2.3347158, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.026953757, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 2046\n",
+ "Discriminator Loss: tf.Tensor(2.2126513, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.0055629318, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 2047\n",
+ "Discriminator Loss: tf.Tensor(2.15668, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.01715319, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 2048\n",
+ "Discriminator Loss: tf.Tensor(2.1208532, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.031704206, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 2049\n",
+ "Discriminator Loss: tf.Tensor(2.0952694, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.036879413, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 2050\n",
+ "Discriminator Loss: tf.Tensor(2.0732274, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.036270615, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 2051\n",
+ "Discriminator Loss: tf.Tensor(2.0473878, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.05287953, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 2052\n",
+ "Discriminator Loss: tf.Tensor(2.042218, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.055383313, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 2053\n",
+ "Discriminator Loss: tf.Tensor(2.0315924, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.059017647, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 2054\n",
+ "Discriminator Loss: tf.Tensor(2.0255942, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.06645289, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 2055\n",
+ "Discriminator Loss: tf.Tensor(2.0092187, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.06263261, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 2056\n",
+ "Discriminator Loss: tf.Tensor(2.0082607, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.066345185, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 2057\n",
+ "Discriminator Loss: tf.Tensor(1.9891593, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.048228767, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 2058\n",
+ "Discriminator Loss: tf.Tensor(1.9929904, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.05771314, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 2059\n",
+ "Discriminator Loss: tf.Tensor(1.9962037, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.0667603, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 2060\n",
+ "Discriminator Loss: tf.Tensor(1.9860983, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.05830641, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 2061\n",
+ "Discriminator Loss: tf.Tensor(1.9834138, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.04827706, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 2062\n",
+ "Discriminator Loss: tf.Tensor(1.9824383, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.04813041, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 2063\n",
+ "Discriminator Loss: tf.Tensor(1.9794524, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.048735898, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 2064\n",
+ "Discriminator Loss: tf.Tensor(1.9826621, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.058563456, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 2065\n",
+ "Discriminator Loss: tf.Tensor(1.9777393, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.050942834, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 2066\n",
+ "Discriminator Loss: tf.Tensor(1.9706076, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.050384108, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 2067\n",
+ "Discriminator Loss: tf.Tensor(1.97128, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.051246166, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 2068\n",
+ "Discriminator Loss: tf.Tensor(1.9894221, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.062236737, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 2069\n",
+ "Discriminator Loss: tf.Tensor(1.9619933, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.038897287, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 2070\n",
+ "Discriminator Loss: tf.Tensor(1.9688526, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.039459784, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 2071\n",
+ "Discriminator Loss: tf.Tensor(1.9706591, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.043935094, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 2072\n",
+ "Discriminator Loss: tf.Tensor(1.9590625, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.015351315, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 2073\n",
+ "Discriminator Loss: tf.Tensor(1.9534901, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.02313405, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 2074\n",
+ "Discriminator Loss: tf.Tensor(1.9506742, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.0035812128, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 2075\n",
+ "Discriminator Loss: tf.Tensor(1.9541862, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.008704729, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 2076\n",
+ "Discriminator Loss: tf.Tensor(1.9568087, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.021472147, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 2077\n",
+ "Discriminator Loss: tf.Tensor(1.9424155, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.0059737884, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 2078\n",
+ "Discriminator Loss: tf.Tensor(1.9396064, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.0021000877, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 2079\n",
+ "Discriminator Loss: tf.Tensor(1.8982255, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.04714845, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 2080\n",
+ "Discriminator Loss: tf.Tensor(1.875146, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.076280735, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 2081\n",
+ "Discriminator Loss: tf.Tensor(1.8546141, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.08876505, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 2082\n",
+ "Discriminator Loss: tf.Tensor(1.8141085, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.10628992, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 2083\n",
+ "Discriminator Loss: tf.Tensor(1.7631844, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.21301027, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 2084\n",
+ "Discriminator Loss: tf.Tensor(1.6772178, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.26540437, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 2085\n",
+ "Discriminator Loss: tf.Tensor(1.7761581, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.23950987, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 2086\n",
+ "Discriminator Loss: tf.Tensor(1.511585, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.5048725, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 2087\n",
+ "Discriminator Loss: tf.Tensor(1.8111339, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.28185946, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 2088\n",
+ "Discriminator Loss: tf.Tensor(1.4597535, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.7160549, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 2089\n",
+ "Discriminator Loss: tf.Tensor(1.8806816, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.4086775, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 2090\n",
+ "Discriminator Loss: tf.Tensor(1.4351372, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.5973499, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 2091\n",
+ "Discriminator Loss: tf.Tensor(1.6772145, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.5981229, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 2092\n",
+ "Discriminator Loss: tf.Tensor(1.938467, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.7166301, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 2093\n",
+ "Discriminator Loss: tf.Tensor(1.8785691, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.51246804, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 2094\n",
+ "Discriminator Loss: tf.Tensor(1.8091506, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.36187473, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 2095\n",
+ "Discriminator Loss: tf.Tensor(1.8758253, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.40785718, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 2096\n",
+ "Discriminator Loss: tf.Tensor(1.75106, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.2580463, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 2097\n",
+ "Discriminator Loss: tf.Tensor(1.7747045, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.2242686, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 2098\n",
+ "Discriminator Loss: tf.Tensor(1.6524508, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.0755694, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 2099\n",
+ "Discriminator Loss: tf.Tensor(1.553228, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.019143177, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 2100\n",
+ "Discriminator Loss: tf.Tensor(1.2784399, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.34772983, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 2101\n",
+ "Discriminator Loss: tf.Tensor(1.1588995, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.19615419, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 2102\n",
+ "Discriminator Loss: tf.Tensor(3.2409146, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.9079256, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 2103\n",
+ "Discriminator Loss: tf.Tensor(1.8250774, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.8179986, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 2104\n",
+ "Discriminator Loss: tf.Tensor(1.4445082, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.18986748, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 2105\n",
+ "Discriminator Loss: tf.Tensor(1.4431939, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.1458468, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 2106\n",
+ "Discriminator Loss: tf.Tensor(1.4225378, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.34233665, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 2107\n",
+ "Discriminator Loss: tf.Tensor(1.6885058, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.56951755, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 2108\n",
+ "Discriminator Loss: tf.Tensor(1.5908935, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.026307285, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 2109\n",
+ "Discriminator Loss: tf.Tensor(1.3094755, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.10711684, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 2110\n",
+ "Discriminator Loss: tf.Tensor(0.8502057, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.37195274, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 2111\n",
+ "Discriminator Loss: tf.Tensor(0.8514556, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.38826838, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 2112\n",
+ "Discriminator Loss: tf.Tensor(2.7740016, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.92937, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 2113\n",
+ "Discriminator Loss: tf.Tensor(1.7044151, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.08950621, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 2114\n",
+ "Discriminator Loss: tf.Tensor(1.4165821, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.30081663, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 2115\n",
+ "Discriminator Loss: tf.Tensor(1.1606634, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.0065815076, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 2116\n",
+ "Discriminator Loss: tf.Tensor(1.5493007, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.7289744, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 2117\n",
+ "Discriminator Loss: tf.Tensor(1.4961865, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.48296642, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 2118\n",
+ "Discriminator Loss: tf.Tensor(1.5395159, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.9819484, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 2119\n",
+ "Discriminator Loss: tf.Tensor(1.5477535, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.030922582, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 2120\n",
+ "Discriminator Loss: tf.Tensor(0.8728568, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.9595292, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 2121\n",
+ "Discriminator Loss: tf.Tensor(0.90362155, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.12340679, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 2122\n",
+ "Discriminator Loss: tf.Tensor(2.9105828, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(3.8123643, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 2123\n",
+ "Discriminator Loss: tf.Tensor(1.6149504, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.61272556, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 2124\n",
+ "Discriminator Loss: tf.Tensor(1.1130047, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.39522967, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 2125\n",
+ "Discriminator Loss: tf.Tensor(1.1068828, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.24054658, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 2126\n",
+ "Discriminator Loss: tf.Tensor(0.646204, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.3007994, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 2127\n",
+ "Discriminator Loss: tf.Tensor(1.8880868, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.88508445, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 2128\n",
+ "Discriminator Loss: tf.Tensor(0.5260479, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.96315426, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 2129\n",
+ "Discriminator Loss: tf.Tensor(0.3119045, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.70627505, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 2130\n",
+ "Discriminator Loss: tf.Tensor(4.435294, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(3.649726, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 2131\n",
+ "Discriminator Loss: tf.Tensor(1.5040565, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.151648, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 2132\n",
+ "Discriminator Loss: tf.Tensor(1.5727323, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.24746524, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 2133\n",
+ "Discriminator Loss: tf.Tensor(1.1293392, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.12685935, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 2134\n",
+ "Discriminator Loss: tf.Tensor(0.7243507, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.5376952, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 2135\n",
+ "Discriminator Loss: tf.Tensor(1.9895468, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.9361823, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 2136\n",
+ "Discriminator Loss: tf.Tensor(2.5763566, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.5103337, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 2137\n",
+ "Discriminator Loss: tf.Tensor(1.2567518, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.17583565, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 2138\n",
+ "Discriminator Loss: tf.Tensor(1.171462, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.011657514, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 2139\n",
+ "Discriminator Loss: tf.Tensor(1.0188215, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.8133848, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 2140\n",
+ "Discriminator Loss: tf.Tensor(1.4462473, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.39149404, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 2141\n",
+ "Discriminator Loss: tf.Tensor(2.1454206, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.5787462, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 2142\n",
+ "Discriminator Loss: tf.Tensor(1.6242503, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.3874074, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 2143\n",
+ "Discriminator Loss: tf.Tensor(1.3972611, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.18096708, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 2144\n",
+ "Discriminator Loss: tf.Tensor(0.8257214, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.43977514, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 2145\n",
+ "Discriminator Loss: tf.Tensor(0.9285501, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.40949798, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 2146\n",
+ "Discriminator Loss: tf.Tensor(1.7736642, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.1379893, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 2147\n",
+ "Discriminator Loss: tf.Tensor(1.3398424, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.17316519, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 2148\n",
+ "Discriminator Loss: tf.Tensor(0.8657372, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.6195969, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 2149\n",
+ "Discriminator Loss: tf.Tensor(0.5295916, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.3756914, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 2150\n",
+ "Discriminator Loss: tf.Tensor(237.88455, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.56853986, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 2151\n",
+ "Discriminator Loss: tf.Tensor(37.38893, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.035571545, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 2152\n",
+ "Discriminator Loss: tf.Tensor(5.2463894, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.22043116, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 2153\n",
+ "Discriminator Loss: tf.Tensor(2.6373594, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.22095887, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 2154\n",
+ "Discriminator Loss: tf.Tensor(2.399888, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.24480037, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 2155\n",
+ "Discriminator Loss: tf.Tensor(2.3066814, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.25374997, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 2156\n",
+ "Discriminator Loss: tf.Tensor(2.2352898, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.25766012, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 2157\n",
+ "Discriminator Loss: tf.Tensor(2.1860788, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.26267204, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 2158\n",
+ "Discriminator Loss: tf.Tensor(2.1329532, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.25448295, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 2159\n",
+ "Discriminator Loss: tf.Tensor(2.128054, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.2494029, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 2160\n",
+ "Discriminator Loss: tf.Tensor(2.1278431, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.24213485, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 2161\n",
+ "Discriminator Loss: tf.Tensor(2.0684612, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.23423393, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 2162\n",
+ "Discriminator Loss: tf.Tensor(2.0686386, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.23103058, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 2163\n",
+ "Discriminator Loss: tf.Tensor(2.053073, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.23226114, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 2164\n",
+ "Discriminator Loss: tf.Tensor(2.0433624, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.22683634, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 2165\n",
+ "Discriminator Loss: tf.Tensor(2.0349078, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.22269642, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 2166\n",
+ "Discriminator Loss: tf.Tensor(2.0279093, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.21511519, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 2167\n",
+ "Discriminator Loss: tf.Tensor(2.0190027, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.21536571, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 2168\n",
+ "Discriminator Loss: tf.Tensor(2.0181, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.21368116, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 2169\n",
+ "Discriminator Loss: tf.Tensor(2.0209074, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.20372654, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 2170\n",
+ "Discriminator Loss: tf.Tensor(2.0287797, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.20581014, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 2171\n",
+ "Discriminator Loss: tf.Tensor(2.0206006, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.2086044, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 2172\n",
+ "Discriminator Loss: tf.Tensor(1.9974287, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.19374658, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 2173\n",
+ "Discriminator Loss: tf.Tensor(2.0030055, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.19900765, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 2174\n",
+ "Discriminator Loss: tf.Tensor(2.0014145, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.19598846, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 2175\n",
+ "Discriminator Loss: tf.Tensor(1.9956665, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.19447426, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 2176\n",
+ "Discriminator Loss: tf.Tensor(1.9989724, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.19675554, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 2177\n",
+ "Discriminator Loss: tf.Tensor(1.9958346, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.19273303, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 2178\n",
+ "Discriminator Loss: tf.Tensor(1.9903086, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.18711866, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 2179\n",
+ "Discriminator Loss: tf.Tensor(1.983649, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.18240921, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 2180\n",
+ "Discriminator Loss: tf.Tensor(1.9825135, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.18026428, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 2181\n",
+ "Discriminator Loss: tf.Tensor(1.9802098, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.180017, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 2182\n",
+ "Discriminator Loss: tf.Tensor(1.979831, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.18175633, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 2183\n",
+ "Discriminator Loss: tf.Tensor(1.9685397, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.1720169, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 2184\n",
+ "Discriminator Loss: tf.Tensor(1.9742378, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.18103737, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 2185\n",
+ "Discriminator Loss: tf.Tensor(1.963441, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.17119579, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 2186\n",
+ "Discriminator Loss: tf.Tensor(1.9644163, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.17745383, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 2187\n",
+ "Discriminator Loss: tf.Tensor(1.9574393, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.17077018, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 2188\n",
+ "Discriminator Loss: tf.Tensor(1.9303147, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.15592507, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 2189\n",
+ "Discriminator Loss: tf.Tensor(1.9163296, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.15394297, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 2190\n",
+ "Discriminator Loss: tf.Tensor(1.8910129, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.14470847, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 2191\n",
+ "Discriminator Loss: tf.Tensor(1.8327143, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.07982236, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 2192\n",
+ "Discriminator Loss: tf.Tensor(1.8828039, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.18746762, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 2193\n",
+ "Discriminator Loss: tf.Tensor(1.7883413, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.007816552, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 2194\n",
+ "Discriminator Loss: tf.Tensor(1.9183595, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.23598056, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 2195\n",
+ "Discriminator Loss: tf.Tensor(1.8150512, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.13289702, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 2196\n",
+ "Discriminator Loss: tf.Tensor(1.7641667, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.101644896, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 2197\n",
+ "Discriminator Loss: tf.Tensor(1.6613332, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.018737365, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 2198\n",
+ "Discriminator Loss: tf.Tensor(1.6909212, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.1238577, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 2199\n",
+ "Discriminator Loss: tf.Tensor(2.1795914, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.2623523, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 2200\n",
+ "Discriminator Loss: tf.Tensor(1.9141169, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.124515675, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 2201\n",
+ "Discriminator Loss: tf.Tensor(1.6797762, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.06613299, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 2202\n",
+ "Discriminator Loss: tf.Tensor(1.703445, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.036056086, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 2203\n",
+ "Discriminator Loss: tf.Tensor(1.5310655, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.36776376, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 2204\n",
+ "Discriminator Loss: tf.Tensor(1.5488158, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.29445064, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 2205\n",
+ "Discriminator Loss: tf.Tensor(1.0232263, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.76342267, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 2206\n",
+ "Discriminator Loss: tf.Tensor(1.564723, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.5945541, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 2207\n",
+ "Discriminator Loss: tf.Tensor(2.4256296, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-1.4192191, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 2208\n",
+ "Discriminator Loss: tf.Tensor(1.931595, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.37449637, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 2209\n",
+ "Discriminator Loss: tf.Tensor(1.9451865, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.40064946, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 2210\n",
+ "Discriminator Loss: tf.Tensor(1.9283371, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.40510044, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 2211\n",
+ "Discriminator Loss: tf.Tensor(1.9069791, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.39002395, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 2212\n",
+ "Discriminator Loss: tf.Tensor(1.875579, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.35429955, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 2213\n",
+ "Discriminator Loss: tf.Tensor(1.826068, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.29296842, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 2214\n",
+ "Discriminator Loss: tf.Tensor(1.7513822, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.22815947, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 2215\n",
+ "Discriminator Loss: tf.Tensor(1.6878592, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.15780458, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 2216\n",
+ "Discriminator Loss: tf.Tensor(1.6457604, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.09105893, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 2217\n",
+ "Discriminator Loss: tf.Tensor(1.631738, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.00244328, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 2218\n",
+ "Discriminator Loss: tf.Tensor(1.2132251, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.294678, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 2219\n",
+ "Discriminator Loss: tf.Tensor(0.9855249, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.2948751, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 2220\n",
+ "Discriminator Loss: tf.Tensor(1.9905691, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.9872106, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 2221\n",
+ "Discriminator Loss: tf.Tensor(1.7273126, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.18132551, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 2222\n",
+ "Discriminator Loss: tf.Tensor(1.6160419, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.06532323, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 2223\n",
+ "Discriminator Loss: tf.Tensor(1.2413112, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.72851807, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 2224\n",
+ "Discriminator Loss: tf.Tensor(2.0125606, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.21476273, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 2225\n",
+ "Discriminator Loss: tf.Tensor(1.2102616, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.2467498, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 2226\n",
+ "Discriminator Loss: tf.Tensor(1.7590522, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.75557524, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 2227\n",
+ "Discriminator Loss: tf.Tensor(1.828382, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.1897495, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 2228\n",
+ "Discriminator Loss: tf.Tensor(1.8121742, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.25257066, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 2229\n",
+ "Discriminator Loss: tf.Tensor(1.6498055, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.08347992, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 2230\n",
+ "Discriminator Loss: tf.Tensor(0.82153153, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.67295915, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 2231\n",
+ "Discriminator Loss: tf.Tensor(2.4297285, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.9005877, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 2232\n",
+ "Discriminator Loss: tf.Tensor(1.6062458, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.5999829, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 2233\n",
+ "Discriminator Loss: tf.Tensor(1.6296725, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.022841116, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 2234\n",
+ "Discriminator Loss: tf.Tensor(1.5348523, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.08980454, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 2235\n",
+ "Discriminator Loss: tf.Tensor(1.2828122, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.4064641, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 2236\n",
+ "Discriminator Loss: tf.Tensor(1.0969574, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.46482745, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 2237\n",
+ "Discriminator Loss: tf.Tensor(4.741583, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(4.044192, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 2238\n",
+ "Discriminator Loss: tf.Tensor(1.718615, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.61600834, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 2239\n",
+ "Discriminator Loss: tf.Tensor(1.814296, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.77227306, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 2240\n",
+ "Discriminator Loss: tf.Tensor(1.8063245, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.64969254, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 2241\n",
+ "Discriminator Loss: tf.Tensor(1.7139145, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.5740723, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 2242\n",
+ "Discriminator Loss: tf.Tensor(1.5303344, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.3937976, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 2243\n",
+ "Discriminator Loss: tf.Tensor(0.99141914, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.09068453, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 2244\n",
+ "Discriminator Loss: tf.Tensor(1.0011992, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.076877035, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 2245\n",
+ "Discriminator Loss: tf.Tensor(2.5019264, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.742159, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 2246\n",
+ "Discriminator Loss: tf.Tensor(1.4781203, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.018105442, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 2247\n",
+ "Discriminator Loss: tf.Tensor(1.0500939, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.10549799, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 2248\n",
+ "Discriminator Loss: tf.Tensor(0.8453129, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.37793517, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 2249\n",
+ "Discriminator Loss: tf.Tensor(1.3168194, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.38156378, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 2250\n",
+ "Discriminator Loss: tf.Tensor(0.30596226, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.85807633, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 2251\n",
+ "Discriminator Loss: tf.Tensor(2.5393648, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.1642172, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 2252\n",
+ "Discriminator Loss: tf.Tensor(1.200003, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.18003322, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 2253\n",
+ "Discriminator Loss: tf.Tensor(1.3358538, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.5412341, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 2254\n",
+ "Discriminator Loss: tf.Tensor(1.0131141, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.4271032, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 2255\n",
+ "Discriminator Loss: tf.Tensor(0.79675055, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.81434184, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 2256\n",
+ "Discriminator Loss: tf.Tensor(0.67500913, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.48189798, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 2257\n",
+ "Discriminator Loss: tf.Tensor(2.455604, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.594928, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 2258\n",
+ "Discriminator Loss: tf.Tensor(0.8499423, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.15502903, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 2259\n",
+ "Discriminator Loss: tf.Tensor(0.374419, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.9162623, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 2260\n",
+ "Discriminator Loss: tf.Tensor(0.5826161, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.7215846, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 2261\n",
+ "Discriminator Loss: tf.Tensor(4.013108, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(4.3170757, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 2262\n",
+ "Discriminator Loss: tf.Tensor(1.0248352, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.2408465, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 2263\n",
+ "Discriminator Loss: tf.Tensor(1.0883158, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.00260368, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 2264\n",
+ "Discriminator Loss: tf.Tensor(1.6450334, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.3600377, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 2265\n",
+ "Discriminator Loss: tf.Tensor(1.2556424, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.06616792, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 2266\n",
+ "Discriminator Loss: tf.Tensor(1.1341708, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.40470195, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 2267\n",
+ "Discriminator Loss: tf.Tensor(1.2173948, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.16833209, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 2268\n",
+ "Discriminator Loss: tf.Tensor(2.053673, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.393271, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 2269\n",
+ "Discriminator Loss: tf.Tensor(0.95202565, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.50729305, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 2270\n",
+ "Discriminator Loss: tf.Tensor(0.6406329, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.4004767, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 2271\n",
+ "Discriminator Loss: tf.Tensor(1.202486, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.8134536, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 2272\n",
+ "Discriminator Loss: tf.Tensor(0.6828236, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.3880732, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 2273\n",
+ "Discriminator Loss: tf.Tensor(1.6142335, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.7195997, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 2274\n",
+ "Discriminator Loss: tf.Tensor(0.9353512, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.19262607, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 2275\n",
+ "Discriminator Loss: tf.Tensor(1.0628535, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.5902174, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 2276\n",
+ "Discriminator Loss: tf.Tensor(1.3968861, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.1615583, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 2277\n",
+ "Discriminator Loss: tf.Tensor(1.8087599, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.7896264, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 2278\n",
+ "Discriminator Loss: tf.Tensor(1.6586018, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.28121305, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 2279\n",
+ "Discriminator Loss: tf.Tensor(1.5012969, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.008392661, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 2280\n",
+ "Discriminator Loss: tf.Tensor(0.9940722, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.5560619, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 2281\n",
+ "Discriminator Loss: tf.Tensor(0.2732144, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.8794796, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 2282\n",
+ "Discriminator Loss: tf.Tensor(4.0713105, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(4.4109163, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 2283\n",
+ "Discriminator Loss: tf.Tensor(1.3742374, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.0063672117, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 2284\n",
+ "Discriminator Loss: tf.Tensor(1.0415562, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.30387768, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 2285\n",
+ "Discriminator Loss: tf.Tensor(1.2565333, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.048523206, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 2286\n",
+ "Discriminator Loss: tf.Tensor(1.3658525, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.4496783, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 2287\n",
+ "Discriminator Loss: tf.Tensor(0.9898879, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.38138828, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 2288\n",
+ "Discriminator Loss: tf.Tensor(1.1081479, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.13592301, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 2289\n",
+ "Discriminator Loss: tf.Tensor(1.9175284, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.3653868, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 2290\n",
+ "Discriminator Loss: tf.Tensor(1.939205, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.8849285, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 2291\n",
+ "Discriminator Loss: tf.Tensor(1.6287345, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.032005414, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 2292\n",
+ "Discriminator Loss: tf.Tensor(1.5092453, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.26148817, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 2293\n",
+ "Discriminator Loss: tf.Tensor(1.3454318, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.16026545, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 2294\n",
+ "Discriminator Loss: tf.Tensor(2.6658027, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.6521928, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 2295\n",
+ "Discriminator Loss: tf.Tensor(1.7005854, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.16050763, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 2296\n",
+ "Discriminator Loss: tf.Tensor(1.7657758, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.22462393, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 2297\n",
+ "Discriminator Loss: tf.Tensor(1.5582563, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.25895414, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 2298\n",
+ "Discriminator Loss: tf.Tensor(1.4818316, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.43042064, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 2299\n",
+ "Discriminator Loss: tf.Tensor(1.1489657, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.96577686, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 2300\n",
+ "Discriminator Loss: tf.Tensor(1.6206774, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.55192894, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 2301\n",
+ "Discriminator Loss: tf.Tensor(1.121289, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.41229072, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 2302\n",
+ "Discriminator Loss: tf.Tensor(1.1189024, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.0703541, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 2303\n",
+ "Discriminator Loss: tf.Tensor(1.6510645, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.64124614, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 2304\n",
+ "Discriminator Loss: tf.Tensor(1.2085986, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.44444004, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 2305\n",
+ "Discriminator Loss: tf.Tensor(1.1165557, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.37304178, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 2306\n",
+ "Discriminator Loss: tf.Tensor(1.5365331, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.08722, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 2307\n",
+ "Discriminator Loss: tf.Tensor(1.8563385, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.85013247, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 2308\n",
+ "Discriminator Loss: tf.Tensor(1.6876047, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.045770526, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 2309\n",
+ "Discriminator Loss: tf.Tensor(1.5625489, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.07609644, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 2310\n",
+ "Discriminator Loss: tf.Tensor(1.1940496, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.3723788, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 2311\n",
+ "Discriminator Loss: tf.Tensor(1.0167247, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.17750883, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 2312\n",
+ "Discriminator Loss: tf.Tensor(2.491485, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(3.8694313, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 2313\n",
+ "Discriminator Loss: tf.Tensor(1.6635817, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.6576576, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 2314\n",
+ "Discriminator Loss: tf.Tensor(1.1963264, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.3641144, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 2315\n",
+ "Discriminator Loss: tf.Tensor(1.1656208, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.07391694, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 2316\n",
+ "Discriminator Loss: tf.Tensor(0.89439416, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.3656989, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 2317\n",
+ "Discriminator Loss: tf.Tensor(1.8112898, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.801722, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 2318\n",
+ "Discriminator Loss: tf.Tensor(0.9548206, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.0671128, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 2319\n",
+ "Discriminator Loss: tf.Tensor(1.2368196, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.22941403, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 2320\n",
+ "Discriminator Loss: tf.Tensor(1.4745017, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.9297509, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 2321\n",
+ "Discriminator Loss: tf.Tensor(1.0694734, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.1534351, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 2322\n",
+ "Discriminator Loss: tf.Tensor(0.6858463, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.9507313, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 2323\n",
+ "Discriminator Loss: tf.Tensor(0.3410407, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.75878936, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 2324\n",
+ "Discriminator Loss: tf.Tensor(2.421986, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(3.400008, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 2325\n",
+ "Discriminator Loss: tf.Tensor(0.6442019, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.44895062, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 2326\n",
+ "Discriminator Loss: tf.Tensor(1.2831665, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.2054717, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 2327\n",
+ "Discriminator Loss: tf.Tensor(1.8779684, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.1525154, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 2328\n",
+ "Discriminator Loss: tf.Tensor(0.9003052, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.15893237, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 2329\n",
+ "Discriminator Loss: tf.Tensor(0.1295346, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.2985896, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 2330\n",
+ "Discriminator Loss: tf.Tensor(2.0029454, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.9843886, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 2331\n",
+ "Discriminator Loss: tf.Tensor(2.5817091, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.5987297, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 2332\n",
+ "Discriminator Loss: tf.Tensor(0.7841353, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.4889466, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 2333\n",
+ "Discriminator Loss: tf.Tensor(0.21439686, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.8346755, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 2334\n",
+ "Discriminator Loss: tf.Tensor(1.9387928, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.52550906, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 2335\n",
+ "Discriminator Loss: tf.Tensor(0.60019284, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.0821935, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 2336\n",
+ "Discriminator Loss: tf.Tensor(1.2226782, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.20697773, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 2337\n",
+ "Discriminator Loss: tf.Tensor(1.4627941, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.83015275, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 2338\n",
+ "Discriminator Loss: tf.Tensor(1.540193, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.1267097, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 2339\n",
+ "Discriminator Loss: tf.Tensor(1.3088973, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.1071049, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 2340\n",
+ "Discriminator Loss: tf.Tensor(1.5364757, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.51798123, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 2341\n",
+ "Discriminator Loss: tf.Tensor(1.5643396, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.3446246, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 2342\n",
+ "Discriminator Loss: tf.Tensor(1.3456585, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.2146582, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 2343\n",
+ "Discriminator Loss: tf.Tensor(0.8414229, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.0175405, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 2344\n",
+ "Discriminator Loss: tf.Tensor(1.3732669, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.32550824, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 2345\n",
+ "Discriminator Loss: tf.Tensor(1.4199318, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.9370422, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 2346\n",
+ "Discriminator Loss: tf.Tensor(1.5383946, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.26391733, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 2347\n",
+ "Discriminator Loss: tf.Tensor(1.4078574, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.20991868, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 2348\n",
+ "Discriminator Loss: tf.Tensor(1.245278, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.35526028, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 2349\n",
+ "Discriminator Loss: tf.Tensor(1.194444, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.0888661, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 2350\n",
+ "Discriminator Loss: tf.Tensor(1.7524971, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.70582294, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 2351\n",
+ "Discriminator Loss: tf.Tensor(1.1690236, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.64494175, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 2352\n",
+ "Discriminator Loss: tf.Tensor(1.5942758, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.15342993, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 2353\n",
+ "Discriminator Loss: tf.Tensor(0.67634416, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.3558022, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 2354\n",
+ "Discriminator Loss: tf.Tensor(1.7022346, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.69622564, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 2355\n",
+ "Discriminator Loss: tf.Tensor(1.0590634, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.635633, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 2356\n",
+ "Discriminator Loss: tf.Tensor(1.0327201, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.090986095, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 2357\n",
+ "Discriminator Loss: tf.Tensor(4.1576233, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(3.7066028, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 2358\n",
+ "Discriminator Loss: tf.Tensor(0.9113823, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.12142002, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 2359\n",
+ "Discriminator Loss: tf.Tensor(1.5537252, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.38752058, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 2360\n",
+ "Discriminator Loss: tf.Tensor(1.5082918, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.107922204, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 2361\n",
+ "Discriminator Loss: tf.Tensor(0.9202689, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.30155745, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 2362\n",
+ "Discriminator Loss: tf.Tensor(1.1481452, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.4702314, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 2363\n",
+ "Discriminator Loss: tf.Tensor(1.2469534, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.24010782, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 2364\n",
+ "Discriminator Loss: tf.Tensor(0.75632685, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.43328753, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 2365\n",
+ "Discriminator Loss: tf.Tensor(1.0741823, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.1353225, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 2366\n",
+ "Discriminator Loss: tf.Tensor(1.1533426, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.13647564, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 2367\n",
+ "Discriminator Loss: tf.Tensor(0.7271739, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.8792071, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 2368\n",
+ "Discriminator Loss: tf.Tensor(0.7778029, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.44124067, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 2369\n",
+ "Discriminator Loss: tf.Tensor(5.257836, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(5.7302556, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 2370\n",
+ "Discriminator Loss: tf.Tensor(1.2897525, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.27648, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 2371\n",
+ "Discriminator Loss: tf.Tensor(1.0210575, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.06127273, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 2372\n",
+ "Discriminator Loss: tf.Tensor(1.206177, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.2535317, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 2373\n",
+ "Discriminator Loss: tf.Tensor(1.7605698, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.97354174, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 2374\n",
+ "Discriminator Loss: tf.Tensor(1.1283667, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.29041767, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 2375\n",
+ "Discriminator Loss: tf.Tensor(0.55859435, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.7882529, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 2376\n",
+ "Discriminator Loss: tf.Tensor(0.52310073, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.7090159, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 2377\n",
+ "Discriminator Loss: tf.Tensor(3.108365, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(4.3685756, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 2378\n",
+ "Discriminator Loss: tf.Tensor(0.8663067, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.27335343, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 2379\n",
+ "Discriminator Loss: tf.Tensor(0.42964, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.7409582, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 2380\n",
+ "Discriminator Loss: tf.Tensor(1.3939879, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.2658476, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 2381\n",
+ "Discriminator Loss: tf.Tensor(0.16523969, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.8576413, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 2382\n",
+ "Discriminator Loss: tf.Tensor(0.17713971, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.2825195, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 2383\n",
+ "Discriminator Loss: tf.Tensor(0.36200342, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.2729186, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 2384\n",
+ "Discriminator Loss: tf.Tensor(0.09632602, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.2298157, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 2385\n",
+ "Discriminator Loss: tf.Tensor(1.2443894, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.023984993, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 2386\n",
+ "Discriminator Loss: tf.Tensor(15.4661255, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.8885943, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 2387\n",
+ "Discriminator Loss: tf.Tensor(1.8361315, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.008961541, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 2388\n",
+ "Discriminator Loss: tf.Tensor(1.8591224, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.02532251, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 2389\n",
+ "Discriminator Loss: tf.Tensor(1.732752, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.048591003, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 2390\n",
+ "Discriminator Loss: tf.Tensor(1.8256648, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.0048705786, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 2391\n",
+ "Discriminator Loss: tf.Tensor(1.8158398, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.022033997, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 2392\n",
+ "Discriminator Loss: tf.Tensor(1.7356695, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.057355564, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 2393\n",
+ "Discriminator Loss: tf.Tensor(1.7359632, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.042654496, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 2394\n",
+ "Discriminator Loss: tf.Tensor(1.640966, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.12726945, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 2395\n",
+ "Discriminator Loss: tf.Tensor(1.6127156, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.106413044, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 2396\n",
+ "Discriminator Loss: tf.Tensor(1.6054629, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.31376296, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 2397\n",
+ "Discriminator Loss: tf.Tensor(1.477216, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.0651943, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 2398\n",
+ "Discriminator Loss: tf.Tensor(2.002253, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.659555, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 2399\n",
+ "Discriminator Loss: tf.Tensor(1.6528213, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.22099632, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 2400\n",
+ "Discriminator Loss: tf.Tensor(1.8373803, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.1392367, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 2401\n",
+ "Discriminator Loss: tf.Tensor(1.715364, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.31719825, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 2402\n",
+ "Discriminator Loss: tf.Tensor(1.4318945, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.14656614, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 2403\n",
+ "Discriminator Loss: tf.Tensor(1.5353935, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.27292055, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 2404\n",
+ "Discriminator Loss: tf.Tensor(0.78285486, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.6000368, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 2405\n",
+ "Discriminator Loss: tf.Tensor(1.3046066, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.21453124, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 2406\n",
+ "Discriminator Loss: tf.Tensor(2.987591, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(3.526125, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 2407\n",
+ "Discriminator Loss: tf.Tensor(1.4140587, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.29021522, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 2408\n",
+ "Discriminator Loss: tf.Tensor(1.370603, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.05177596, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 2409\n",
+ "Discriminator Loss: tf.Tensor(1.0091255, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.48011538, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 2410\n",
+ "Discriminator Loss: tf.Tensor(1.2003461, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.22390258, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 2411\n",
+ "Discriminator Loss: tf.Tensor(1.5469363, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.2763783, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 2412\n",
+ "Discriminator Loss: tf.Tensor(1.0161781, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.44409576, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 2413\n",
+ "Discriminator Loss: tf.Tensor(1.11469, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.061924543, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 2414\n",
+ "Discriminator Loss: tf.Tensor(2.2205482, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.6500344, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 2415\n",
+ "Discriminator Loss: tf.Tensor(0.8285742, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.29837504, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 2416\n",
+ "Discriminator Loss: tf.Tensor(0.9612537, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.07978251, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 2417\n",
+ "Discriminator Loss: tf.Tensor(1.8104141, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.7273757, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 2418\n",
+ "Discriminator Loss: tf.Tensor(1.3064228, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.069028355, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 2419\n",
+ "Discriminator Loss: tf.Tensor(1.3526236, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.477324, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 2420\n",
+ "Discriminator Loss: tf.Tensor(0.8037021, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.9204561, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 2421\n",
+ "Discriminator Loss: tf.Tensor(1.3940468, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.3559511, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 2422\n",
+ "Discriminator Loss: tf.Tensor(1.3176394, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.3322464, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 2423\n",
+ "Discriminator Loss: tf.Tensor(1.0144176, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.030919658, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 2424\n",
+ "Discriminator Loss: tf.Tensor(1.2418599, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.7174812, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 2425\n",
+ "Discriminator Loss: tf.Tensor(1.0743597, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.063177, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 2426\n",
+ "Discriminator Loss: tf.Tensor(2.0083947, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.7182983, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 2427\n",
+ "Discriminator Loss: tf.Tensor(0.9728844, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.22235227, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 2428\n",
+ "Discriminator Loss: tf.Tensor(1.3274822, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.24874556, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 2429\n",
+ "Discriminator Loss: tf.Tensor(1.4654436, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.93554705, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 2430\n",
+ "Discriminator Loss: tf.Tensor(0.97272015, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.6924, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 2431\n",
+ "Discriminator Loss: tf.Tensor(0.80807084, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.9602787, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 2432\n",
+ "Discriminator Loss: tf.Tensor(1.1599352, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.13698177, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 2433\n",
+ "Discriminator Loss: tf.Tensor(1.3101475, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.537783, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 2434\n",
+ "Discriminator Loss: tf.Tensor(0.9570667, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.050930467, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 2435\n",
+ "Discriminator Loss: tf.Tensor(1.106657, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.95268726, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 2436\n",
+ "Discriminator Loss: tf.Tensor(1.1298279, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.050411776, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 2437\n",
+ "Discriminator Loss: tf.Tensor(0.9497479, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.7427143, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 2438\n",
+ "Discriminator Loss: tf.Tensor(1.4184265, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.3855221, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 2439\n",
+ "Discriminator Loss: tf.Tensor(2.0317762, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.0698298, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 2440\n",
+ "Discriminator Loss: tf.Tensor(1.327713, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.037965745, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 2441\n",
+ "Discriminator Loss: tf.Tensor(1.7636268, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.28801143, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 2442\n",
+ "Discriminator Loss: tf.Tensor(1.3973942, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.05181724, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 2443\n",
+ "Discriminator Loss: tf.Tensor(1.2532854, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.3124766, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 2444\n",
+ "Discriminator Loss: tf.Tensor(1.3586633, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.039364222, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 2445\n",
+ "Discriminator Loss: tf.Tensor(1.7129341, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.3226781, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 2446\n",
+ "Discriminator Loss: tf.Tensor(1.6421264, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.041071687, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 2447\n",
+ "Discriminator Loss: tf.Tensor(1.3232056, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.07805795, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 2448\n",
+ "Discriminator Loss: tf.Tensor(1.6987938, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.4306366, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 2449\n",
+ "Discriminator Loss: tf.Tensor(1.6574359, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.13105854, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 2450\n",
+ "Discriminator Loss: tf.Tensor(1.2658486, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.32385674, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 2451\n",
+ "Discriminator Loss: tf.Tensor(1.4878153, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.23765095, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 2452\n",
+ "Discriminator Loss: tf.Tensor(0.77773803, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.2227789, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 2453\n",
+ "Discriminator Loss: tf.Tensor(2.4351385, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-1.4235281, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 2454\n",
+ "Discriminator Loss: tf.Tensor(1.7730591, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.12889421, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 2455\n",
+ "Discriminator Loss: tf.Tensor(1.5716316, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.12768413, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 2456\n",
+ "Discriminator Loss: tf.Tensor(1.2359576, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.4042498, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 2457\n",
+ "Discriminator Loss: tf.Tensor(1.1328527, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.053833526, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 2458\n",
+ "Discriminator Loss: tf.Tensor(1.6415969, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.9723192, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 2459\n",
+ "Discriminator Loss: tf.Tensor(1.070594, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.26240835, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 2460\n",
+ "Discriminator Loss: tf.Tensor(0.98520446, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.19553049, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 2461\n",
+ "Discriminator Loss: tf.Tensor(0.89016795, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.6142359, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 2462\n",
+ "Discriminator Loss: tf.Tensor(4.932257, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.286762, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 2463\n",
+ "Discriminator Loss: tf.Tensor(2.4171295, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.066066846, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 2464\n",
+ "Discriminator Loss: tf.Tensor(2.0642264, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.30162996, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 2465\n",
+ "Discriminator Loss: tf.Tensor(1.8746977, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.23444586, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 2466\n",
+ "Discriminator Loss: tf.Tensor(2.0468, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.21848528, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 2467\n",
+ "Discriminator Loss: tf.Tensor(2.0382037, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.22041522, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 2468\n",
+ "Discriminator Loss: tf.Tensor(1.9780109, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.283846, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 2469\n",
+ "Discriminator Loss: tf.Tensor(1.963055, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.25421682, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 2470\n",
+ "Discriminator Loss: tf.Tensor(1.9375771, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.24436907, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 2471\n",
+ "Discriminator Loss: tf.Tensor(1.9242405, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.2169527, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 2472\n",
+ "Discriminator Loss: tf.Tensor(1.9116722, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.1986802, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 2473\n",
+ "Discriminator Loss: tf.Tensor(1.8927191, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.17554456, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 2474\n",
+ "Discriminator Loss: tf.Tensor(1.843268, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.14880943, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 2475\n",
+ "Discriminator Loss: tf.Tensor(1.872062, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.14168254, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 2476\n",
+ "Discriminator Loss: tf.Tensor(1.7890986, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.021851065, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 2477\n",
+ "Discriminator Loss: tf.Tensor(1.8363019, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.260614, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 2478\n",
+ "Discriminator Loss: tf.Tensor(1.9702908, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.05327812, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 2479\n",
+ "Discriminator Loss: tf.Tensor(1.9618726, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.20372744, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 2480\n",
+ "Discriminator Loss: tf.Tensor(1.9287727, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.27464867, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 2481\n",
+ "Discriminator Loss: tf.Tensor(1.9213996, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.28092483, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 2482\n",
+ "Discriminator Loss: tf.Tensor(1.9157085, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.2311024, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 2483\n",
+ "Discriminator Loss: tf.Tensor(1.8220302, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.16185544, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 2484\n",
+ "Discriminator Loss: tf.Tensor(1.7488537, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.0014338592, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 2485\n",
+ "Discriminator Loss: tf.Tensor(1.576693, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.20356055, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 2486\n",
+ "Discriminator Loss: tf.Tensor(1.3402432, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.18011527, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 2487\n",
+ "Discriminator Loss: tf.Tensor(3.0001154, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.2581768, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 2488\n",
+ "Discriminator Loss: tf.Tensor(1.7854426, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.7310942, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 2489\n",
+ "Discriminator Loss: tf.Tensor(1.8327097, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.7980705, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 2490\n",
+ "Discriminator Loss: tf.Tensor(1.8939989, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.11076128, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 2491\n",
+ "Discriminator Loss: tf.Tensor(1.894738, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.040710036, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 2492\n",
+ "Discriminator Loss: tf.Tensor(1.7797263, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.03991996, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 2493\n",
+ "Discriminator Loss: tf.Tensor(1.4948845, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.26437163, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 2494\n",
+ "Discriminator Loss: tf.Tensor(1.7218747, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.2314171, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 2495\n",
+ "Discriminator Loss: tf.Tensor(1.0154912, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.0829982, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 2496\n",
+ "Discriminator Loss: tf.Tensor(2.0653167, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-1.055677, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 2497\n",
+ "Discriminator Loss: tf.Tensor(1.6302241, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.24063547, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 2498\n",
+ "Discriminator Loss: tf.Tensor(1.4160178, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.086629905, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 2499\n",
+ "Discriminator Loss: tf.Tensor(1.38148, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.90241843, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 2500\n",
+ "Discriminator Loss: tf.Tensor(1.4160529, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.11032828, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 2501\n",
+ "Discriminator Loss: tf.Tensor(0.9122467, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.1394066, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 2502\n",
+ "Discriminator Loss: tf.Tensor(1.7784753, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.7719934, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 2503\n",
+ "Discriminator Loss: tf.Tensor(0.96429217, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.54406995, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 2504\n",
+ "Discriminator Loss: tf.Tensor(1.3779658, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.33484256, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 2505\n",
+ "Discriminator Loss: tf.Tensor(2.2026496, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.1706147, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 2506\n",
+ "Discriminator Loss: tf.Tensor(1.4274353, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.04522933, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 2507\n",
+ "Discriminator Loss: tf.Tensor(0.7431141, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.56289536, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 2508\n",
+ "Discriminator Loss: tf.Tensor(0.8631393, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.22055928, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 2509\n",
+ "Discriminator Loss: tf.Tensor(1.5465449, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.9395428, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 2510\n",
+ "Discriminator Loss: tf.Tensor(0.74112934, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.2668693, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 2511\n",
+ "Discriminator Loss: tf.Tensor(1.4784689, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.2721425, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 2512\n",
+ "Discriminator Loss: tf.Tensor(1.3123475, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.27860084, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 2513\n",
+ "Discriminator Loss: tf.Tensor(0.69964695, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.8512222, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 2514\n",
+ "Discriminator Loss: tf.Tensor(0.9717528, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.15611303, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 2515\n",
+ "Discriminator Loss: tf.Tensor(5.538098, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(5.7518272, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 2516\n",
+ "Discriminator Loss: tf.Tensor(1.2682567, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.3126156, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 2517\n",
+ "Discriminator Loss: tf.Tensor(1.1384635, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.21765763, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 2518\n",
+ "Discriminator Loss: tf.Tensor(0.8409136, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.35675135, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 2519\n",
+ "Discriminator Loss: tf.Tensor(0.2679065, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.90368634, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 2520\n",
+ "Discriminator Loss: tf.Tensor(1.1883599, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.67628574, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 2521\n",
+ "Discriminator Loss: tf.Tensor(0.27789345, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.2622019, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 2522\n",
+ "Discriminator Loss: tf.Tensor(1.572079, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.2364845, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 2523\n",
+ "Discriminator Loss: tf.Tensor(0.86049837, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.1683561, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 2524\n",
+ "Discriminator Loss: tf.Tensor(1.9111252, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.78278166, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 2525\n",
+ "Discriminator Loss: tf.Tensor(1.5507891, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.12368546, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 2526\n",
+ "Discriminator Loss: tf.Tensor(1.0773973, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.6012551, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 2527\n",
+ "Discriminator Loss: tf.Tensor(1.0581831, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.5214548, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 2528\n",
+ "Discriminator Loss: tf.Tensor(2.1302273, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.7282575, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 2529\n",
+ "Discriminator Loss: tf.Tensor(1.6743826, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.65857697, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 2530\n",
+ "Discriminator Loss: tf.Tensor(1.5331932, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.16538212, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 2531\n",
+ "Discriminator Loss: tf.Tensor(1.5562669, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.098584324, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 2532\n",
+ "Discriminator Loss: tf.Tensor(1.4754398, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.5017355, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 2533\n",
+ "Discriminator Loss: tf.Tensor(1.6144354, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.14371306, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 2534\n",
+ "Discriminator Loss: tf.Tensor(1.0062693, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.9552169, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 2535\n",
+ "Discriminator Loss: tf.Tensor(1.5836538, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.5482049, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 2536\n",
+ "Discriminator Loss: tf.Tensor(1.199683, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.94079036, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 2537\n",
+ "Discriminator Loss: tf.Tensor(1.1937813, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.25179517, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 2538\n",
+ "Discriminator Loss: tf.Tensor(1.3787827, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.3647132, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 2539\n",
+ "Discriminator Loss: tf.Tensor(1.1889626, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.18018758, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 2540\n",
+ "Discriminator Loss: tf.Tensor(1.6904438, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.18126965, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 2541\n",
+ "Discriminator Loss: tf.Tensor(1.4084206, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.09696334, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 2542\n",
+ "Discriminator Loss: tf.Tensor(0.99280274, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.68997127, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 2543\n",
+ "Discriminator Loss: tf.Tensor(1.4316632, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.12372758, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 2544\n",
+ "Discriminator Loss: tf.Tensor(2.5414703, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.5685737, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 2545\n",
+ "Discriminator Loss: tf.Tensor(1.4139167, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.21217395, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 2546\n",
+ "Discriminator Loss: tf.Tensor(1.4592551, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.10066283, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 2547\n",
+ "Discriminator Loss: tf.Tensor(1.1940718, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.26530185, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 2548\n",
+ "Discriminator Loss: tf.Tensor(0.8567921, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.4492787, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 2549\n",
+ "Discriminator Loss: tf.Tensor(1.5536418, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.6285454, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 2550\n",
+ "Discriminator Loss: tf.Tensor(1.4257854, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.41633847, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 2551\n",
+ "Discriminator Loss: tf.Tensor(1.5055301, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.34552276, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 2552\n",
+ "Discriminator Loss: tf.Tensor(1.4612497, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.2986689, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 2553\n",
+ "Discriminator Loss: tf.Tensor(0.8573717, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.6706912, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 2554\n",
+ "Discriminator Loss: tf.Tensor(1.3571926, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.9188038, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 2555\n",
+ "Discriminator Loss: tf.Tensor(12.005681, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.121309794, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 2556\n",
+ "Discriminator Loss: tf.Tensor(2.9313478, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.29386866, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 2557\n",
+ "Discriminator Loss: tf.Tensor(2.5852878, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.3538948, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 2558\n",
+ "Discriminator Loss: tf.Tensor(2.0231955, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.29736218, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 2559\n",
+ "Discriminator Loss: tf.Tensor(1.9970273, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.2965206, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 2560\n",
+ "Discriminator Loss: tf.Tensor(1.9712592, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.28175712, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 2561\n",
+ "Discriminator Loss: tf.Tensor(1.9988391, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.284295, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 2562\n",
+ "Discriminator Loss: tf.Tensor(1.9610667, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.28055027, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 2563\n",
+ "Discriminator Loss: tf.Tensor(1.9662557, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.27700981, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 2564\n",
+ "Discriminator Loss: tf.Tensor(1.9650272, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.2756286, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 2565\n",
+ "Discriminator Loss: tf.Tensor(1.9405736, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.25126937, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 2566\n",
+ "Discriminator Loss: tf.Tensor(1.9655224, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.269033, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 2567\n",
+ "Discriminator Loss: tf.Tensor(1.9762532, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.25250405, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 2568\n",
+ "Discriminator Loss: tf.Tensor(1.9412407, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.27115023, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 2569\n",
+ "Discriminator Loss: tf.Tensor(1.922638, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.23832852, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 2570\n",
+ "Discriminator Loss: tf.Tensor(1.910151, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.22450371, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 2571\n",
+ "Discriminator Loss: tf.Tensor(1.9228973, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.21336125, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 2572\n",
+ "Discriminator Loss: tf.Tensor(1.8754716, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.1761023, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 2573\n",
+ "Discriminator Loss: tf.Tensor(1.9167695, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.17138594, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 2574\n",
+ "Discriminator Loss: tf.Tensor(1.8308328, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.13194539, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 2575\n",
+ "Discriminator Loss: tf.Tensor(1.8496326, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.06762091, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 2576\n",
+ "Discriminator Loss: tf.Tensor(1.994007, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.17217152, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 2577\n",
+ "Discriminator Loss: tf.Tensor(1.8137231, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.13380888, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 2578\n",
+ "Discriminator Loss: tf.Tensor(1.9485319, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.12997521, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 2579\n",
+ "Discriminator Loss: tf.Tensor(1.8650162, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.1015932, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 2580\n",
+ "Discriminator Loss: tf.Tensor(1.8372856, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.06463642, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 2581\n",
+ "Discriminator Loss: tf.Tensor(1.899091, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.059740286, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 2582\n",
+ "Discriminator Loss: tf.Tensor(1.9036062, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.21641888, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 2583\n",
+ "Discriminator Loss: tf.Tensor(1.8718337, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.126567, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 2584\n",
+ "Discriminator Loss: tf.Tensor(1.8487763, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.04446883, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 2585\n",
+ "Discriminator Loss: tf.Tensor(1.7136137, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.053004116, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 2586\n",
+ "Discriminator Loss: tf.Tensor(1.3615397, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.39184138, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 2587\n",
+ "Discriminator Loss: tf.Tensor(1.6823906, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.544884, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 2588\n",
+ "Discriminator Loss: tf.Tensor(5.1319385, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(4.759647, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 2589\n",
+ "Discriminator Loss: tf.Tensor(1.8301672, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.07952554, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 2590\n",
+ "Discriminator Loss: tf.Tensor(1.8202584, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.15235978, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 2591\n",
+ "Discriminator Loss: tf.Tensor(1.7604558, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.12422407, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 2592\n",
+ "Discriminator Loss: tf.Tensor(1.6968253, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.13196819, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 2593\n",
+ "Discriminator Loss: tf.Tensor(1.6292709, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.09863335, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 2594\n",
+ "Discriminator Loss: tf.Tensor(1.593971, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.22777013, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 2595\n",
+ "Discriminator Loss: tf.Tensor(1.5785695, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.20620517, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 2596\n",
+ "Discriminator Loss: tf.Tensor(1.5736828, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.5627899, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 2597\n",
+ "Discriminator Loss: tf.Tensor(1.6675142, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.39920774, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 2598\n",
+ "Discriminator Loss: tf.Tensor(1.619998, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.03223475, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 2599\n",
+ "Discriminator Loss: tf.Tensor(1.1923758, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.79131764, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 2600\n",
+ "Discriminator Loss: tf.Tensor(1.3963182, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.18342435, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 2601\n",
+ "Discriminator Loss: tf.Tensor(2.301536, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.9823939, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 2602\n",
+ "Discriminator Loss: tf.Tensor(1.4533376, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.4452778, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 2603\n",
+ "Discriminator Loss: tf.Tensor(1.4330509, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.16730207, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 2604\n",
+ "Discriminator Loss: tf.Tensor(1.5380838, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.1322388, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 2605\n",
+ "Discriminator Loss: tf.Tensor(0.7281023, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.60282964, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 2606\n",
+ "Discriminator Loss: tf.Tensor(1.2668498, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.106919296, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 2607\n",
+ "Discriminator Loss: tf.Tensor(1.7909049, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.7354412, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 2608\n",
+ "Discriminator Loss: tf.Tensor(0.9924364, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.44005832, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 2609\n",
+ "Discriminator Loss: tf.Tensor(0.45427865, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.5680998, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 2610\n",
+ "Discriminator Loss: tf.Tensor(1.2398412, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.6726433, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 2611\n",
+ "Discriminator Loss: tf.Tensor(1.3833612, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.37774047, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 2612\n",
+ "Discriminator Loss: tf.Tensor(0.8177896, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.930747, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 2613\n",
+ "Discriminator Loss: tf.Tensor(0.76347816, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.25946212, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 2614\n",
+ "Discriminator Loss: tf.Tensor(2.3673546, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.6057336, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 2615\n",
+ "Discriminator Loss: tf.Tensor(0.72620296, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.49219525, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 2616\n",
+ "Discriminator Loss: tf.Tensor(0.2066598, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.9330628, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 2617\n",
+ "Discriminator Loss: tf.Tensor(0.8336222, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.7997979, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 2618\n",
+ "Discriminator Loss: tf.Tensor(1.2110591, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.19748412, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 2619\n",
+ "Discriminator Loss: tf.Tensor(2.9763124, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.6277924, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 2620\n",
+ "Discriminator Loss: tf.Tensor(1.019182, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.4218404, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 2621\n",
+ "Discriminator Loss: tf.Tensor(0.6863848, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.5133624, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 2622\n",
+ "Discriminator Loss: tf.Tensor(1.6205494, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.16535123, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 2623\n",
+ "Discriminator Loss: tf.Tensor(1.1708125, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.1982348, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 2624\n",
+ "Discriminator Loss: tf.Tensor(1.18124, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.16027607, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 2625\n",
+ "Discriminator Loss: tf.Tensor(0.7626637, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.0409383, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 2626\n",
+ "Discriminator Loss: tf.Tensor(1.5155027, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.49296808, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 2627\n",
+ "Discriminator Loss: tf.Tensor(0.9293717, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.0698768, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 2628\n",
+ "Discriminator Loss: tf.Tensor(1.2213527, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.14358294, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 2629\n",
+ "Discriminator Loss: tf.Tensor(1.0954771, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.2610637, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 2630\n",
+ "Discriminator Loss: tf.Tensor(1.4982337, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.47756186, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 2631\n",
+ "Discriminator Loss: tf.Tensor(0.89466155, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.0180053, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 2632\n",
+ "Discriminator Loss: tf.Tensor(1.2892498, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.25216094, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 2633\n",
+ "Discriminator Loss: tf.Tensor(0.9624115, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.3083867, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 2634\n",
+ "Discriminator Loss: tf.Tensor(1.3557668, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.34881642, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 2635\n",
+ "Discriminator Loss: tf.Tensor(1.2489679, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.54763967, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 2636\n",
+ "Discriminator Loss: tf.Tensor(1.2704167, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.11091747, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 2637\n",
+ "Discriminator Loss: tf.Tensor(0.83990693, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.73810077, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 2638\n",
+ "Discriminator Loss: tf.Tensor(1.2459235, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.536231, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 2639\n",
+ "Discriminator Loss: tf.Tensor(1.222894, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.20047502, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 2640\n",
+ "Discriminator Loss: tf.Tensor(1.1036385, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.46487918, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 2641\n",
+ "Discriminator Loss: tf.Tensor(4.378292, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.1932058, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 2642\n",
+ "Discriminator Loss: tf.Tensor(1.4675186, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.12827624, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 2643\n",
+ "Discriminator Loss: tf.Tensor(1.6230142, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.33277562, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 2644\n",
+ "Discriminator Loss: tf.Tensor(1.4567161, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.020800417, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 2645\n",
+ "Discriminator Loss: tf.Tensor(1.3370166, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.21197613, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 2646\n",
+ "Discriminator Loss: tf.Tensor(1.2137138, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.3247716, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 2647\n",
+ "Discriminator Loss: tf.Tensor(0.9006858, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.8087198, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 2648\n",
+ "Discriminator Loss: tf.Tensor(1.7377491, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.57405996, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 2649\n",
+ "Discriminator Loss: tf.Tensor(1.1750515, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.159013, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 2650\n",
+ "Discriminator Loss: tf.Tensor(0.83255607, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.2980647, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 2651\n",
+ "Discriminator Loss: tf.Tensor(1.8651397, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.95700103, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 2652\n",
+ "Discriminator Loss: tf.Tensor(0.99705195, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.19246177, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 2653\n",
+ "Discriminator Loss: tf.Tensor(1.3582349, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.73243135, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 2654\n",
+ "Discriminator Loss: tf.Tensor(1.3075784, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.4899263, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 2655\n",
+ "Discriminator Loss: tf.Tensor(0.9541615, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.94781417, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 2656\n",
+ "Discriminator Loss: tf.Tensor(0.6436663, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.93464184, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 2657\n",
+ "Discriminator Loss: tf.Tensor(0.8549499, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.41468546, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 2658\n",
+ "Discriminator Loss: tf.Tensor(9.870958, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(10.918759, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 2659\n",
+ "Discriminator Loss: tf.Tensor(1.1496644, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.552546, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 2660\n",
+ "Discriminator Loss: tf.Tensor(1.1692914, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.289422, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 2661\n",
+ "Discriminator Loss: tf.Tensor(1.0830723, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.19114141, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 2662\n",
+ "Discriminator Loss: tf.Tensor(1.2042186, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.40956083, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 2663\n",
+ "Discriminator Loss: tf.Tensor(2.2719378, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.6626825, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 2664\n",
+ "Discriminator Loss: tf.Tensor(1.4365252, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.006520542, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 2665\n",
+ "Discriminator Loss: tf.Tensor(1.1492119, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.28514287, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 2666\n",
+ "Discriminator Loss: tf.Tensor(0.8936645, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.7096804, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 2667\n",
+ "Discriminator Loss: tf.Tensor(1.3651197, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.15222998, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 2668\n",
+ "Discriminator Loss: tf.Tensor(1.6313926, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.6203173, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 2669\n",
+ "Discriminator Loss: tf.Tensor(1.3698139, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.036463033, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 2670\n",
+ "Discriminator Loss: tf.Tensor(1.0343683, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.4663879, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 2671\n",
+ "Discriminator Loss: tf.Tensor(1.0947859, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.2301228, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 2672\n",
+ "Discriminator Loss: tf.Tensor(1.3511732, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.4255551, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 2673\n",
+ "Discriminator Loss: tf.Tensor(1.0193864, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.11876809, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 2674\n",
+ "Discriminator Loss: tf.Tensor(1.1919246, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.1355811, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 2675\n",
+ "Discriminator Loss: tf.Tensor(1.9312077, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.8572326, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 2676\n",
+ "Discriminator Loss: tf.Tensor(1.4362413, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.535952, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 2677\n",
+ "Discriminator Loss: tf.Tensor(1.4954221, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.27829006, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 2678\n",
+ "Discriminator Loss: tf.Tensor(1.2663174, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.59165686, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 2679\n",
+ "Discriminator Loss: tf.Tensor(1.3791308, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.6111906, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 2680\n",
+ "Discriminator Loss: tf.Tensor(0.97366023, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.8149014, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 2681\n",
+ "Discriminator Loss: tf.Tensor(0.813091, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.3900888, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 2682\n",
+ "Discriminator Loss: tf.Tensor(2.3669198, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.2723591, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 2683\n",
+ "Discriminator Loss: tf.Tensor(1.2882304, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.20549436, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 2684\n",
+ "Discriminator Loss: tf.Tensor(1.2501742, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.056491524, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 2685\n",
+ "Discriminator Loss: tf.Tensor(0.46117306, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.88185614, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 2686\n",
+ "Discriminator Loss: tf.Tensor(0.89353156, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.8386652, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 2687\n",
+ "Discriminator Loss: tf.Tensor(0.6039688, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.5562035, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 2688\n",
+ "Discriminator Loss: tf.Tensor(264.45468, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.11106505, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 2689\n",
+ "Discriminator Loss: tf.Tensor(20.595589, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.14719723, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 2690\n",
+ "Discriminator Loss: tf.Tensor(6.0698657, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.3441778, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 2691\n",
+ "Discriminator Loss: tf.Tensor(3.0513563, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.29256892, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 2692\n",
+ "Discriminator Loss: tf.Tensor(2.3864753, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.28274724, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 2693\n",
+ "Discriminator Loss: tf.Tensor(2.32358, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.28325713, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 2694\n",
+ "Discriminator Loss: tf.Tensor(2.2478256, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.27527216, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 2695\n",
+ "Discriminator Loss: tf.Tensor(2.222931, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.27212873, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 2696\n",
+ "Discriminator Loss: tf.Tensor(2.1813345, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.26665094, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 2697\n",
+ "Discriminator Loss: tf.Tensor(2.146473, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.25902894, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 2698\n",
+ "Discriminator Loss: tf.Tensor(2.1173468, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.25870833, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 2699\n",
+ "Discriminator Loss: tf.Tensor(2.1727705, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.24182312, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 2700\n",
+ "Discriminator Loss: tf.Tensor(2.1449609, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.25793454, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 2701\n",
+ "Discriminator Loss: tf.Tensor(2.0928185, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.25028086, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 2702\n",
+ "Discriminator Loss: tf.Tensor(2.096409, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.24928312, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 2703\n",
+ "Discriminator Loss: tf.Tensor(2.0797236, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.24560814, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 2704\n",
+ "Discriminator Loss: tf.Tensor(2.064228, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.23969942, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 2705\n",
+ "Discriminator Loss: tf.Tensor(2.0530183, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.23742889, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 2706\n",
+ "Discriminator Loss: tf.Tensor(2.037682, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.22917598, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 2707\n",
+ "Discriminator Loss: tf.Tensor(2.0292773, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.21966235, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 2708\n",
+ "Discriminator Loss: tf.Tensor(2.0305016, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.22389948, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 2709\n",
+ "Discriminator Loss: tf.Tensor(2.0183668, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.21999979, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 2710\n",
+ "Discriminator Loss: tf.Tensor(2.013136, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.2146162, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 2711\n",
+ "Discriminator Loss: tf.Tensor(2.0162342, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.21666723, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 2712\n",
+ "Discriminator Loss: tf.Tensor(2.0107787, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.21165061, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 2713\n",
+ "Discriminator Loss: tf.Tensor(2.0093815, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.21232118, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 2714\n",
+ "Discriminator Loss: tf.Tensor(2.0020714, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.20469677, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 2715\n",
+ "Discriminator Loss: tf.Tensor(1.9953914, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.19875099, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 2716\n",
+ "Discriminator Loss: tf.Tensor(1.997434, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.20238836, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 2717\n",
+ "Discriminator Loss: tf.Tensor(1.9930725, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.19524707, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 2718\n",
+ "Discriminator Loss: tf.Tensor(1.982806, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.18540812, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 2719\n",
+ "Discriminator Loss: tf.Tensor(1.983011, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.18638855, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 2720\n",
+ "Discriminator Loss: tf.Tensor(1.9887801, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.1905651, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 2721\n",
+ "Discriminator Loss: tf.Tensor(1.9813937, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.18230784, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 2722\n",
+ "Discriminator Loss: tf.Tensor(1.9621465, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.16446684, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 2723\n",
+ "Discriminator Loss: tf.Tensor(1.9299624, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.12684137, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 2724\n",
+ "Discriminator Loss: tf.Tensor(1.9712052, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.1869424, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 2725\n",
+ "Discriminator Loss: tf.Tensor(1.977258, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.18755941, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 2726\n",
+ "Discriminator Loss: tf.Tensor(1.9563769, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.16085644, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 2727\n",
+ "Discriminator Loss: tf.Tensor(1.8733923, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.07914481, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 2728\n",
+ "Discriminator Loss: tf.Tensor(1.8656516, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.068596296, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 2729\n",
+ "Discriminator Loss: tf.Tensor(1.8779373, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.1229167, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 2730\n",
+ "Discriminator Loss: tf.Tensor(1.8887514, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.043237854, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 2731\n",
+ "Discriminator Loss: tf.Tensor(1.7973659, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.08921393, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 2732\n",
+ "Discriminator Loss: tf.Tensor(1.8619434, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.15054959, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 2733\n",
+ "Discriminator Loss: tf.Tensor(1.6502408, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.11763477, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 2734\n",
+ "Discriminator Loss: tf.Tensor(1.8123717, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.17751642, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 2735\n",
+ "Discriminator Loss: tf.Tensor(1.495144, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.19059831, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 2736\n",
+ "Discriminator Loss: tf.Tensor(1.7512103, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.09195272, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 2737\n",
+ "Discriminator Loss: tf.Tensor(1.3434271, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.56740195, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 2738\n",
+ "Discriminator Loss: tf.Tensor(1.6299521, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.15783753, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 2739\n",
+ "Discriminator Loss: tf.Tensor(3.6144447, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.23641396, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 2740\n",
+ "Discriminator Loss: tf.Tensor(1.8939906, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.17287229, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 2741\n",
+ "Discriminator Loss: tf.Tensor(1.92788, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.20399104, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 2742\n",
+ "Discriminator Loss: tf.Tensor(1.9667159, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.23461723, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 2743\n",
+ "Discriminator Loss: tf.Tensor(1.9661751, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.22417982, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 2744\n",
+ "Discriminator Loss: tf.Tensor(1.951068, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.19328284, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 2745\n",
+ "Discriminator Loss: tf.Tensor(1.9227533, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.15640701, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 2746\n",
+ "Discriminator Loss: tf.Tensor(1.8978345, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.10836654, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 2747\n",
+ "Discriminator Loss: tf.Tensor(1.821697, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.024385275, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 2748\n",
+ "Discriminator Loss: tf.Tensor(1.8609906, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.030248316, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 2749\n",
+ "Discriminator Loss: tf.Tensor(1.7578301, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.11824024, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 2750\n",
+ "Discriminator Loss: tf.Tensor(1.6296957, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.25879982, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 2751\n",
+ "Discriminator Loss: tf.Tensor(1.4135365, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.6856933, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 2752\n",
+ "Discriminator Loss: tf.Tensor(1.5147812, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.46653453, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 2753\n",
+ "Discriminator Loss: tf.Tensor(1.5203285, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.031947, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 2754\n",
+ "Discriminator Loss: tf.Tensor(1.986391, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.90286344, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 2755\n",
+ "Discriminator Loss: tf.Tensor(1.9440179, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.86583066, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 2756\n",
+ "Discriminator Loss: tf.Tensor(1.9388195, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.85653895, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 2757\n",
+ "Discriminator Loss: tf.Tensor(1.9403882, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.83603, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 2758\n",
+ "Discriminator Loss: tf.Tensor(1.8645722, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.78411824, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 2759\n",
+ "Discriminator Loss: tf.Tensor(1.8340458, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.7690851, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 2760\n",
+ "Discriminator Loss: tf.Tensor(1.6619185, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.47384444, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 2761\n",
+ "Discriminator Loss: tf.Tensor(1.5618663, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.46473467, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 2762\n",
+ "Discriminator Loss: tf.Tensor(1.6292971, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.8627722, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 2763\n",
+ "Discriminator Loss: tf.Tensor(1.563381, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.7160441, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 2764\n",
+ "Discriminator Loss: tf.Tensor(1.0033911, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.1635016, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 2765\n",
+ "Discriminator Loss: tf.Tensor(1.3063235, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.19384193, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 2766\n",
+ "Discriminator Loss: tf.Tensor(1.0263562, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.019386373, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 2767\n",
+ "Discriminator Loss: tf.Tensor(3.4798303, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(4.155872, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 2768\n",
+ "Discriminator Loss: tf.Tensor(1.6434371, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.15014037, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 2769\n",
+ "Discriminator Loss: tf.Tensor(1.5027409, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.08896997, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 2770\n",
+ "Discriminator Loss: tf.Tensor(1.1198575, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.16635612, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 2771\n",
+ "Discriminator Loss: tf.Tensor(2.0275037, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.98239946, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 2772\n",
+ "Discriminator Loss: tf.Tensor(1.7027131, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.48196006, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 2773\n",
+ "Discriminator Loss: tf.Tensor(1.2169309, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.71492547, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 2774\n",
+ "Discriminator Loss: tf.Tensor(1.0700742, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.23727508, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 2775\n",
+ "Discriminator Loss: tf.Tensor(2.7804577, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.8838508, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 2776\n",
+ "Discriminator Loss: tf.Tensor(1.4362634, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.41069588, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 2777\n",
+ "Discriminator Loss: tf.Tensor(1.6937594, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.6257186, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 2778\n",
+ "Discriminator Loss: tf.Tensor(1.091836, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.089973666, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 2779\n",
+ "Discriminator Loss: tf.Tensor(1.3591372, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.03817909, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 2780\n",
+ "Discriminator Loss: tf.Tensor(0.6566481, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.4332664, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 2781\n",
+ "Discriminator Loss: tf.Tensor(1.4923581, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.4813713, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 2782\n",
+ "Discriminator Loss: tf.Tensor(0.921602, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.08641299, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 2783\n",
+ "Discriminator Loss: tf.Tensor(1.0091841, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.8858642, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 2784\n",
+ "Discriminator Loss: tf.Tensor(0.90185887, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.17478465, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 2785\n",
+ "Discriminator Loss: tf.Tensor(1.9666886, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.8339344, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 2786\n",
+ "Discriminator Loss: tf.Tensor(1.4335685, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.423031, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 2787\n",
+ "Discriminator Loss: tf.Tensor(1.6744586, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.13118389, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 2788\n",
+ "Discriminator Loss: tf.Tensor(1.2330143, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.30187544, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 2789\n",
+ "Discriminator Loss: tf.Tensor(1.5526226, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.17445101, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 2790\n",
+ "Discriminator Loss: tf.Tensor(0.85879666, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.9186012, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 2791\n",
+ "Discriminator Loss: tf.Tensor(0.6041722, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.43654898, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 2792\n",
+ "Discriminator Loss: tf.Tensor(3.2914963, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(3.1547687, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 2793\n",
+ "Discriminator Loss: tf.Tensor(1.2618868, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.05513237, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 2794\n",
+ "Discriminator Loss: tf.Tensor(1.0115981, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.13844173, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 2795\n",
+ "Discriminator Loss: tf.Tensor(0.7593861, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.39134836, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 2796\n",
+ "Discriminator Loss: tf.Tensor(1.7176342, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.92858285, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 2797\n",
+ "Discriminator Loss: tf.Tensor(0.65190613, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.6941193, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 2798\n",
+ "Discriminator Loss: tf.Tensor(1.4874011, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.24340968, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 2799\n",
+ "Discriminator Loss: tf.Tensor(2.0671113, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.4018347, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 2800\n",
+ "Discriminator Loss: tf.Tensor(0.9346699, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.6278871, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 2801\n",
+ "Discriminator Loss: tf.Tensor(0.7074028, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.533027, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 2802\n",
+ "Discriminator Loss: tf.Tensor(0.75542134, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.6490521, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 2803\n",
+ "Discriminator Loss: tf.Tensor(367.7035, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.07992219, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 2804\n",
+ "Discriminator Loss: tf.Tensor(57.27221, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.14196171, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 2805\n",
+ "Discriminator Loss: tf.Tensor(10.141785, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.1441273, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 2806\n",
+ "Discriminator Loss: tf.Tensor(3.6537952, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.19638276, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 2807\n",
+ "Discriminator Loss: tf.Tensor(2.6081657, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.18341453, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 2808\n",
+ "Discriminator Loss: tf.Tensor(2.3990583, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.19727893, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 2809\n",
+ "Discriminator Loss: tf.Tensor(2.2771847, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.199488, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 2810\n",
+ "Discriminator Loss: tf.Tensor(2.199255, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.19352381, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 2811\n",
+ "Discriminator Loss: tf.Tensor(2.2230349, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.20589463, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 2812\n",
+ "Discriminator Loss: tf.Tensor(2.1300993, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.20085053, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 2813\n",
+ "Discriminator Loss: tf.Tensor(2.1277654, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.20319581, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 2814\n",
+ "Discriminator Loss: tf.Tensor(2.1220994, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.1999046, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 2815\n",
+ "Discriminator Loss: tf.Tensor(2.1003926, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.20013803, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 2816\n",
+ "Discriminator Loss: tf.Tensor(2.0760982, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.19973864, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 2817\n",
+ "Discriminator Loss: tf.Tensor(2.0599205, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.1889804, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 2818\n",
+ "Discriminator Loss: tf.Tensor(2.0575974, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.19200583, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 2819\n",
+ "Discriminator Loss: tf.Tensor(2.0529125, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.19269502, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 2820\n",
+ "Discriminator Loss: tf.Tensor(2.0431237, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.19272561, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 2821\n",
+ "Discriminator Loss: tf.Tensor(2.0480914, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.19168454, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 2822\n",
+ "Discriminator Loss: tf.Tensor(2.036496, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.19165224, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 2823\n",
+ "Discriminator Loss: tf.Tensor(2.0319266, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.18886156, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 2824\n",
+ "Discriminator Loss: tf.Tensor(2.0223563, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.18788272, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 2825\n",
+ "Discriminator Loss: tf.Tensor(2.0131612, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.1798563, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 2826\n",
+ "Discriminator Loss: tf.Tensor(2.006951, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.17635606, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 2827\n",
+ "Discriminator Loss: tf.Tensor(2.0099375, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.18243432, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 2828\n",
+ "Discriminator Loss: tf.Tensor(2.0051186, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.18181898, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 2829\n",
+ "Discriminator Loss: tf.Tensor(1.9973314, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.17680074, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 2830\n",
+ "Discriminator Loss: tf.Tensor(2.0024967, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.1811744, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 2831\n",
+ "Discriminator Loss: tf.Tensor(2.0004182, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.17932808, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 2832\n",
+ "Discriminator Loss: tf.Tensor(2.0004127, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.17764206, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 2833\n",
+ "Discriminator Loss: tf.Tensor(1.9928517, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.17222698, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 2834\n",
+ "Discriminator Loss: tf.Tensor(1.9881678, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.17093761, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 2835\n",
+ "Discriminator Loss: tf.Tensor(1.9796523, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.16280784, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 2836\n",
+ "Discriminator Loss: tf.Tensor(1.9781976, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.16340116, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 2837\n",
+ "Discriminator Loss: tf.Tensor(1.9426848, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.1316986, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 2838\n",
+ "Discriminator Loss: tf.Tensor(1.8895866, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.08846233, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 2839\n",
+ "Discriminator Loss: tf.Tensor(1.8741499, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.08073467, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 2840\n",
+ "Discriminator Loss: tf.Tensor(1.9535261, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.17622931, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 2841\n",
+ "Discriminator Loss: tf.Tensor(1.9374646, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.14403045, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 2842\n",
+ "Discriminator Loss: tf.Tensor(1.8722222, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.098713696, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 2843\n",
+ "Discriminator Loss: tf.Tensor(1.8354437, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.047937598, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 2844\n",
+ "Discriminator Loss: tf.Tensor(1.927328, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.17954232, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 2845\n",
+ "Discriminator Loss: tf.Tensor(1.9000103, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.14279337, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 2846\n",
+ "Discriminator Loss: tf.Tensor(1.7920161, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.024843223, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 2847\n",
+ "Discriminator Loss: tf.Tensor(1.8669813, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.14226925, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 2848\n",
+ "Discriminator Loss: tf.Tensor(1.8144864, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.08681788, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 2849\n",
+ "Discriminator Loss: tf.Tensor(1.7482883, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.001414639, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 2850\n",
+ "Discriminator Loss: tf.Tensor(1.8405496, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.18624912, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 2851\n",
+ "Discriminator Loss: tf.Tensor(1.7668983, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.017824637, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 2852\n",
+ "Discriminator Loss: tf.Tensor(1.7754484, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.1798871, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 2853\n",
+ "Discriminator Loss: tf.Tensor(1.6031096, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.015561822, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 2854\n",
+ "Discriminator Loss: tf.Tensor(1.9033338, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.2169426, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 2855\n",
+ "Discriminator Loss: tf.Tensor(1.6944503, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.026391767, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 2856\n",
+ "Discriminator Loss: tf.Tensor(1.444058, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.063642286, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 2857\n",
+ "Discriminator Loss: tf.Tensor(1.4926791, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.006161008, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 2858\n",
+ "Discriminator Loss: tf.Tensor(1.7455122, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.39935645, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 2859\n",
+ "Discriminator Loss: tf.Tensor(1.3245099, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.20467095, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 2860\n",
+ "Discriminator Loss: tf.Tensor(1.5687343, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.55031186, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 2861\n",
+ "Discriminator Loss: tf.Tensor(1.5248113, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.45203686, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 2862\n",
+ "Discriminator Loss: tf.Tensor(1.408703, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.09455051, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 2863\n",
+ "Discriminator Loss: tf.Tensor(2.7006936, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.1773884, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 2864\n",
+ "Discriminator Loss: tf.Tensor(1.889473, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.4565301, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 2865\n",
+ "Discriminator Loss: tf.Tensor(1.9222207, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.4979138, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 2866\n",
+ "Discriminator Loss: tf.Tensor(1.9446344, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.5279553, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 2867\n",
+ "Discriminator Loss: tf.Tensor(1.9406927, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.52311385, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 2868\n",
+ "Discriminator Loss: tf.Tensor(1.92484, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.5113448, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 2869\n",
+ "Discriminator Loss: tf.Tensor(1.9174833, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.5049436, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 2870\n",
+ "Discriminator Loss: tf.Tensor(1.8720833, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.4759895, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 2871\n",
+ "Discriminator Loss: tf.Tensor(1.8808215, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.48617494, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 2872\n",
+ "Discriminator Loss: tf.Tensor(1.8371686, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.47102606, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 2873\n",
+ "Discriminator Loss: tf.Tensor(1.8059274, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.42857862, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 2874\n",
+ "Discriminator Loss: tf.Tensor(1.7912047, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.4672408, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 2875\n",
+ "Discriminator Loss: tf.Tensor(1.6047995, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.17237858, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 2876\n",
+ "Discriminator Loss: tf.Tensor(1.8111947, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.61895674, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 2877\n",
+ "Discriminator Loss: tf.Tensor(1.4262016, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.20905681, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 2878\n",
+ "Discriminator Loss: tf.Tensor(1.2500408, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.17478687, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 2879\n",
+ "Discriminator Loss: tf.Tensor(1.7304616, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.0763499, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 2880\n",
+ "Discriminator Loss: tf.Tensor(2.4324896, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-1.42652, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 2881\n",
+ "Discriminator Loss: tf.Tensor(1.7616824, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.13197887, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 2882\n",
+ "Discriminator Loss: tf.Tensor(1.6619292, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.16657983, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 2883\n",
+ "Discriminator Loss: tf.Tensor(1.3174739, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.32916242, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 2884\n",
+ "Discriminator Loss: tf.Tensor(1.0844691, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.01230184, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 2885\n",
+ "Discriminator Loss: tf.Tensor(1.1594214, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.9528405, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 2886\n",
+ "Discriminator Loss: tf.Tensor(1.8159531, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.7884257, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 2887\n",
+ "Discriminator Loss: tf.Tensor(1.4674342, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.8062025, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 2888\n",
+ "Discriminator Loss: tf.Tensor(0.84164256, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.2173463, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 2889\n",
+ "Discriminator Loss: tf.Tensor(1.7478143, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.73870605, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 2890\n",
+ "Discriminator Loss: tf.Tensor(1.100943, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.52558416, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 2891\n",
+ "Discriminator Loss: tf.Tensor(0.86732745, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.37776613, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 2892\n",
+ "Discriminator Loss: tf.Tensor(3.7962184, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.2181332, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 2893\n",
+ "Discriminator Loss: tf.Tensor(1.422208, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.29669714, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 2894\n",
+ "Discriminator Loss: tf.Tensor(1.321267, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.26324764, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 2895\n",
+ "Discriminator Loss: tf.Tensor(1.0349885, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.017136637, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 2896\n",
+ "Discriminator Loss: tf.Tensor(1.3247026, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.0143232, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 2897\n",
+ "Discriminator Loss: tf.Tensor(1.6130306, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.49351224, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 2898\n",
+ "Discriminator Loss: tf.Tensor(1.0060046, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.36369455, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 2899\n",
+ "Discriminator Loss: tf.Tensor(0.8489258, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.2534949, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 2900\n",
+ "Discriminator Loss: tf.Tensor(2.1225307, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-1.0962895, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 2901\n",
+ "Discriminator Loss: tf.Tensor(1.361959, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.82762975, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 2902\n",
+ "Discriminator Loss: tf.Tensor(1.5916051, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.3245432, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 2903\n",
+ "Discriminator Loss: tf.Tensor(1.1205809, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.6408677, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 2904\n",
+ "Discriminator Loss: tf.Tensor(1.6030476, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.4017744, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 2905\n",
+ "Discriminator Loss: tf.Tensor(1.3547999, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.012372, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 2906\n",
+ "Discriminator Loss: tf.Tensor(2.1110556, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-1.1012869, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 2907\n",
+ "Discriminator Loss: tf.Tensor(1.6525011, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.18902548, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 2908\n",
+ "Discriminator Loss: tf.Tensor(1.7449505, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.28781167, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 2909\n",
+ "Discriminator Loss: tf.Tensor(1.5543789, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.13576879, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 2910\n",
+ "Discriminator Loss: tf.Tensor(1.5302961, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.013051324, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 2911\n",
+ "Discriminator Loss: tf.Tensor(1.283805, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.18509805, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 2912\n",
+ "Discriminator Loss: tf.Tensor(1.0515392, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.4543445, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 2913\n",
+ "Discriminator Loss: tf.Tensor(0.49825168, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.1845027, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 2914\n",
+ "Discriminator Loss: tf.Tensor(300.43506, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.012510893, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 2915\n",
+ "Discriminator Loss: tf.Tensor(18.419468, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.22090054, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 2916\n",
+ "Discriminator Loss: tf.Tensor(8.037612, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.28593132, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 2917\n",
+ "Discriminator Loss: tf.Tensor(3.171589, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.26143965, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 2918\n",
+ "Discriminator Loss: tf.Tensor(2.4153752, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.2526715, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 2919\n",
+ "Discriminator Loss: tf.Tensor(2.285071, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.2520549, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 2920\n",
+ "Discriminator Loss: tf.Tensor(2.2018867, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.24538755, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 2921\n",
+ "Discriminator Loss: tf.Tensor(2.163476, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.24256174, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 2922\n",
+ "Discriminator Loss: tf.Tensor(2.130213, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.24011219, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 2923\n",
+ "Discriminator Loss: tf.Tensor(2.102024, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.2371551, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 2924\n",
+ "Discriminator Loss: tf.Tensor(2.077349, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.23401004, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 2925\n",
+ "Discriminator Loss: tf.Tensor(2.063012, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.22999902, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 2926\n",
+ "Discriminator Loss: tf.Tensor(2.0587566, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.23118909, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 2927\n",
+ "Discriminator Loss: tf.Tensor(2.0506847, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.2292754, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 2928\n",
+ "Discriminator Loss: tf.Tensor(2.040721, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.22731733, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 2929\n",
+ "Discriminator Loss: tf.Tensor(2.0334113, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.22455715, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 2930\n",
+ "Discriminator Loss: tf.Tensor(2.0297875, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.22210896, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 2931\n",
+ "Discriminator Loss: tf.Tensor(2.021187, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.21919642, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 2932\n",
+ "Discriminator Loss: tf.Tensor(2.020458, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.21915083, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 2933\n",
+ "Discriminator Loss: tf.Tensor(2.0161815, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.21689378, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 2934\n",
+ "Discriminator Loss: tf.Tensor(2.0129185, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.21559338, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 2935\n",
+ "Discriminator Loss: tf.Tensor(2.0106463, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.21352844, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 2936\n",
+ "Discriminator Loss: tf.Tensor(2.0088892, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.2125289, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 2937\n",
+ "Discriminator Loss: tf.Tensor(2.005482, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.21039198, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 2938\n",
+ "Discriminator Loss: tf.Tensor(2.003475, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.20714144, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 2939\n",
+ "Discriminator Loss: tf.Tensor(2.0020652, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.20647848, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 2940\n",
+ "Discriminator Loss: tf.Tensor(1.9949939, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.19900136, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 2941\n",
+ "Discriminator Loss: tf.Tensor(2.0024505, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.20639479, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 2942\n",
+ "Discriminator Loss: tf.Tensor(1.9985915, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.20338409, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 2943\n",
+ "Discriminator Loss: tf.Tensor(1.99785, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.20137878, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 2944\n",
+ "Discriminator Loss: tf.Tensor(1.9979919, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.20011258, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 2945\n",
+ "Discriminator Loss: tf.Tensor(1.9965671, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.20021462, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 2946\n",
+ "Discriminator Loss: tf.Tensor(1.9932427, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.19609444, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 2947\n",
+ "Discriminator Loss: tf.Tensor(1.9925704, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.19548911, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 2948\n",
+ "Discriminator Loss: tf.Tensor(1.9918153, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.19372034, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 2949\n",
+ "Discriminator Loss: tf.Tensor(1.9913696, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.1921016, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 2950\n",
+ "Discriminator Loss: tf.Tensor(1.9877185, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.18842791, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 2951\n",
+ "Discriminator Loss: tf.Tensor(1.992095, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.18963039, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 2952\n",
+ "Discriminator Loss: tf.Tensor(1.990621, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.19065285, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 2953\n",
+ "Discriminator Loss: tf.Tensor(1.9887192, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.18787658, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 2954\n",
+ "Discriminator Loss: tf.Tensor(1.9878234, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.1877907, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 2955\n",
+ "Discriminator Loss: tf.Tensor(1.9817469, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.18060954, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 2956\n",
+ "Discriminator Loss: tf.Tensor(1.9850879, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.18554933, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 2957\n",
+ "Discriminator Loss: tf.Tensor(1.9840966, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.18155642, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 2958\n",
+ "Discriminator Loss: tf.Tensor(1.9794734, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.17427428, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 2959\n",
+ "Discriminator Loss: tf.Tensor(1.9716591, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.16636929, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 2960\n",
+ "Discriminator Loss: tf.Tensor(1.9732181, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.16598307, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 2961\n",
+ "Discriminator Loss: tf.Tensor(1.9419379, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.13609047, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 2962\n",
+ "Discriminator Loss: tf.Tensor(1.9594456, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.1510916, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 2963\n",
+ "Discriminator Loss: tf.Tensor(1.8836623, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.08030831, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 2964\n",
+ "Discriminator Loss: tf.Tensor(1.9461262, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.1596546, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 2965\n",
+ "Discriminator Loss: tf.Tensor(1.8241444, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.04044437, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 2966\n",
+ "Discriminator Loss: tf.Tensor(1.7901185, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.017997151, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 2967\n",
+ "Discriminator Loss: tf.Tensor(1.6349778, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.16940276, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 2968\n",
+ "Discriminator Loss: tf.Tensor(1.8725067, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.17792088, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 2969\n",
+ "Discriminator Loss: tf.Tensor(1.6792616, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.20625417, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 2970\n",
+ "Discriminator Loss: tf.Tensor(1.7182463, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.5501356, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 2971\n",
+ "Discriminator Loss: tf.Tensor(1.5326507, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.18801965, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 2972\n",
+ "Discriminator Loss: tf.Tensor(1.4073706, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.3418318, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 2973\n",
+ "Discriminator Loss: tf.Tensor(1.8202639, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.882419, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 2974\n",
+ "Discriminator Loss: tf.Tensor(2.2437973, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-1.2398821, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 2975\n",
+ "Discriminator Loss: tf.Tensor(1.9543983, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.36691427, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 2976\n",
+ "Discriminator Loss: tf.Tensor(1.9600962, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.38020265, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 2977\n",
+ "Discriminator Loss: tf.Tensor(1.949782, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.37352252, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 2978\n",
+ "Discriminator Loss: tf.Tensor(1.9495722, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.37904468, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 2979\n",
+ "Discriminator Loss: tf.Tensor(1.9341733, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.3659662, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 2980\n",
+ "Discriminator Loss: tf.Tensor(1.9119514, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.3500372, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 2981\n",
+ "Discriminator Loss: tf.Tensor(1.9225105, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.3781158, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 2982\n",
+ "Discriminator Loss: tf.Tensor(1.8832349, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.34834278, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 2983\n",
+ "Discriminator Loss: tf.Tensor(1.8611296, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.33850598, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 2984\n",
+ "Discriminator Loss: tf.Tensor(1.8091488, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.32059237, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 2985\n",
+ "Discriminator Loss: tf.Tensor(1.6759224, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.19369781, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 2986\n",
+ "Discriminator Loss: tf.Tensor(1.7519554, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.3313117, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 2987\n",
+ "Discriminator Loss: tf.Tensor(1.2947539, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.24637274, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 2988\n",
+ "Discriminator Loss: tf.Tensor(1.0598314, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.03991863, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 2989\n",
+ "Discriminator Loss: tf.Tensor(2.781848, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.9514549, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 2990\n",
+ "Discriminator Loss: tf.Tensor(1.6449895, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.08823735, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 2991\n",
+ "Discriminator Loss: tf.Tensor(1.6590959, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.2529137, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 2992\n",
+ "Discriminator Loss: tf.Tensor(1.1654476, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.20796461, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 2993\n",
+ "Discriminator Loss: tf.Tensor(2.1316504, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-1.116179, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 2994\n",
+ "Discriminator Loss: tf.Tensor(1.6093134, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.5909393, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 2995\n",
+ "Discriminator Loss: tf.Tensor(0.8946832, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.62054783, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 2996\n",
+ "Discriminator Loss: tf.Tensor(0.115314715, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.9661314, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 2997\n",
+ "Discriminator Loss: tf.Tensor(0.42764974, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.8848694, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 2998\n",
+ "Discriminator Loss: tf.Tensor(4.9744287, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(4.115409, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 2999\n",
+ "Discriminator Loss: tf.Tensor(1.2148408, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.36397317, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 3000\n",
+ "Discriminator Loss: tf.Tensor(0.9190884, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.26929006, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 3001\n",
+ "Discriminator Loss: tf.Tensor(1.5821718, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.37240303, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 3002\n",
+ "Discriminator Loss: tf.Tensor(1.9673531, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.360053, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 3003\n",
+ "Discriminator Loss: tf.Tensor(1.7302966, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.011813293, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 3004\n",
+ "Discriminator Loss: tf.Tensor(1.5109923, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.070023306, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 3005\n",
+ "Discriminator Loss: tf.Tensor(1.0834107, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.44754377, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 3006\n",
+ "Discriminator Loss: tf.Tensor(1.3207321, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.2997236, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 3007\n",
+ "Discriminator Loss: tf.Tensor(2.0222073, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.2219241, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 3008\n",
+ "Discriminator Loss: tf.Tensor(1.4552878, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.036676362, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 3009\n",
+ "Discriminator Loss: tf.Tensor(1.6898494, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.39354083, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 3010\n",
+ "Discriminator Loss: tf.Tensor(1.3948622, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.037222344, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 3011\n",
+ "Discriminator Loss: tf.Tensor(1.4411112, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.36313128, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 3012\n",
+ "Discriminator Loss: tf.Tensor(1.4971888, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.43006146, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 3013\n",
+ "Discriminator Loss: tf.Tensor(1.2575164, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.7594145, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 3014\n",
+ "Discriminator Loss: tf.Tensor(1.6561279, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.02900743, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 3015\n",
+ "Discriminator Loss: tf.Tensor(0.9661054, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.3450085, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 3016\n",
+ "Discriminator Loss: tf.Tensor(2.109531, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-1.1014808, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 3017\n",
+ "Discriminator Loss: tf.Tensor(1.5555025, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.09597609, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 3018\n",
+ "Discriminator Loss: tf.Tensor(1.173415, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.38878748, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 3019\n",
+ "Discriminator Loss: tf.Tensor(0.5112747, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.991913, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 3020\n",
+ "Discriminator Loss: tf.Tensor(1.0435358, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.020931581, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 3021\n",
+ "Discriminator Loss: tf.Tensor(2.6206064, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(4.1528044, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 3022\n",
+ "Discriminator Loss: tf.Tensor(1.4694966, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.07072346, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 3023\n",
+ "Discriminator Loss: tf.Tensor(0.63812715, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.688934, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 3024\n",
+ "Discriminator Loss: tf.Tensor(1.3844554, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.34291843, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 3025\n",
+ "Discriminator Loss: tf.Tensor(2.2988107, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(3.1810467, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 3026\n",
+ "Discriminator Loss: tf.Tensor(1.323229, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.5272141, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 3027\n",
+ "Discriminator Loss: tf.Tensor(0.6913964, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.4921364, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 3028\n",
+ "Discriminator Loss: tf.Tensor(0.5389923, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.6149833, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 3029\n",
+ "Discriminator Loss: tf.Tensor(2.297926, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.4627619, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 3030\n",
+ "Discriminator Loss: tf.Tensor(0.8916665, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.23055589, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 3031\n",
+ "Discriminator Loss: tf.Tensor(1.2165931, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.10690576, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 3032\n",
+ "Discriminator Loss: tf.Tensor(1.7331381, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.0052767, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 3033\n",
+ "Discriminator Loss: tf.Tensor(0.70206386, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.5544739, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 3034\n",
+ "Discriminator Loss: tf.Tensor(0.30457506, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.7174122, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 3035\n",
+ "Discriminator Loss: tf.Tensor(1.8324263, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.92062074, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 3036\n",
+ "Discriminator Loss: tf.Tensor(0.7875664, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.49178103, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 3037\n",
+ "Discriminator Loss: tf.Tensor(1.2895839, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.14198862, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 3038\n",
+ "Discriminator Loss: tf.Tensor(3.0795186, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.6581762, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 3039\n",
+ "Discriminator Loss: tf.Tensor(1.2612125, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.43482628, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 3040\n",
+ "Discriminator Loss: tf.Tensor(0.9163894, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.38890627, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 3041\n",
+ "Discriminator Loss: tf.Tensor(0.78495824, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.41061926, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 3042\n",
+ "Discriminator Loss: tf.Tensor(1.596398, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.92567784, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 3043\n",
+ "Discriminator Loss: tf.Tensor(0.7948817, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.5257681, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 3044\n",
+ "Discriminator Loss: tf.Tensor(1.4899912, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.2656456, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 3045\n",
+ "Discriminator Loss: tf.Tensor(1.7891803, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.35612592, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 3046\n",
+ "Discriminator Loss: tf.Tensor(1.7299743, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.4403337, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 3047\n",
+ "Discriminator Loss: tf.Tensor(2.0632663, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.14143951, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 3048\n",
+ "Discriminator Loss: tf.Tensor(1.752725, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.06310899, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 3049\n",
+ "Discriminator Loss: tf.Tensor(1.8561537, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.12731393, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 3050\n",
+ "Discriminator Loss: tf.Tensor(1.6865975, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.25894025, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 3051\n",
+ "Discriminator Loss: tf.Tensor(1.6410623, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.07480259, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 3052\n",
+ "Discriminator Loss: tf.Tensor(1.6487795, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.33231053, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 3053\n",
+ "Discriminator Loss: tf.Tensor(1.5593975, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.13229166, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 3054\n",
+ "Discriminator Loss: tf.Tensor(2.2919154, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.2676164, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 3055\n",
+ "Discriminator Loss: tf.Tensor(1.7357675, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.714166, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 3056\n",
+ "Discriminator Loss: tf.Tensor(1.9406692, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.039940447, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 3057\n",
+ "Discriminator Loss: tf.Tensor(1.9337308, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.018373527, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 3058\n",
+ "Discriminator Loss: tf.Tensor(1.9100847, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.00034644394, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 3059\n",
+ "Discriminator Loss: tf.Tensor(1.8686908, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.027908908, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 3060\n",
+ "Discriminator Loss: tf.Tensor(1.8209922, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.06673279, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 3061\n",
+ "Discriminator Loss: tf.Tensor(1.686728, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.24843667, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 3062\n",
+ "Discriminator Loss: tf.Tensor(1.4743812, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.39779964, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 3063\n",
+ "Discriminator Loss: tf.Tensor(1.6233234, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.63057965, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 3064\n",
+ "Discriminator Loss: tf.Tensor(1.2570935, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.59074694, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 3065\n",
+ "Discriminator Loss: tf.Tensor(1.1391113, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.41609022, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 3066\n",
+ "Discriminator Loss: tf.Tensor(3.8235002, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(3.2779896, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 3067\n",
+ "Discriminator Loss: tf.Tensor(1.9167578, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.90633124, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 3068\n",
+ "Discriminator Loss: tf.Tensor(1.974567, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.013854295, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 3069\n",
+ "Discriminator Loss: tf.Tensor(1.9020483, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.060637552, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 3070\n",
+ "Discriminator Loss: tf.Tensor(1.8389724, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.15262592, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 3071\n",
+ "Discriminator Loss: tf.Tensor(1.6214035, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.4282453, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 3072\n",
+ "Discriminator Loss: tf.Tensor(1.3727517, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.7711305, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 3073\n",
+ "Discriminator Loss: tf.Tensor(1.2917016, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.386702, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 3074\n",
+ "Discriminator Loss: tf.Tensor(1.5493767, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.50784534, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 3075\n",
+ "Discriminator Loss: tf.Tensor(1.5160866, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.48778963, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 3076\n",
+ "Discriminator Loss: tf.Tensor(1.7370782, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.18804856, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 3077\n",
+ "Discriminator Loss: tf.Tensor(1.4886421, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.15906644, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 3078\n",
+ "Discriminator Loss: tf.Tensor(1.0999781, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.1886117, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 3079\n",
+ "Discriminator Loss: tf.Tensor(2.0396986, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-1.0349911, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 3080\n",
+ "Discriminator Loss: tf.Tensor(1.8816895, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.24915834, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 3081\n",
+ "Discriminator Loss: tf.Tensor(1.7524891, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.15591268, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 3082\n",
+ "Discriminator Loss: tf.Tensor(1.4642633, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.22290929, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 3083\n",
+ "Discriminator Loss: tf.Tensor(0.7584645, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.67328316, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 3084\n",
+ "Discriminator Loss: tf.Tensor(1.2874955, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.1144998, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 3085\n",
+ "Discriminator Loss: tf.Tensor(1.90853, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.9023795, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 3086\n",
+ "Discriminator Loss: tf.Tensor(1.8168652, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.07033701, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 3087\n",
+ "Discriminator Loss: tf.Tensor(1.8146787, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.23063181, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 3088\n",
+ "Discriminator Loss: tf.Tensor(1.3517973, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.23844714, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 3089\n",
+ "Discriminator Loss: tf.Tensor(0.22917542, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.1771117, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 3090\n",
+ "Discriminator Loss: tf.Tensor(1.9987073, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.9845713, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 3091\n",
+ "Discriminator Loss: tf.Tensor(2.9224887, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.4527757, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 3092\n",
+ "Discriminator Loss: tf.Tensor(1.355494, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.009590162, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 3093\n",
+ "Discriminator Loss: tf.Tensor(1.2451026, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.059831843, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 3094\n",
+ "Discriminator Loss: tf.Tensor(1.6693368, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.02618505, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 3095\n",
+ "Discriminator Loss: tf.Tensor(1.3056138, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.92811155, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 3096\n",
+ "Discriminator Loss: tf.Tensor(1.077794, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.0034942925, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 3097\n",
+ "Discriminator Loss: tf.Tensor(2.725017, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.992788, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 3098\n",
+ "Discriminator Loss: tf.Tensor(1.5549942, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.5016512, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 3099\n",
+ "Discriminator Loss: tf.Tensor(1.5684136, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.44976592, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 3100\n",
+ "Discriminator Loss: tf.Tensor(0.983737, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.18119466, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 3101\n",
+ "Discriminator Loss: tf.Tensor(1.3981149, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.02570202, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 3102\n",
+ "Discriminator Loss: tf.Tensor(0.9562982, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.138862, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 3103\n",
+ "Discriminator Loss: tf.Tensor(2.2908294, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-1.2686938, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 3104\n",
+ "Discriminator Loss: tf.Tensor(1.5900965, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.14771344, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 3105\n",
+ "Discriminator Loss: tf.Tensor(1.7049503, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.24044462, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 3106\n",
+ "Discriminator Loss: tf.Tensor(0.87604684, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.6814361, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 3107\n",
+ "Discriminator Loss: tf.Tensor(0.8758246, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.14972351, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 3108\n",
+ "Discriminator Loss: tf.Tensor(3.9828563, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.474559, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 3109\n",
+ "Discriminator Loss: tf.Tensor(1.4480671, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.25322202, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 3110\n",
+ "Discriminator Loss: tf.Tensor(1.3906577, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.12982462, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 3111\n",
+ "Discriminator Loss: tf.Tensor(1.6616771, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.22255792, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 3112\n",
+ "Discriminator Loss: tf.Tensor(1.3475049, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.0043531707, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 3113\n",
+ "Discriminator Loss: tf.Tensor(1.1367958, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.29449758, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 3114\n",
+ "Discriminator Loss: tf.Tensor(0.97073853, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.53119075, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 3115\n",
+ "Discriminator Loss: tf.Tensor(1.766026, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.6173544, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 3116\n",
+ "Discriminator Loss: tf.Tensor(1.4922948, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.27889577, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 3117\n",
+ "Discriminator Loss: tf.Tensor(1.4661587, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.077237375, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 3118\n",
+ "Discriminator Loss: tf.Tensor(1.1171454, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.12837897, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 3119\n",
+ "Discriminator Loss: tf.Tensor(1.2913678, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.0568603, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 3120\n",
+ "Discriminator Loss: tf.Tensor(1.4314411, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.38654527, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 3121\n",
+ "Discriminator Loss: tf.Tensor(1.5524461, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.967855, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 3122\n",
+ "Discriminator Loss: tf.Tensor(1.4878925, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.13916035, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 3123\n",
+ "Discriminator Loss: tf.Tensor(1.4330168, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.31758937, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 3124\n",
+ "Discriminator Loss: tf.Tensor(1.0291653, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.7734464, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 3125\n",
+ "Discriminator Loss: tf.Tensor(0.9584296, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.3361262, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 3126\n",
+ "Discriminator Loss: tf.Tensor(1.0346005, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.017501771, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 3127\n",
+ "Discriminator Loss: tf.Tensor(1.3296002, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.0879598, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 3128\n",
+ "Discriminator Loss: tf.Tensor(1.1675653, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.3685087, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 3129\n",
+ "Discriminator Loss: tf.Tensor(2.0728734, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-1.0567575, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 3130\n",
+ "Discriminator Loss: tf.Tensor(1.5912095, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.1740827, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 3131\n",
+ "Discriminator Loss: tf.Tensor(1.5030464, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.10935479, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 3132\n",
+ "Discriminator Loss: tf.Tensor(1.1945894, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.7384381, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 3133\n",
+ "Discriminator Loss: tf.Tensor(1.0246843, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.75828314, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 3134\n",
+ "Discriminator Loss: tf.Tensor(0.9648212, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.5085516, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 3135\n",
+ "Discriminator Loss: tf.Tensor(3.9087577, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(4.0794377, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 3136\n",
+ "Discriminator Loss: tf.Tensor(1.4979411, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.07599396, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 3137\n",
+ "Discriminator Loss: tf.Tensor(1.56672, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.1929921, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 3138\n",
+ "Discriminator Loss: tf.Tensor(1.1987183, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.19059433, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 3139\n",
+ "Discriminator Loss: tf.Tensor(0.87780046, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.2634996, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 3140\n",
+ "Discriminator Loss: tf.Tensor(1.8329786, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.4412255, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 3141\n",
+ "Discriminator Loss: tf.Tensor(1.1840162, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.055274997, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 3142\n",
+ "Discriminator Loss: tf.Tensor(1.179426, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.13001718, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 3143\n",
+ "Discriminator Loss: tf.Tensor(1.141746, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.79063696, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 3144\n",
+ "Discriminator Loss: tf.Tensor(1.1924115, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.10641525, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 3145\n",
+ "Discriminator Loss: tf.Tensor(1.5866241, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.6659021, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 3146\n",
+ "Discriminator Loss: tf.Tensor(0.74237114, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.27989888, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 3147\n",
+ "Discriminator Loss: tf.Tensor(1.7415127, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.3118069, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 3148\n",
+ "Discriminator Loss: tf.Tensor(1.2574303, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.0406965, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 3149\n",
+ "Discriminator Loss: tf.Tensor(1.4413954, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.39365768, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 3150\n",
+ "Discriminator Loss: tf.Tensor(1.1424196, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.20738666, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 3151\n",
+ "Discriminator Loss: tf.Tensor(0.9518337, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.20227711, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 3152\n",
+ "Discriminator Loss: tf.Tensor(1.60803, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.2590195, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 3153\n",
+ "Discriminator Loss: tf.Tensor(1.7962483, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.09824613, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 3154\n",
+ "Discriminator Loss: tf.Tensor(0.8050774, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.60266656, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 3155\n",
+ "Discriminator Loss: tf.Tensor(1.589808, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.16524585, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 3156\n",
+ "Discriminator Loss: tf.Tensor(1.7197809, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.8618525, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 3157\n",
+ "Discriminator Loss: tf.Tensor(1.099131, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.41725802, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 3158\n",
+ "Discriminator Loss: tf.Tensor(1.013423, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.16386303, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 3159\n",
+ "Discriminator Loss: tf.Tensor(1.4738413, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.2661802, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 3160\n",
+ "Discriminator Loss: tf.Tensor(229.84985, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.10927532, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 3161\n",
+ "Discriminator Loss: tf.Tensor(11.384015, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.24181414, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 3162\n",
+ "Discriminator Loss: tf.Tensor(3.2274334, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.36937532, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 3163\n",
+ "Discriminator Loss: tf.Tensor(2.411357, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.31916738, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 3164\n",
+ "Discriminator Loss: tf.Tensor(2.1916406, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.31130382, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 3165\n",
+ "Discriminator Loss: tf.Tensor(2.1361084, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.30019906, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 3166\n",
+ "Discriminator Loss: tf.Tensor(2.089902, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.29409042, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 3167\n",
+ "Discriminator Loss: tf.Tensor(2.0754013, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.28505418, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 3168\n",
+ "Discriminator Loss: tf.Tensor(2.0577025, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.28102237, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 3169\n",
+ "Discriminator Loss: tf.Tensor(2.044388, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.27749708, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 3170\n",
+ "Discriminator Loss: tf.Tensor(2.0377254, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.2706821, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 3171\n",
+ "Discriminator Loss: tf.Tensor(2.027881, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.26291263, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 3172\n",
+ "Discriminator Loss: tf.Tensor(2.0231977, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.2575708, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 3173\n",
+ "Discriminator Loss: tf.Tensor(2.013963, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.25244698, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 3174\n",
+ "Discriminator Loss: tf.Tensor(2.012568, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.2488357, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 3175\n",
+ "Discriminator Loss: tf.Tensor(2.0072212, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.24314444, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 3176\n",
+ "Discriminator Loss: tf.Tensor(2.0093184, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.24739246, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 3177\n",
+ "Discriminator Loss: tf.Tensor(2.0052428, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.24275471, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 3178\n",
+ "Discriminator Loss: tf.Tensor(2.003993, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.24050929, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 3179\n",
+ "Discriminator Loss: tf.Tensor(2.0008519, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.23661773, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 3180\n",
+ "Discriminator Loss: tf.Tensor(1.9982059, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.23221464, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 3181\n",
+ "Discriminator Loss: tf.Tensor(2.001355, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.2374876, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 3182\n",
+ "Discriminator Loss: tf.Tensor(1.9973673, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.23461396, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 3183\n",
+ "Discriminator Loss: tf.Tensor(1.9942783, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.2308855, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 3184\n",
+ "Discriminator Loss: tf.Tensor(1.9954731, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.22723216, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 3185\n",
+ "Discriminator Loss: tf.Tensor(1.9926958, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.22134562, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 3186\n",
+ "Discriminator Loss: tf.Tensor(1.9935002, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.22716959, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 3187\n",
+ "Discriminator Loss: tf.Tensor(1.9922849, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.22437692, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 3188\n",
+ "Discriminator Loss: tf.Tensor(1.991805, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.22411573, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 3189\n",
+ "Discriminator Loss: tf.Tensor(1.9921463, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.22256537, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 3190\n",
+ "Discriminator Loss: tf.Tensor(1.9839802, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.21657534, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 3191\n",
+ "Discriminator Loss: tf.Tensor(1.9858795, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.22070992, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 3192\n",
+ "Discriminator Loss: tf.Tensor(1.986533, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.22151668, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 3193\n",
+ "Discriminator Loss: tf.Tensor(1.9981165, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.22129835, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 3194\n",
+ "Discriminator Loss: tf.Tensor(1.987614, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.23046999, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 3195\n",
+ "Discriminator Loss: tf.Tensor(1.985798, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.23168711, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 3196\n",
+ "Discriminator Loss: tf.Tensor(1.9852486, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.23149478, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 3197\n",
+ "Discriminator Loss: tf.Tensor(1.9846666, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.22239816, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 3198\n",
+ "Discriminator Loss: tf.Tensor(1.9845932, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.2327059, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 3199\n",
+ "Discriminator Loss: tf.Tensor(1.975708, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.22281556, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 3200\n",
+ "Discriminator Loss: tf.Tensor(1.9752271, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.22905968, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 3201\n",
+ "Discriminator Loss: tf.Tensor(1.970694, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.22257395, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 3202\n",
+ "Discriminator Loss: tf.Tensor(1.9594463, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.22623305, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 3203\n",
+ "Discriminator Loss: tf.Tensor(1.9157091, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.18948148, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 3204\n",
+ "Discriminator Loss: tf.Tensor(1.8687102, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.1844848, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 3205\n",
+ "Discriminator Loss: tf.Tensor(1.781593, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.08473752, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 3206\n",
+ "Discriminator Loss: tf.Tensor(1.9481788, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.33292797, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 3207\n",
+ "Discriminator Loss: tf.Tensor(1.8446808, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.24221206, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 3208\n",
+ "Discriminator Loss: tf.Tensor(1.7473543, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.07108199, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 3209\n",
+ "Discriminator Loss: tf.Tensor(1.9227928, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.4160906, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 3210\n",
+ "Discriminator Loss: tf.Tensor(1.7239397, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.13700956, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 3211\n",
+ "Discriminator Loss: tf.Tensor(1.6438892, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.1946593, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 3212\n",
+ "Discriminator Loss: tf.Tensor(1.7787824, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.18975563, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 3213\n",
+ "Discriminator Loss: tf.Tensor(1.9325273, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.6644247, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 3214\n",
+ "Discriminator Loss: tf.Tensor(2.0292032, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.611081, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 3215\n",
+ "Discriminator Loss: tf.Tensor(1.8413382, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.43540153, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 3216\n",
+ "Discriminator Loss: tf.Tensor(1.8226001, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.42258397, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 3217\n",
+ "Discriminator Loss: tf.Tensor(1.7450688, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.21648161, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 3218\n",
+ "Discriminator Loss: tf.Tensor(1.7987288, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.40154174, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 3219\n",
+ "Discriminator Loss: tf.Tensor(1.6066114, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.1852055, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 3220\n",
+ "Discriminator Loss: tf.Tensor(2.429389, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.024255628, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 3221\n",
+ "Discriminator Loss: tf.Tensor(1.4342934, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.14027418, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 3222\n",
+ "Discriminator Loss: tf.Tensor(1.4157423, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.019248543, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 3223\n",
+ "Discriminator Loss: tf.Tensor(1.4900126, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.11929524, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 3224\n",
+ "Discriminator Loss: tf.Tensor(1.3708897, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.23657435, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 3225\n",
+ "Discriminator Loss: tf.Tensor(1.6501123, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.0567137, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 3226\n",
+ "Discriminator Loss: tf.Tensor(2.4832113, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-1.4765081, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 3227\n",
+ "Discriminator Loss: tf.Tensor(1.8873173, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.2497763, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 3228\n",
+ "Discriminator Loss: tf.Tensor(1.7898362, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.14973351, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 3229\n",
+ "Discriminator Loss: tf.Tensor(1.6911833, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.059171963, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 3230\n",
+ "Discriminator Loss: tf.Tensor(1.5544999, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.18173003, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 3231\n",
+ "Discriminator Loss: tf.Tensor(1.4222183, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.36001816, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 3232\n",
+ "Discriminator Loss: tf.Tensor(1.3118693, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.7297668, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 3233\n",
+ "Discriminator Loss: tf.Tensor(1.1211174, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.4233838, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 3234\n",
+ "Discriminator Loss: tf.Tensor(2.1861644, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.3134253, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 3235\n",
+ "Discriminator Loss: tf.Tensor(2.046159, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-1.0410836, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 3236\n",
+ "Discriminator Loss: tf.Tensor(1.8535156, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.29868895, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 3237\n",
+ "Discriminator Loss: tf.Tensor(1.861159, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.3498466, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 3238\n",
+ "Discriminator Loss: tf.Tensor(1.7696002, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.28076202, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 3239\n",
+ "Discriminator Loss: tf.Tensor(1.5385503, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.07387287, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 3240\n",
+ "Discriminator Loss: tf.Tensor(1.6167283, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.20706584, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 3241\n",
+ "Discriminator Loss: tf.Tensor(0.7902201, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.83329934, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 3242\n",
+ "Discriminator Loss: tf.Tensor(0.9017171, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.12246442, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 3243\n",
+ "Discriminator Loss: tf.Tensor(4.9236746, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(4.6511197, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 3244\n",
+ "Discriminator Loss: tf.Tensor(1.4354367, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.37367287, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 3245\n",
+ "Discriminator Loss: tf.Tensor(1.5746875, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.027449012, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 3246\n",
+ "Discriminator Loss: tf.Tensor(1.4015381, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.30306333, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 3247\n",
+ "Discriminator Loss: tf.Tensor(0.88795614, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.43865398, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 3248\n",
+ "Discriminator Loss: tf.Tensor(1.6114218, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.46855474, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 3249\n",
+ "Discriminator Loss: tf.Tensor(0.43657184, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.96595126, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 3250\n",
+ "Discriminator Loss: tf.Tensor(1.8048636, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.75954074, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 3251\n",
+ "Discriminator Loss: tf.Tensor(1.1827576, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.0803995, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 3252\n",
+ "Discriminator Loss: tf.Tensor(1.2641432, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.18564372, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 3253\n",
+ "Discriminator Loss: tf.Tensor(1.1385772, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.73835945, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 3254\n",
+ "Discriminator Loss: tf.Tensor(0.6393808, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.2933925, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 3255\n",
+ "Discriminator Loss: tf.Tensor(1.3766233, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.31078038, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 3256\n",
+ "Discriminator Loss: tf.Tensor(3.2681508, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.5511165, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 3257\n",
+ "Discriminator Loss: tf.Tensor(1.63665, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.12985457, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 3258\n",
+ "Discriminator Loss: tf.Tensor(1.7768474, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.13356489, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 3259\n",
+ "Discriminator Loss: tf.Tensor(1.6630834, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.063436925, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 3260\n",
+ "Discriminator Loss: tf.Tensor(1.7379909, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.17116249, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 3261\n",
+ "Discriminator Loss: tf.Tensor(1.7565912, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.006117398, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 3262\n",
+ "Discriminator Loss: tf.Tensor(1.5089569, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.15774699, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 3263\n",
+ "Discriminator Loss: tf.Tensor(1.766637, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.16110621, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 3264\n",
+ "Discriminator Loss: tf.Tensor(1.4612982, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.22970967, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 3265\n",
+ "Discriminator Loss: tf.Tensor(1.6475, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.08725145, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 3266\n",
+ "Discriminator Loss: tf.Tensor(1.3237941, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.46467677, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 3267\n",
+ "Discriminator Loss: tf.Tensor(1.5132179, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.11160808, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 3268\n",
+ "Discriminator Loss: tf.Tensor(1.2648506, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.0759581, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 3269\n",
+ "Discriminator Loss: tf.Tensor(2.2091053, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-1.1715354, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 3270\n",
+ "Discriminator Loss: tf.Tensor(1.6642667, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.18629794, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 3271\n",
+ "Discriminator Loss: tf.Tensor(1.7995131, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.06518372, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 3272\n",
+ "Discriminator Loss: tf.Tensor(1.3194722, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.3953618, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 3273\n",
+ "Discriminator Loss: tf.Tensor(1.303683, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.61158556, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 3274\n",
+ "Discriminator Loss: tf.Tensor(0.9496636, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.35768947, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 3275\n",
+ "Discriminator Loss: tf.Tensor(1.375495, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.2033656, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 3276\n",
+ "Discriminator Loss: tf.Tensor(2.2379766, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-1.2270577, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 3277\n",
+ "Discriminator Loss: tf.Tensor(1.6917342, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.0886557, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 3278\n",
+ "Discriminator Loss: tf.Tensor(1.1955928, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.17780517, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 3279\n",
+ "Discriminator Loss: tf.Tensor(0.5840705, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.98753256, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 3280\n",
+ "Discriminator Loss: tf.Tensor(1.8326038, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.8003373, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 3281\n",
+ "Discriminator Loss: tf.Tensor(1.6811882, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.9685026, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 3282\n",
+ "Discriminator Loss: tf.Tensor(1.6179562, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.43108353, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 3283\n",
+ "Discriminator Loss: tf.Tensor(1.2865376, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.30153853, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 3284\n",
+ "Discriminator Loss: tf.Tensor(1.264291, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.22719769, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 3285\n",
+ "Discriminator Loss: tf.Tensor(1.6304561, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.2996361, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 3286\n",
+ "Discriminator Loss: tf.Tensor(1.7735755, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.751879, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 3287\n",
+ "Discriminator Loss: tf.Tensor(1.8257796, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.0445156, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 3288\n",
+ "Discriminator Loss: tf.Tensor(1.6011288, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.11554706, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 3289\n",
+ "Discriminator Loss: tf.Tensor(1.6072878, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.10568283, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 3290\n",
+ "Discriminator Loss: tf.Tensor(1.4072595, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.2066466, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 3291\n",
+ "Discriminator Loss: tf.Tensor(0.8384082, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.94518596, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 3292\n",
+ "Discriminator Loss: tf.Tensor(1.6485577, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.38809004, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 3293\n",
+ "Discriminator Loss: tf.Tensor(2.5378172, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.6184747, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 3294\n",
+ "Discriminator Loss: tf.Tensor(1.5215014, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.058490593, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 3295\n",
+ "Discriminator Loss: tf.Tensor(1.6341779, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.29667318, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 3296\n",
+ "Discriminator Loss: tf.Tensor(1.7545907, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.22300321, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 3297\n",
+ "Discriminator Loss: tf.Tensor(1.5380743, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.20794828, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 3298\n",
+ "Discriminator Loss: tf.Tensor(1.3156585, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.05762832, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 3299\n",
+ "Discriminator Loss: tf.Tensor(1.2547284, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.08741728, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 3300\n",
+ "Discriminator Loss: tf.Tensor(1.6977072, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.3310136, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 3301\n",
+ "Discriminator Loss: tf.Tensor(1.1428896, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.12319835, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 3302\n",
+ "Discriminator Loss: tf.Tensor(1.4462508, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.35207322, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 3303\n",
+ "Discriminator Loss: tf.Tensor(1.6942887, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.1260208, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 3304\n",
+ "Discriminator Loss: tf.Tensor(1.2770116, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.19761892, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 3305\n",
+ "Discriminator Loss: tf.Tensor(1.3802685, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.28818896, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 3306\n",
+ "Discriminator Loss: tf.Tensor(1.6565595, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.77644396, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 3307\n",
+ "Discriminator Loss: tf.Tensor(0.9597147, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.08318315, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 3308\n",
+ "Discriminator Loss: tf.Tensor(1.6304487, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.27079424, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 3309\n",
+ "Discriminator Loss: tf.Tensor(0.89684993, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.2660134, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 3310\n",
+ "Discriminator Loss: tf.Tensor(1.9155289, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.903234, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 3311\n",
+ "Discriminator Loss: tf.Tensor(1.8343657, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.1250485, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 3312\n",
+ "Discriminator Loss: tf.Tensor(1.4558619, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.04918079, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 3313\n",
+ "Discriminator Loss: tf.Tensor(1.0732994, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.5873551, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 3314\n",
+ "Discriminator Loss: tf.Tensor(1.117319, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.020875504, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 3315\n",
+ "Discriminator Loss: tf.Tensor(3.0568395, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.518796, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 3316\n",
+ "Discriminator Loss: tf.Tensor(1.4604551, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.1958019, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 3317\n",
+ "Discriminator Loss: tf.Tensor(1.0750602, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.21598478, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 3318\n",
+ "Discriminator Loss: tf.Tensor(1.3322096, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.21468937, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 3319\n",
+ "Discriminator Loss: tf.Tensor(1.2121394, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.1275997, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 3320\n",
+ "Discriminator Loss: tf.Tensor(0.85867476, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.47998786, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 3321\n",
+ "Discriminator Loss: tf.Tensor(0.42702323, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.70003223, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 3322\n",
+ "Discriminator Loss: tf.Tensor(1.5760525, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.1952194, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 3323\n",
+ "Discriminator Loss: tf.Tensor(2.9484055, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(3.6027145, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 3324\n",
+ "Discriminator Loss: tf.Tensor(1.0353768, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.65069294, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 3325\n",
+ "Discriminator Loss: tf.Tensor(0.43391234, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.80817395, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 3326\n",
+ "Discriminator Loss: tf.Tensor(0.44732532, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.72522515, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 3327\n",
+ "Discriminator Loss: tf.Tensor(3.7023892, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.258592, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 3328\n",
+ "Discriminator Loss: tf.Tensor(1.2087231, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.13909672, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 3329\n",
+ "Discriminator Loss: tf.Tensor(1.5947098, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.062490147, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 3330\n",
+ "Discriminator Loss: tf.Tensor(0.78766656, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.6529036, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 3331\n",
+ "Discriminator Loss: tf.Tensor(1.7734411, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.6279584, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 3332\n",
+ "Discriminator Loss: tf.Tensor(1.5740765, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.2142836, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 3333\n",
+ "Discriminator Loss: tf.Tensor(1.3624338, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.05702731, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 3334\n",
+ "Discriminator Loss: tf.Tensor(1.3720376, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.5633015, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 3335\n",
+ "Discriminator Loss: tf.Tensor(1.6867774, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.32357964, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 3336\n",
+ "Discriminator Loss: tf.Tensor(1.2485615, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.13175978, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 3337\n",
+ "Discriminator Loss: tf.Tensor(1.1845073, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.7819328, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 3338\n",
+ "Discriminator Loss: tf.Tensor(1.8796389, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.65802264, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 3339\n",
+ "Discriminator Loss: tf.Tensor(2.0416815, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.7132138, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 3340\n",
+ "Discriminator Loss: tf.Tensor(1.6171051, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.16676019, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 3341\n",
+ "Discriminator Loss: tf.Tensor(1.3153355, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.17279977, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 3342\n",
+ "Discriminator Loss: tf.Tensor(1.4395269, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.059216008, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 3343\n",
+ "Discriminator Loss: tf.Tensor(0.9624866, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.7214568, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 3344\n",
+ "Discriminator Loss: tf.Tensor(1.8868237, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.63960665, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 3345\n",
+ "Discriminator Loss: tf.Tensor(1.6004877, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.3682189, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 3346\n",
+ "Discriminator Loss: tf.Tensor(1.7508731, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.23602037, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 3347\n",
+ "Discriminator Loss: tf.Tensor(1.3396465, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.28571668, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 3348\n",
+ "Discriminator Loss: tf.Tensor(1.2091063, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.40020418, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 3349\n",
+ "Discriminator Loss: tf.Tensor(1.3670745, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.3492416, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 3350\n",
+ "Discriminator Loss: tf.Tensor(0.787679, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.95834476, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 3351\n",
+ "Discriminator Loss: tf.Tensor(2.2616308, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-1.125419, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 3352\n",
+ "Discriminator Loss: tf.Tensor(1.7827466, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.0585403, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 3353\n",
+ "Discriminator Loss: tf.Tensor(1.5901195, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.07404535, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 3354\n",
+ "Discriminator Loss: tf.Tensor(1.2899877, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.31436267, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 3355\n",
+ "Discriminator Loss: tf.Tensor(1.0283147, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.8325451, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 3356\n",
+ "Discriminator Loss: tf.Tensor(1.5141073, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.28702152, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 3357\n",
+ "Discriminator Loss: tf.Tensor(2.5656347, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.3344345, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 3358\n",
+ "Discriminator Loss: tf.Tensor(1.5182551, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.007503619, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 3359\n",
+ "Discriminator Loss: tf.Tensor(1.6399395, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.24927114, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 3360\n",
+ "Discriminator Loss: tf.Tensor(1.3202398, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.06921, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 3361\n",
+ "Discriminator Loss: tf.Tensor(1.2779195, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.039890394, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 3362\n",
+ "Discriminator Loss: tf.Tensor(0.9996363, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.0507611, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 3363\n",
+ "Discriminator Loss: tf.Tensor(1.9841872, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.9558756, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 3364\n",
+ "Discriminator Loss: tf.Tensor(1.8705701, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.19715738, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 3365\n",
+ "Discriminator Loss: tf.Tensor(1.526774, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.012806382, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 3366\n",
+ "Discriminator Loss: tf.Tensor(0.98791444, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.66304, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 3367\n",
+ "Discriminator Loss: tf.Tensor(1.3050671, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.32112288, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 3368\n",
+ "Discriminator Loss: tf.Tensor(1.8989391, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.7506404, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 3369\n",
+ "Discriminator Loss: tf.Tensor(1.3778121, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.36460736, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 3370\n",
+ "Discriminator Loss: tf.Tensor(1.7405978, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.17450814, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 3371\n",
+ "Discriminator Loss: tf.Tensor(1.602448, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.07546211, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 3372\n",
+ "Discriminator Loss: tf.Tensor(1.1782974, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.20703955, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 3373\n",
+ "Discriminator Loss: tf.Tensor(0.9170407, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.045709, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 3374\n",
+ "Discriminator Loss: tf.Tensor(2.1258502, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-1.1013049, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 3375\n",
+ "Discriminator Loss: tf.Tensor(1.741709, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.0025430548, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 3376\n",
+ "Discriminator Loss: tf.Tensor(1.6844509, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.30133477, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 3377\n",
+ "Discriminator Loss: tf.Tensor(1.4322118, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.5098013, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 3378\n",
+ "Discriminator Loss: tf.Tensor(1.3562052, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.45007202, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 3379\n",
+ "Discriminator Loss: tf.Tensor(0.5516033, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.0173954, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 3380\n",
+ "Discriminator Loss: tf.Tensor(1.6207991, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.5822163, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 3381\n",
+ "Discriminator Loss: tf.Tensor(2.0474489, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.14843, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 3382\n",
+ "Discriminator Loss: tf.Tensor(1.3925651, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.07640886, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 3383\n",
+ "Discriminator Loss: tf.Tensor(1.4996514, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.1274211, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 3384\n",
+ "Discriminator Loss: tf.Tensor(1.076945, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.63125753, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 3385\n",
+ "Discriminator Loss: tf.Tensor(1.1744229, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.25176546, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 3386\n",
+ "Discriminator Loss: tf.Tensor(1.0998495, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.5519992, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 3387\n",
+ "Discriminator Loss: tf.Tensor(2.5104265, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-1.4955047, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 3388\n",
+ "Discriminator Loss: tf.Tensor(1.8350098, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.3072146, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 3389\n",
+ "Discriminator Loss: tf.Tensor(1.7663553, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.23554607, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 3390\n",
+ "Discriminator Loss: tf.Tensor(1.4163848, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.06905616, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 3391\n",
+ "Discriminator Loss: tf.Tensor(1.7056226, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.5478718, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 3392\n",
+ "Discriminator Loss: tf.Tensor(1.6960547, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.2503576, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 3393\n",
+ "Discriminator Loss: tf.Tensor(1.1091452, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.54453325, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 3394\n",
+ "Discriminator Loss: tf.Tensor(1.669122, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.435598, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 3395\n",
+ "Discriminator Loss: tf.Tensor(2.5496418, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.259761, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 3396\n",
+ "Discriminator Loss: tf.Tensor(1.4946697, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.05005044, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 3397\n",
+ "Discriminator Loss: tf.Tensor(1.5938685, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.14279838, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 3398\n",
+ "Discriminator Loss: tf.Tensor(1.2185568, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.25724044, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 3399\n",
+ "Discriminator Loss: tf.Tensor(0.91277397, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.44643593, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 3400\n",
+ "Discriminator Loss: tf.Tensor(1.6279861, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.1645848, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 3401\n",
+ "Discriminator Loss: tf.Tensor(2.2323117, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-1.2115, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 3402\n",
+ "Discriminator Loss: tf.Tensor(1.3806524, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.27769077, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 3403\n",
+ "Discriminator Loss: tf.Tensor(1.5517583, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.16972852, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 3404\n",
+ "Discriminator Loss: tf.Tensor(1.1650344, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.49140826, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 3405\n",
+ "Discriminator Loss: tf.Tensor(1.478862, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.0040053106, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 3406\n",
+ "Discriminator Loss: tf.Tensor(1.513258, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.8141246, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 3407\n",
+ "Discriminator Loss: tf.Tensor(1.6636356, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.65545356, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 3408\n",
+ "Discriminator Loss: tf.Tensor(1.6139975, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.095008425, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 3409\n",
+ "Discriminator Loss: tf.Tensor(1.465615, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.020081157, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 3410\n",
+ "Discriminator Loss: tf.Tensor(1.1232886, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.6113473, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 3411\n",
+ "Discriminator Loss: tf.Tensor(1.416846, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.14057356, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 3412\n",
+ "Discriminator Loss: tf.Tensor(1.4074627, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.7529992, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 3413\n",
+ "Discriminator Loss: tf.Tensor(1.7976848, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.78151274, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 3414\n",
+ "Discriminator Loss: tf.Tensor(0.945231, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.7018123, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 3415\n",
+ "Discriminator Loss: tf.Tensor(0.6447233, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.3795153, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 3416\n",
+ "Discriminator Loss: tf.Tensor(3.549912, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.9619875, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 3417\n",
+ "Discriminator Loss: tf.Tensor(1.5780985, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.18674238, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 3418\n",
+ "Discriminator Loss: tf.Tensor(1.3506306, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.009860038, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 3419\n",
+ "Discriminator Loss: tf.Tensor(1.1031836, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.31951895, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 3420\n",
+ "Discriminator Loss: tf.Tensor(1.041122, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.40575942, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 3421\n",
+ "Discriminator Loss: tf.Tensor(1.840808, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.1983068, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 3422\n",
+ "Discriminator Loss: tf.Tensor(1.5538142, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.53987914, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 3423\n",
+ "Discriminator Loss: tf.Tensor(1.7236423, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.024770716, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 3424\n",
+ "Discriminator Loss: tf.Tensor(1.547035, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.07000344, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 3425\n",
+ "Discriminator Loss: tf.Tensor(1.3902429, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.050846506, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 3426\n",
+ "Discriminator Loss: tf.Tensor(1.1230665, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.35424802, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 3427\n",
+ "Discriminator Loss: tf.Tensor(1.0481585, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.50131273, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 3428\n",
+ "Discriminator Loss: tf.Tensor(2.21851, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.9376792, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 3429\n",
+ "Discriminator Loss: tf.Tensor(1.7162645, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.7033141, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 3430\n",
+ "Discriminator Loss: tf.Tensor(1.8042221, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.02372734, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 3431\n",
+ "Discriminator Loss: tf.Tensor(1.7040895, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.27203938, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 3432\n",
+ "Discriminator Loss: tf.Tensor(1.529519, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.14938644, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 3433\n",
+ "Discriminator Loss: tf.Tensor(1.0760382, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.45921263, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 3434\n",
+ "Discriminator Loss: tf.Tensor(1.0580386, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.06428573, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 3435\n",
+ "Discriminator Loss: tf.Tensor(2.3093643, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.2660792, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 3436\n",
+ "Discriminator Loss: tf.Tensor(1.4766614, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.08915574, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 3437\n",
+ "Discriminator Loss: tf.Tensor(1.2089758, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.074152, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 3438\n",
+ "Discriminator Loss: tf.Tensor(1.0300407, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.75050753, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 3439\n",
+ "Discriminator Loss: tf.Tensor(1.0507199, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.0073441095, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 3440\n",
+ "Discriminator Loss: tf.Tensor(2.3465488, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.0287318, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 3441\n",
+ "Discriminator Loss: tf.Tensor(1.2277339, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.21987186, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 3442\n",
+ "Discriminator Loss: tf.Tensor(1.2895935, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.07078644, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 3443\n",
+ "Discriminator Loss: tf.Tensor(0.87861466, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.90514326, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 3444\n",
+ "Discriminator Loss: tf.Tensor(1.3621619, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.20718896, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 3445\n",
+ "Discriminator Loss: tf.Tensor(2.469866, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.1111708, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 3446\n",
+ "Discriminator Loss: tf.Tensor(1.15769, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.34182146, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 3447\n",
+ "Discriminator Loss: tf.Tensor(1.1633842, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.023860423, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 3448\n",
+ "Discriminator Loss: tf.Tensor(1.0146526, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.9394543, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 3449\n",
+ "Discriminator Loss: tf.Tensor(1.1332687, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.009598601, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 3450\n",
+ "Discriminator Loss: tf.Tensor(2.1734078, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.9391527, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 3451\n",
+ "Discriminator Loss: tf.Tensor(1.2372102, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.024617048, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 3452\n",
+ "Discriminator Loss: tf.Tensor(1.2678046, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.08259041, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 3453\n",
+ "Discriminator Loss: tf.Tensor(0.8557658, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.43799588, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 3454\n",
+ "Discriminator Loss: tf.Tensor(1.3276455, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.2836417, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 3455\n",
+ "Discriminator Loss: tf.Tensor(1.6789002, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.6520422, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 3456\n",
+ "Discriminator Loss: tf.Tensor(1.1173004, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.6126825, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 3457\n",
+ "Discriminator Loss: tf.Tensor(1.5154798, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.14097105, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 3458\n",
+ "Discriminator Loss: tf.Tensor(1.0514882, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.2640492, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 3459\n",
+ "Discriminator Loss: tf.Tensor(1.1125793, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.09818476, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 3460\n",
+ "Discriminator Loss: tf.Tensor(1.1672542, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.45746747, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 3461\n",
+ "Discriminator Loss: tf.Tensor(1.3299657, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.1151307, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 3462\n",
+ "Discriminator Loss: tf.Tensor(1.1425399, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.78090286, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 3463\n",
+ "Discriminator Loss: tf.Tensor(2.1994395, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.2478611, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 3464\n",
+ "Discriminator Loss: tf.Tensor(0.9334134, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.6841278, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 3465\n",
+ "Discriminator Loss: tf.Tensor(0.94017744, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.5192051, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 3466\n",
+ "Discriminator Loss: tf.Tensor(3.441486, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.0190628, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 3467\n",
+ "Discriminator Loss: tf.Tensor(1.8160744, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.7741849, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 3468\n",
+ "Discriminator Loss: tf.Tensor(1.6472591, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.08336353, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 3469\n",
+ "Discriminator Loss: tf.Tensor(1.6992221, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.016058797, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 3470\n",
+ "Discriminator Loss: tf.Tensor(1.5289057, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.2146181, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 3471\n",
+ "Discriminator Loss: tf.Tensor(1.3168708, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.4970285, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 3472\n",
+ "Discriminator Loss: tf.Tensor(1.3278435, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.8605221, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 3473\n",
+ "Discriminator Loss: tf.Tensor(1.114245, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.087075114, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 3474\n",
+ "Discriminator Loss: tf.Tensor(1.5461994, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.51496357, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 3475\n",
+ "Discriminator Loss: tf.Tensor(1.43945, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.4630785, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 3476\n",
+ "Discriminator Loss: tf.Tensor(1.86799, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.8589936, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 3477\n",
+ "Discriminator Loss: tf.Tensor(1.7407631, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.2660116, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 3478\n",
+ "Discriminator Loss: tf.Tensor(1.5552241, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.15224992, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 3479\n",
+ "Discriminator Loss: tf.Tensor(1.3334844, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.03049858, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 3480\n",
+ "Discriminator Loss: tf.Tensor(1.1093516, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.524517, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 3481\n",
+ "Discriminator Loss: tf.Tensor(1.4662918, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.37072864, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 3482\n",
+ "Discriminator Loss: tf.Tensor(1.0534443, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.3433285, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 3483\n",
+ "Discriminator Loss: tf.Tensor(2.210298, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-1.1984283, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 3484\n",
+ "Discriminator Loss: tf.Tensor(1.7386936, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.30383506, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 3485\n",
+ "Discriminator Loss: tf.Tensor(1.520395, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.20423925, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 3486\n",
+ "Discriminator Loss: tf.Tensor(1.0804261, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.64167047, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 3487\n",
+ "Discriminator Loss: tf.Tensor(1.4991753, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.35301754, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 3488\n",
+ "Discriminator Loss: tf.Tensor(1.5040934, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.7258158, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 3489\n",
+ "Discriminator Loss: tf.Tensor(1.0856972, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.066950746, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 3490\n",
+ "Discriminator Loss: tf.Tensor(1.0095582, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.69751316, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 3491\n",
+ "Discriminator Loss: tf.Tensor(1.6137254, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.45163926, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 3492\n",
+ "Discriminator Loss: tf.Tensor(1.3204782, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.2021369, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 3493\n",
+ "Discriminator Loss: tf.Tensor(0.60942906, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.42082095, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 3494\n",
+ "Discriminator Loss: tf.Tensor(1.5916688, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.48454618, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 3495\n",
+ "Discriminator Loss: tf.Tensor(1.1892313, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.5320071, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 3496\n",
+ "Discriminator Loss: tf.Tensor(1.3683217, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.35265684, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 3497\n",
+ "Discriminator Loss: tf.Tensor(1.3559539, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.3031409, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 3498\n",
+ "Discriminator Loss: tf.Tensor(1.7106433, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.498329, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 3499\n",
+ "Discriminator Loss: tf.Tensor(1.1209174, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.36207977, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 3500\n",
+ "Discriminator Loss: tf.Tensor(0.8243444, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.9172859, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 3501\n",
+ "Discriminator Loss: tf.Tensor(0.32153234, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.4064194, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 3502\n",
+ "Discriminator Loss: tf.Tensor(406.20105, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.10221473, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 3503\n",
+ "Discriminator Loss: tf.Tensor(40.464046, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.2547259, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 3504\n",
+ "Discriminator Loss: tf.Tensor(10.396139, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.371297, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 3505\n",
+ "Discriminator Loss: tf.Tensor(5.125247, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.37455666, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 3506\n",
+ "Discriminator Loss: tf.Tensor(3.562345, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.37505183, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 3507\n",
+ "Discriminator Loss: tf.Tensor(2.6806855, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.37070933, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 3508\n",
+ "Discriminator Loss: tf.Tensor(2.501456, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.36081746, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 3509\n",
+ "Discriminator Loss: tf.Tensor(2.3710575, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.3565394, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 3510\n",
+ "Discriminator Loss: tf.Tensor(2.2789855, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.35533723, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 3511\n",
+ "Discriminator Loss: tf.Tensor(2.1741047, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.35276675, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 3512\n",
+ "Discriminator Loss: tf.Tensor(2.1344059, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.345575, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 3513\n",
+ "Discriminator Loss: tf.Tensor(2.1301293, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.3468946, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 3514\n",
+ "Discriminator Loss: tf.Tensor(2.1009855, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.34273008, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 3515\n",
+ "Discriminator Loss: tf.Tensor(2.0761766, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.3390623, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 3516\n",
+ "Discriminator Loss: tf.Tensor(2.076774, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.336694, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 3517\n",
+ "Discriminator Loss: tf.Tensor(2.0612907, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.33400166, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 3518\n",
+ "Discriminator Loss: tf.Tensor(2.0506678, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.3337126, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 3519\n",
+ "Discriminator Loss: tf.Tensor(2.044954, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.32924125, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 3520\n",
+ "Discriminator Loss: tf.Tensor(2.0390806, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.3298591, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 3521\n",
+ "Discriminator Loss: tf.Tensor(2.0326452, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.32772866, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 3522\n",
+ "Discriminator Loss: tf.Tensor(2.0253007, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.32439983, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 3523\n",
+ "Discriminator Loss: tf.Tensor(2.0203216, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.322126, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 3524\n",
+ "Discriminator Loss: tf.Tensor(2.0188894, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.32134485, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 3525\n",
+ "Discriminator Loss: tf.Tensor(2.0163617, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.31834975, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 3526\n",
+ "Discriminator Loss: tf.Tensor(2.0133986, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.3173529, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 3527\n",
+ "Discriminator Loss: tf.Tensor(2.015232, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.31787744, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 3528\n",
+ "Discriminator Loss: tf.Tensor(2.007403, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.31324866, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 3529\n",
+ "Discriminator Loss: tf.Tensor(2.008309, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.31556335, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 3530\n",
+ "Discriminator Loss: tf.Tensor(2.0051382, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.3124063, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 3531\n",
+ "Discriminator Loss: tf.Tensor(2.004322, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.3122858, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 3532\n",
+ "Discriminator Loss: tf.Tensor(2.0035894, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.31189746, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 3533\n",
+ "Discriminator Loss: tf.Tensor(2.0011716, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.30871704, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 3534\n",
+ "Discriminator Loss: tf.Tensor(1.9996408, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.30747402, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 3535\n",
+ "Discriminator Loss: tf.Tensor(1.9971892, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.30442104, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 3536\n",
+ "Discriminator Loss: tf.Tensor(1.9986275, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.30783483, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 3537\n",
+ "Discriminator Loss: tf.Tensor(1.9984969, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.30666777, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 3538\n",
+ "Discriminator Loss: tf.Tensor(1.9974031, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.30502895, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 3539\n",
+ "Discriminator Loss: tf.Tensor(1.9984732, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.3060046, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 3540\n",
+ "Discriminator Loss: tf.Tensor(1.9946606, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.3017853, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 3541\n",
+ "Discriminator Loss: tf.Tensor(1.9909959, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.29893604, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 3542\n",
+ "Discriminator Loss: tf.Tensor(1.9913409, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.29646903, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 3543\n",
+ "Discriminator Loss: tf.Tensor(1.9980111, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.29850027, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 3544\n",
+ "Discriminator Loss: tf.Tensor(1.9888519, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.29354107, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 3545\n",
+ "Discriminator Loss: tf.Tensor(1.9867052, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.2911895, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 3546\n",
+ "Discriminator Loss: tf.Tensor(1.9868709, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.2873036, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 3547\n",
+ "Discriminator Loss: tf.Tensor(1.9799639, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.28316692, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 3548\n",
+ "Discriminator Loss: tf.Tensor(1.9724925, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.27209315, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 3549\n",
+ "Discriminator Loss: tf.Tensor(1.979931, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.28562772, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 3550\n",
+ "Discriminator Loss: tf.Tensor(1.9690428, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.27014968, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 3551\n",
+ "Discriminator Loss: tf.Tensor(1.9604925, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.26262265, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 3552\n",
+ "Discriminator Loss: tf.Tensor(1.9484701, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.25005534, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 3553\n",
+ "Discriminator Loss: tf.Tensor(1.9261665, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.23875779, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 3554\n",
+ "Discriminator Loss: tf.Tensor(1.9587888, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.26503623, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 3555\n",
+ "Discriminator Loss: tf.Tensor(1.9066088, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.21640003, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 3556\n",
+ "Discriminator Loss: tf.Tensor(1.9076363, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.20895517, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 3557\n",
+ "Discriminator Loss: tf.Tensor(1.8191674, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.12829016, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 3558\n",
+ "Discriminator Loss: tf.Tensor(1.935402, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.2786435, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 3559\n",
+ "Discriminator Loss: tf.Tensor(1.7726514, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.08640026, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 3560\n",
+ "Discriminator Loss: tf.Tensor(1.616689, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.023582997, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 3561\n",
+ "Discriminator Loss: tf.Tensor(1.8499832, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.23349221, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 3562\n",
+ "Discriminator Loss: tf.Tensor(1.4704264, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.22754078, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 3563\n",
+ "Discriminator Loss: tf.Tensor(1.5276625, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.07504798, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 3564\n",
+ "Discriminator Loss: tf.Tensor(1.3559868, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.64052653, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 3565\n",
+ "Discriminator Loss: tf.Tensor(1.6120567, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.3892778, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 3566\n",
+ "Discriminator Loss: tf.Tensor(1.3969411, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.19363426, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 3567\n",
+ "Discriminator Loss: tf.Tensor(1.2663678, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.5209964, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 3568\n",
+ "Discriminator Loss: tf.Tensor(0.9286557, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.42885998, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 3569\n",
+ "Discriminator Loss: tf.Tensor(5.1998463, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.431635, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 3570\n",
+ "Discriminator Loss: tf.Tensor(2.0383813, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-1.03472, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 3571\n",
+ "Discriminator Loss: tf.Tensor(1.8519546, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.085800536, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 3572\n",
+ "Discriminator Loss: tf.Tensor(1.887628, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.13574791, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 3573\n",
+ "Discriminator Loss: tf.Tensor(1.9105555, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.16486683, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 3574\n",
+ "Discriminator Loss: tf.Tensor(1.9107004, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.15843849, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 3575\n",
+ "Discriminator Loss: tf.Tensor(1.9020393, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.1420948, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 3576\n",
+ "Discriminator Loss: tf.Tensor(1.8638446, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.101565205, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 3577\n",
+ "Discriminator Loss: tf.Tensor(1.7991027, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.0016587203, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 3578\n",
+ "Discriminator Loss: tf.Tensor(1.8459002, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.028443133, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 3579\n",
+ "Discriminator Loss: tf.Tensor(1.6101373, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.23859449, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 3580\n",
+ "Discriminator Loss: tf.Tensor(1.7873013, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.17917617, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 3581\n",
+ "Discriminator Loss: tf.Tensor(1.344119, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.8039357, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 3582\n",
+ "Discriminator Loss: tf.Tensor(1.8962462, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.3709022, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 3583\n",
+ "Discriminator Loss: tf.Tensor(1.3129508, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.8285337, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 3584\n",
+ "Discriminator Loss: tf.Tensor(1.6990631, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.7465941, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 3585\n",
+ "Discriminator Loss: tf.Tensor(2.036876, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-1.0343517, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 3586\n",
+ "Discriminator Loss: tf.Tensor(1.840835, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.1540773, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 3587\n",
+ "Discriminator Loss: tf.Tensor(1.8857666, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.26865497, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 3588\n",
+ "Discriminator Loss: tf.Tensor(1.8586186, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.28258863, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 3589\n",
+ "Discriminator Loss: tf.Tensor(1.817537, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.25814626, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 3590\n",
+ "Discriminator Loss: tf.Tensor(1.801019, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.31241992, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 3591\n",
+ "Discriminator Loss: tf.Tensor(1.7704637, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.32226992, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 3592\n",
+ "Discriminator Loss: tf.Tensor(1.3136111, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.118136846, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 3593\n",
+ "Discriminator Loss: tf.Tensor(1.0430739, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.7554329, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 3594\n",
+ "Discriminator Loss: tf.Tensor(0.39395714, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.4262348, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 3595\n",
+ "Discriminator Loss: tf.Tensor(2.8556583, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-1.8326393, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 3596\n",
+ "Discriminator Loss: tf.Tensor(1.5019718, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.07147026, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 3597\n",
+ "Discriminator Loss: tf.Tensor(1.4657507, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.4478453, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 3598\n",
+ "Discriminator Loss: tf.Tensor(1.4167747, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.4138635, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 3599\n",
+ "Discriminator Loss: tf.Tensor(1.8986336, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.8884301, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 3600\n",
+ "Discriminator Loss: tf.Tensor(1.8453864, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.41695356, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 3601\n",
+ "Discriminator Loss: tf.Tensor(1.7886155, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.38671517, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 3602\n",
+ "Discriminator Loss: tf.Tensor(1.5168922, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.06660676, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 3603\n",
+ "Discriminator Loss: tf.Tensor(1.1596131, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.45163968, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 3604\n",
+ "Discriminator Loss: tf.Tensor(1.2818174, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.74399275, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 3605\n",
+ "Discriminator Loss: tf.Tensor(0.48089564, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.80136013, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 3606\n",
+ "Discriminator Loss: tf.Tensor(0.88601243, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.5192436, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 3607\n",
+ "Discriminator Loss: tf.Tensor(1.2424457, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.21702762, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 3608\n",
+ "Discriminator Loss: tf.Tensor(0.54716706, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.18536, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 3609\n",
+ "Discriminator Loss: tf.Tensor(2.3532672, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-1.3340946, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 3610\n",
+ "Discriminator Loss: tf.Tensor(1.5697955, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.26231727, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 3611\n",
+ "Discriminator Loss: tf.Tensor(2.2482457, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.6255721, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 3612\n",
+ "Discriminator Loss: tf.Tensor(1.7986212, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.67228967, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 3613\n",
+ "Discriminator Loss: tf.Tensor(1.8642162, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.7442436, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 3614\n",
+ "Discriminator Loss: tf.Tensor(1.6837085, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.5026584, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 3615\n",
+ "Discriminator Loss: tf.Tensor(1.4054588, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.1820728, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 3616\n",
+ "Discriminator Loss: tf.Tensor(1.3414757, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.1360975, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 3617\n",
+ "Discriminator Loss: tf.Tensor(0.5823517, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.0279483, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 3618\n",
+ "Discriminator Loss: tf.Tensor(1.8923956, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.86009353, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 3619\n",
+ "Discriminator Loss: tf.Tensor(1.3513907, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.68903226, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 3620\n",
+ "Discriminator Loss: tf.Tensor(1.0303929, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.8817029, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 3621\n",
+ "Discriminator Loss: tf.Tensor(0.85481644, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.5272826, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 3622\n",
+ "Discriminator Loss: tf.Tensor(2.4381816, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.455963, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 3623\n",
+ "Discriminator Loss: tf.Tensor(1.731854, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.5380674, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 3624\n",
+ "Discriminator Loss: tf.Tensor(1.3726089, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.030560976, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 3625\n",
+ "Discriminator Loss: tf.Tensor(1.4603393, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.0194012, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 3626\n",
+ "Discriminator Loss: tf.Tensor(1.1892469, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.9048632, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 3627\n",
+ "Discriminator Loss: tf.Tensor(1.113613, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.050201476, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 3628\n",
+ "Discriminator Loss: tf.Tensor(1.8761567, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.1742802, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 3629\n",
+ "Discriminator Loss: tf.Tensor(1.4025036, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.093364716, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 3630\n",
+ "Discriminator Loss: tf.Tensor(1.5240114, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.098281346, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 3631\n",
+ "Discriminator Loss: tf.Tensor(1.026086, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.5432319, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 3632\n",
+ "Discriminator Loss: tf.Tensor(1.7466748, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.02897185, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 3633\n",
+ "Discriminator Loss: tf.Tensor(1.4970329, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.4209352, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 3634\n",
+ "Discriminator Loss: tf.Tensor(1.6681398, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.64622545, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 3635\n",
+ "Discriminator Loss: tf.Tensor(1.820091, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.15698138, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 3636\n",
+ "Discriminator Loss: tf.Tensor(1.7308527, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.18365116, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 3637\n",
+ "Discriminator Loss: tf.Tensor(1.5321645, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.036904555, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 3638\n",
+ "Discriminator Loss: tf.Tensor(1.2858407, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.3251403, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 3639\n",
+ "Discriminator Loss: tf.Tensor(1.1021619, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.4062643, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 3640\n",
+ "Discriminator Loss: tf.Tensor(0.9091291, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.1855121, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 3641\n",
+ "Discriminator Loss: tf.Tensor(2.3366795, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-1.3211807, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 3642\n",
+ "Discriminator Loss: tf.Tensor(1.7992475, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.05579261, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 3643\n",
+ "Discriminator Loss: tf.Tensor(1.6913588, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.11390674, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 3644\n",
+ "Discriminator Loss: tf.Tensor(1.4600224, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.24432904, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 3645\n",
+ "Discriminator Loss: tf.Tensor(1.0329857, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.5937713, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 3646\n",
+ "Discriminator Loss: tf.Tensor(1.8977852, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.7269615, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 3647\n",
+ "Discriminator Loss: tf.Tensor(1.9278665, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.9171455, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 3648\n",
+ "Discriminator Loss: tf.Tensor(1.8314917, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.17681871, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 3649\n",
+ "Discriminator Loss: tf.Tensor(1.7556353, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.28240183, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 3650\n",
+ "Discriminator Loss: tf.Tensor(1.5654273, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.053836446, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 3651\n",
+ "Discriminator Loss: tf.Tensor(1.3727465, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.37153366, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 3652\n",
+ "Discriminator Loss: tf.Tensor(1.1516597, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.7722704, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 3653\n",
+ "Discriminator Loss: tf.Tensor(0.96624696, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.5553232, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 3654\n",
+ "Discriminator Loss: tf.Tensor(2.5436912, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.0505247, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 3655\n",
+ "Discriminator Loss: tf.Tensor(1.5784823, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.569334, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 3656\n",
+ "Discriminator Loss: tf.Tensor(1.6183394, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.17520082, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 3657\n",
+ "Discriminator Loss: tf.Tensor(1.2598171, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.086817764, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 3658\n",
+ "Discriminator Loss: tf.Tensor(0.81804836, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.4516746, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 3659\n",
+ "Discriminator Loss: tf.Tensor(2.3682642, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.5282663, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 3660\n",
+ "Discriminator Loss: tf.Tensor(1.1174747, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.105010234, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 3661\n",
+ "Discriminator Loss: tf.Tensor(1.0196462, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.40453896, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 3662\n",
+ "Discriminator Loss: tf.Tensor(1.0289264, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.05632937, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 3663\n",
+ "Discriminator Loss: tf.Tensor(2.256062, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.8450475, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 3664\n",
+ "Discriminator Loss: tf.Tensor(1.4100095, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.03262751, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 3665\n",
+ "Discriminator Loss: tf.Tensor(1.3243803, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.009377234, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 3666\n",
+ "Discriminator Loss: tf.Tensor(0.80008835, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.505161, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 3667\n",
+ "Discriminator Loss: tf.Tensor(1.0527511, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.34121144, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 3668\n",
+ "Discriminator Loss: tf.Tensor(2.1155496, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.4099958, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 3669\n",
+ "Discriminator Loss: tf.Tensor(1.0123614, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.26582906, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 3670\n",
+ "Discriminator Loss: tf.Tensor(1.1227968, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.24548604, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 3671\n",
+ "Discriminator Loss: tf.Tensor(1.7769109, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.0856524, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 3672\n",
+ "Discriminator Loss: tf.Tensor(1.402506, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.32530668, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 3673\n",
+ "Discriminator Loss: tf.Tensor(1.3748269, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.6314368, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 3674\n",
+ "Discriminator Loss: tf.Tensor(1.4346765, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.085364126, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 3675\n",
+ "Discriminator Loss: tf.Tensor(0.9181616, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.1867253, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 3676\n",
+ "Discriminator Loss: tf.Tensor(1.7618295, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.7478048, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 3677\n",
+ "Discriminator Loss: tf.Tensor(1.3943548, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.41254568, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 3678\n",
+ "Discriminator Loss: tf.Tensor(1.4129895, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.087615155, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 3679\n",
+ "Discriminator Loss: tf.Tensor(0.9339782, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.9730436, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 3680\n",
+ "Discriminator Loss: tf.Tensor(1.7563167, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.71069217, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 3681\n",
+ "Discriminator Loss: tf.Tensor(1.7866923, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.5642209, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 3682\n",
+ "Discriminator Loss: tf.Tensor(1.4880788, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.20214088, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 3683\n",
+ "Discriminator Loss: tf.Tensor(1.3003072, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.05528134, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 3684\n",
+ "Discriminator Loss: tf.Tensor(1.1185428, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.2578583, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 3685\n",
+ "Discriminator Loss: tf.Tensor(1.229116, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.3397199, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 3686\n",
+ "Discriminator Loss: tf.Tensor(2.0366125, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-1.0226294, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 3687\n",
+ "Discriminator Loss: tf.Tensor(1.5528798, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.18174498, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 3688\n",
+ "Discriminator Loss: tf.Tensor(1.4940386, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.10314983, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 3689\n",
+ "Discriminator Loss: tf.Tensor(1.1780906, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.5508482, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 3690\n",
+ "Discriminator Loss: tf.Tensor(1.5057242, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.32823431, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 3691\n",
+ "Discriminator Loss: tf.Tensor(0.674397, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.0689704, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 3692\n",
+ "Discriminator Loss: tf.Tensor(2.091221, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-1.0629463, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 3693\n",
+ "Discriminator Loss: tf.Tensor(1.6152778, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.103594124, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 3694\n",
+ "Discriminator Loss: tf.Tensor(1.24058, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.09136071, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 3695\n",
+ "Discriminator Loss: tf.Tensor(1.0692084, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.5408722, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 3696\n",
+ "Discriminator Loss: tf.Tensor(1.9996248, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.98373204, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 3697\n",
+ "Discriminator Loss: tf.Tensor(1.7381699, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.15154415, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 3698\n",
+ "Discriminator Loss: tf.Tensor(1.6283932, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.13130352, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 3699\n",
+ "Discriminator Loss: tf.Tensor(1.2708709, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.52290624, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 3700\n",
+ "Discriminator Loss: tf.Tensor(1.4309764, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.14962287, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 3701\n",
+ "Discriminator Loss: tf.Tensor(1.4586325, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.2328057, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 3702\n",
+ "Discriminator Loss: tf.Tensor(1.3725028, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.36022767, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 3703\n",
+ "Discriminator Loss: tf.Tensor(1.3545665, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.47714797, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 3704\n",
+ "Discriminator Loss: tf.Tensor(1.5154533, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.49244037, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 3705\n",
+ "Discriminator Loss: tf.Tensor(1.3433535, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.0615398, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 3706\n",
+ "Discriminator Loss: tf.Tensor(1.455966, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.29314756, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 3707\n",
+ "Discriminator Loss: tf.Tensor(0.83181936, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.70576763, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 3708\n",
+ "Discriminator Loss: tf.Tensor(1.7113314, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.0980364, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 3709\n",
+ "Discriminator Loss: tf.Tensor(0.8043302, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.34951735, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 3710\n",
+ "Discriminator Loss: tf.Tensor(1.7822869, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.1640624, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 3711\n",
+ "Discriminator Loss: tf.Tensor(1.4802884, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.29527485, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 3712\n",
+ "Discriminator Loss: tf.Tensor(1.5612853, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.26325497, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 3713\n",
+ "Discriminator Loss: tf.Tensor(1.495021, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.22215526, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 3714\n",
+ "Discriminator Loss: tf.Tensor(1.0490897, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.46273956, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 3715\n",
+ "Discriminator Loss: tf.Tensor(1.5562694, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.21628843, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 3716\n",
+ "Discriminator Loss: tf.Tensor(2.4001055, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.16105, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 3717\n",
+ "Discriminator Loss: tf.Tensor(1.5485224, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.029399663, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 3718\n",
+ "Discriminator Loss: tf.Tensor(1.4997029, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.15405083, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 3719\n",
+ "Discriminator Loss: tf.Tensor(1.2927209, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.17818935, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 3720\n",
+ "Discriminator Loss: tf.Tensor(1.2730962, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.20132323, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 3721\n",
+ "Discriminator Loss: tf.Tensor(1.0275669, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.1649836, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 3722\n",
+ "Discriminator Loss: tf.Tensor(1.8774618, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.859227, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 3723\n",
+ "Discriminator Loss: tf.Tensor(1.7511399, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.09304755, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 3724\n",
+ "Discriminator Loss: tf.Tensor(1.3797258, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.03642532, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 3725\n",
+ "Discriminator Loss: tf.Tensor(0.7816856, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.05277, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 3726\n",
+ "Discriminator Loss: tf.Tensor(1.8244653, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.80352074, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 3727\n",
+ "Discriminator Loss: tf.Tensor(1.2787356, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.75984794, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 3728\n",
+ "Discriminator Loss: tf.Tensor(0.53420854, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.64906114, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 3729\n",
+ "Discriminator Loss: tf.Tensor(4.5008087, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.0169728, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 3730\n",
+ "Discriminator Loss: tf.Tensor(0.88799214, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.20206155, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 3731\n",
+ "Discriminator Loss: tf.Tensor(1.3271406, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.18584548, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 3732\n",
+ "Discriminator Loss: tf.Tensor(1.1814389, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.315057, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 3733\n",
+ "Discriminator Loss: tf.Tensor(1.5220561, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.4416627, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 3734\n",
+ "Discriminator Loss: tf.Tensor(1.0387075, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.2683916, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 3735\n",
+ "Discriminator Loss: tf.Tensor(1.0923067, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.6394685, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 3736\n",
+ "Discriminator Loss: tf.Tensor(0.900589, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.5631504, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 3737\n",
+ "Discriminator Loss: tf.Tensor(1.4126647, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.5056171, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 3738\n",
+ "Discriminator Loss: tf.Tensor(2.0281332, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-1.0077889, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 3739\n",
+ "Discriminator Loss: tf.Tensor(1.4878123, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.010773178, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 3740\n",
+ "Discriminator Loss: tf.Tensor(1.459462, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.08049928, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 3741\n",
+ "Discriminator Loss: tf.Tensor(1.2550488, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.3195638, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 3742\n",
+ "Discriminator Loss: tf.Tensor(1.2760575, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.34974775, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 3743\n",
+ "Discriminator Loss: tf.Tensor(0.848406, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.0629128, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 3744\n",
+ "Discriminator Loss: tf.Tensor(1.6458272, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.61350524, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 3745\n",
+ "Discriminator Loss: tf.Tensor(1.5521461, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.0950502, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 3746\n",
+ "Discriminator Loss: tf.Tensor(1.455205, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.37772664, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 3747\n",
+ "Discriminator Loss: tf.Tensor(1.5069087, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.007447222, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 3748\n",
+ "Discriminator Loss: tf.Tensor(1.1464779, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.18159698, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 3749\n",
+ "Discriminator Loss: tf.Tensor(0.66062236, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.93681747, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 3750\n",
+ "Discriminator Loss: tf.Tensor(0.6953368, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.0088934, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 3751\n",
+ "Discriminator Loss: tf.Tensor(1.6719975, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.0746682, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 3752\n",
+ "Discriminator Loss: tf.Tensor(1.8888781, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.8634097, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 3753\n",
+ "Discriminator Loss: tf.Tensor(1.6379176, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.11667321, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 3754\n",
+ "Discriminator Loss: tf.Tensor(1.5105065, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.058666524, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 3755\n",
+ "Discriminator Loss: tf.Tensor(1.2744771, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.29323176, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 3756\n",
+ "Discriminator Loss: tf.Tensor(1.3528464, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.91041845, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 3757\n",
+ "Discriminator Loss: tf.Tensor(1.3346168, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.15964073, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 3758\n",
+ "Discriminator Loss: tf.Tensor(0.77419657, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.78524524, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 3759\n",
+ "Discriminator Loss: tf.Tensor(3.268306, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.9073137, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 3760\n",
+ "Discriminator Loss: tf.Tensor(1.9355414, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.90395945, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 3761\n",
+ "Discriminator Loss: tf.Tensor(1.7325957, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.15655382, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 3762\n",
+ "Discriminator Loss: tf.Tensor(1.7403754, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.14050181, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 3763\n",
+ "Discriminator Loss: tf.Tensor(1.7054095, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.008808609, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 3764\n",
+ "Discriminator Loss: tf.Tensor(1.6478866, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.11408406, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 3765\n",
+ "Discriminator Loss: tf.Tensor(1.6226499, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.085395604, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 3766\n",
+ "Discriminator Loss: tf.Tensor(1.478679, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.13784724, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 3767\n",
+ "Discriminator Loss: tf.Tensor(1.2519004, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.31694937, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 3768\n",
+ "Discriminator Loss: tf.Tensor(1.4227031, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.63544685, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 3769\n",
+ "Discriminator Loss: tf.Tensor(1.1028931, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.5931673, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 3770\n",
+ "Discriminator Loss: tf.Tensor(1.4664232, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.78829694, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 3771\n",
+ "Discriminator Loss: tf.Tensor(1.2852111, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.0686053, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 3772\n",
+ "Discriminator Loss: tf.Tensor(2.2874444, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-1.269653, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 3773\n",
+ "Discriminator Loss: tf.Tensor(1.799375, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.31092465, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 3774\n",
+ "Discriminator Loss: tf.Tensor(1.5745825, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.15610127, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 3775\n",
+ "Discriminator Loss: tf.Tensor(1.366851, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.1069454, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 3776\n",
+ "Discriminator Loss: tf.Tensor(1.150105, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.99576, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 3777\n",
+ "Discriminator Loss: tf.Tensor(1.9646399, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.9330435, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 3778\n",
+ "Discriminator Loss: tf.Tensor(1.4691737, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.35240576, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 3779\n",
+ "Discriminator Loss: tf.Tensor(1.5413585, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.07443004, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 3780\n",
+ "Discriminator Loss: tf.Tensor(0.813704, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.1075972, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 3781\n",
+ "Discriminator Loss: tf.Tensor(1.8303145, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.8162806, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 3782\n",
+ "Discriminator Loss: tf.Tensor(1.4034957, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.03319067, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 3783\n",
+ "Discriminator Loss: tf.Tensor(1.1396834, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.61585134, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 3784\n",
+ "Discriminator Loss: tf.Tensor(1.1241504, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.2186143, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 3785\n",
+ "Discriminator Loss: tf.Tensor(1.9150501, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.89750177, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 3786\n",
+ "Discriminator Loss: tf.Tensor(1.667701, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.05118814, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 3787\n",
+ "Discriminator Loss: tf.Tensor(1.3483776, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.25972596, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 3788\n",
+ "Discriminator Loss: tf.Tensor(1.0237157, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.0795623, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 3789\n",
+ "Discriminator Loss: tf.Tensor(1.8477602, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.7978104, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 3790\n",
+ "Discriminator Loss: tf.Tensor(1.604212, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.17471218, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 3791\n",
+ "Discriminator Loss: tf.Tensor(0.79189074, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.7431523, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 3792\n",
+ "Discriminator Loss: tf.Tensor(1.7122221, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.2142775, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 3793\n",
+ "Discriminator Loss: tf.Tensor(1.0321174, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.021863617, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 3794\n",
+ "Discriminator Loss: tf.Tensor(0.44383186, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.66972876, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 3795\n",
+ "Discriminator Loss: tf.Tensor(0.78315675, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.53806216, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 3796\n",
+ "Discriminator Loss: tf.Tensor(6.714957, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(5.2534723, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 3797\n",
+ "Discriminator Loss: tf.Tensor(1.1218015, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.3897499, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 3798\n",
+ "Discriminator Loss: tf.Tensor(0.8306362, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.47730908, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 3799\n",
+ "Discriminator Loss: tf.Tensor(1.3596793, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.21850298, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 3800\n",
+ "Discriminator Loss: tf.Tensor(1.4945025, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.9721756, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 3801\n",
+ "Discriminator Loss: tf.Tensor(1.4237895, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.32434574, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 3802\n",
+ "Discriminator Loss: tf.Tensor(1.1936648, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.7674863, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 3803\n",
+ "Discriminator Loss: tf.Tensor(1.0982018, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.84561485, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 3804\n",
+ "Discriminator Loss: tf.Tensor(0.76278293, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.5831843, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 3805\n",
+ "Discriminator Loss: tf.Tensor(1.7847261, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.1298523, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 3806\n",
+ "Discriminator Loss: tf.Tensor(1.8995692, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.88307804, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 3807\n",
+ "Discriminator Loss: tf.Tensor(1.4182527, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.075130485, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 3808\n",
+ "Discriminator Loss: tf.Tensor(1.1242864, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.5081381, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 3809\n",
+ "Discriminator Loss: tf.Tensor(1.1150591, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.60983545, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 3810\n",
+ "Discriminator Loss: tf.Tensor(1.1840172, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.1814656, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 3811\n",
+ "Discriminator Loss: tf.Tensor(1.749043, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.72901535, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 3812\n",
+ "Discriminator Loss: tf.Tensor(1.1266866, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.90729976, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 3813\n",
+ "Discriminator Loss: tf.Tensor(1.319275, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.21691014, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 3814\n",
+ "Discriminator Loss: tf.Tensor(1.9634151, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.6980721, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 3815\n",
+ "Discriminator Loss: tf.Tensor(1.6397948, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.6226227, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 3816\n",
+ "Discriminator Loss: tf.Tensor(1.4395348, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.32311055, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 3817\n",
+ "Discriminator Loss: tf.Tensor(1.5718274, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.092866756, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 3818\n",
+ "Discriminator Loss: tf.Tensor(1.3670936, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.39360854, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 3819\n",
+ "Discriminator Loss: tf.Tensor(1.3252264, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.5509768, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 3820\n",
+ "Discriminator Loss: tf.Tensor(0.92386353, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.0073332, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 3821\n",
+ "Discriminator Loss: tf.Tensor(1.3665097, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.34222588, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 3822\n",
+ "Discriminator Loss: tf.Tensor(0.97935736, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.9836745, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 3823\n",
+ "Discriminator Loss: tf.Tensor(1.3516203, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.27830133, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 3824\n",
+ "Discriminator Loss: tf.Tensor(1.3571382, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.6677986, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 3825\n",
+ "Discriminator Loss: tf.Tensor(1.0668447, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.049782854, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 3826\n",
+ "Discriminator Loss: tf.Tensor(1.6230102, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.51235014, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 3827\n",
+ "Discriminator Loss: tf.Tensor(1.220224, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.50184494, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 3828\n",
+ "Discriminator Loss: tf.Tensor(0.9549685, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.9675881, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 3829\n",
+ "Discriminator Loss: tf.Tensor(0.708717, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.42166606, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 3830\n",
+ "Discriminator Loss: tf.Tensor(2.6676466, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(3.255192, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 3831\n",
+ "Discriminator Loss: tf.Tensor(1.2152538, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.022000121, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 3832\n",
+ "Discriminator Loss: tf.Tensor(1.4242102, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.1380136, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 3833\n",
+ "Discriminator Loss: tf.Tensor(1.1579547, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.4166082, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 3834\n",
+ "Discriminator Loss: tf.Tensor(1.7481246, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.37782812, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 3835\n",
+ "Discriminator Loss: tf.Tensor(1.0443933, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.8267363, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 3836\n",
+ "Discriminator Loss: tf.Tensor(1.0432408, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.2172714, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 3837\n",
+ "Discriminator Loss: tf.Tensor(3.2307372, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.5000782, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 3838\n",
+ "Discriminator Loss: tf.Tensor(1.4650414, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.22844183, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 3839\n",
+ "Discriminator Loss: tf.Tensor(1.6101781, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.34898782, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 3840\n",
+ "Discriminator Loss: tf.Tensor(1.4962926, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.028350985, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 3841\n",
+ "Discriminator Loss: tf.Tensor(1.5103194, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.053965818, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 3842\n",
+ "Discriminator Loss: tf.Tensor(1.128061, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.38081336, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 3843\n",
+ "Discriminator Loss: tf.Tensor(1.3449985, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.07284566, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 3844\n",
+ "Discriminator Loss: tf.Tensor(1.757451, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.3719149, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 3845\n",
+ "Discriminator Loss: tf.Tensor(1.3886132, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.02815757, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 3846\n",
+ "Discriminator Loss: tf.Tensor(1.3276838, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.10230187, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 3847\n",
+ "Discriminator Loss: tf.Tensor(1.0624223, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.46283498, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 3848\n",
+ "Discriminator Loss: tf.Tensor(1.4275389, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.076992415, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 3849\n",
+ "Discriminator Loss: tf.Tensor(2.0165308, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.8433682, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 3850\n",
+ "Discriminator Loss: tf.Tensor(1.1875188, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.1773311, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 3851\n",
+ "Discriminator Loss: tf.Tensor(1.2876842, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.08128626, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 3852\n",
+ "Discriminator Loss: tf.Tensor(0.6985239, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.8342702, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 3853\n",
+ "Discriminator Loss: tf.Tensor(1.8325076, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.64394206, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 3854\n",
+ "Discriminator Loss: tf.Tensor(2.4441206, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.033533, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 3855\n",
+ "Discriminator Loss: tf.Tensor(1.4851305, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.016774863, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 3856\n",
+ "Discriminator Loss: tf.Tensor(1.3507394, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.12222358, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 3857\n",
+ "Discriminator Loss: tf.Tensor(0.73028433, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.56461287, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 3858\n",
+ "Discriminator Loss: tf.Tensor(1.2511872, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.9279287, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 3859\n",
+ "Discriminator Loss: tf.Tensor(1.323794, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.312407, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 3860\n",
+ "Discriminator Loss: tf.Tensor(1.7932216, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.535377, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 3861\n",
+ "Discriminator Loss: tf.Tensor(1.4158423, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.076152414, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 3862\n",
+ "Discriminator Loss: tf.Tensor(1.3822124, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.052415002, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 3863\n",
+ "Discriminator Loss: tf.Tensor(1.056823, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.32941133, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 3864\n",
+ "Discriminator Loss: tf.Tensor(1.7590544, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.7963712, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 3865\n",
+ "Discriminator Loss: tf.Tensor(1.6019367, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.27721098, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 3866\n",
+ "Discriminator Loss: tf.Tensor(1.4086187, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.829189, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 3867\n",
+ "Discriminator Loss: tf.Tensor(1.6153316, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.4335924, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 3868\n",
+ "Discriminator Loss: tf.Tensor(1.0187919, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.86072415, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 3869\n",
+ "Discriminator Loss: tf.Tensor(1.4328747, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.31621835, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 3870\n",
+ "Discriminator Loss: tf.Tensor(1.1786323, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.3706433, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 3871\n",
+ "Discriminator Loss: tf.Tensor(2.1729028, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-1.1394476, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 3872\n",
+ "Discriminator Loss: tf.Tensor(1.6627007, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.018331466, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 3873\n",
+ "Discriminator Loss: tf.Tensor(1.4397768, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.17432237, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 3874\n",
+ "Discriminator Loss: tf.Tensor(1.1722138, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.5504684, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 3875\n",
+ "Discriminator Loss: tf.Tensor(0.69852376, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.93829805, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 3876\n",
+ "Discriminator Loss: tf.Tensor(0.78283995, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.5290536, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 3877\n",
+ "Discriminator Loss: tf.Tensor(3.802637, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(3.5351286, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 3878\n",
+ "Discriminator Loss: tf.Tensor(1.485124, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.08720752, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 3879\n",
+ "Discriminator Loss: tf.Tensor(0.9998101, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.18413775, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 3880\n",
+ "Discriminator Loss: tf.Tensor(0.60131997, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.0590552, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 3881\n",
+ "Discriminator Loss: tf.Tensor(1.601199, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.5313468, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 3882\n",
+ "Discriminator Loss: tf.Tensor(1.3385748, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.0839833, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 3883\n",
+ "Discriminator Loss: tf.Tensor(1.3398134, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.20739579, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 3884\n",
+ "Discriminator Loss: tf.Tensor(1.2843647, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.586465, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 3885\n",
+ "Discriminator Loss: tf.Tensor(1.3373308, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.7233537, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 3886\n",
+ "Discriminator Loss: tf.Tensor(1.0869793, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.133515, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 3887\n",
+ "Discriminator Loss: tf.Tensor(2.062165, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-1.0025452, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 3888\n",
+ "Discriminator Loss: tf.Tensor(1.3369743, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.44969097, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 3889\n",
+ "Discriminator Loss: tf.Tensor(1.2997358, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.11326923, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 3890\n",
+ "Discriminator Loss: tf.Tensor(0.9574919, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.96851486, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 3891\n",
+ "Discriminator Loss: tf.Tensor(1.1199417, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.036197584, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 3892\n",
+ "Discriminator Loss: tf.Tensor(1.4396853, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.282122, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 3893\n",
+ "Discriminator Loss: tf.Tensor(1.5921917, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.5631005, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 3894\n",
+ "Discriminator Loss: tf.Tensor(1.4856304, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.31265482, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 3895\n",
+ "Discriminator Loss: tf.Tensor(1.2944635, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.4351299, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 3896\n",
+ "Discriminator Loss: tf.Tensor(0.9480778, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.6760378, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 3897\n",
+ "Discriminator Loss: tf.Tensor(0.7042794, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.2216009, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 3898\n",
+ "Discriminator Loss: tf.Tensor(1.2147844, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.1636473, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 3899\n",
+ "Discriminator Loss: tf.Tensor(1.8545752, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.6829962, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 3900\n",
+ "Discriminator Loss: tf.Tensor(1.4978791, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.34275946, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 3901\n",
+ "Discriminator Loss: tf.Tensor(1.4032092, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.1273417, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 3902\n",
+ "Discriminator Loss: tf.Tensor(1.023386, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.69383454, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 3903\n",
+ "Discriminator Loss: tf.Tensor(1.2439973, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.47006735, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 3904\n",
+ "Discriminator Loss: tf.Tensor(1.7810806, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.5023651, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 3905\n",
+ "Discriminator Loss: tf.Tensor(1.5035735, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.470371, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 3906\n",
+ "Discriminator Loss: tf.Tensor(1.6688288, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.04167515, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 3907\n",
+ "Discriminator Loss: tf.Tensor(1.334543, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.03543487, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 3908\n",
+ "Discriminator Loss: tf.Tensor(0.9754629, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.60566634, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 3909\n",
+ "Discriminator Loss: tf.Tensor(1.550313, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.16594146, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 3910\n",
+ "Discriminator Loss: tf.Tensor(1.1567929, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.1976088, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 3911\n",
+ "Discriminator Loss: tf.Tensor(1.8195055, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.79212046, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 3912\n",
+ "Discriminator Loss: tf.Tensor(1.7635869, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.09001064, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 3913\n",
+ "Discriminator Loss: tf.Tensor(1.5377157, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.29288983, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 3914\n",
+ "Discriminator Loss: tf.Tensor(1.307841, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.37692264, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 3915\n",
+ "Discriminator Loss: tf.Tensor(1.3263817, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.32611692, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 3916\n",
+ "Discriminator Loss: tf.Tensor(0.9658555, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.2254587, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 3917\n",
+ "Discriminator Loss: tf.Tensor(2.3087924, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-1.2760252, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 3918\n",
+ "Discriminator Loss: tf.Tensor(1.4829313, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.22397459, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 3919\n",
+ "Discriminator Loss: tf.Tensor(1.4579508, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.22921741, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 3920\n",
+ "Discriminator Loss: tf.Tensor(1.0910245, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.8797393, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 3921\n",
+ "Discriminator Loss: tf.Tensor(0.75625926, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.5027458, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 3922\n",
+ "Discriminator Loss: tf.Tensor(3.3121774, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.9796245, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 3923\n",
+ "Discriminator Loss: tf.Tensor(1.2420974, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.06915358, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 3924\n",
+ "Discriminator Loss: tf.Tensor(1.2678027, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.119757056, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 3925\n",
+ "Discriminator Loss: tf.Tensor(0.9755376, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.4594563, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 3926\n",
+ "Discriminator Loss: tf.Tensor(1.4369776, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.09945559, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 3927\n",
+ "Discriminator Loss: tf.Tensor(2.349475, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.2553089, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 3928\n",
+ "Discriminator Loss: tf.Tensor(1.0328971, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.33971396, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 3929\n",
+ "Discriminator Loss: tf.Tensor(1.4944389, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.02132534, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 3930\n",
+ "Discriminator Loss: tf.Tensor(0.83555007, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.82096714, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 3931\n",
+ "Discriminator Loss: tf.Tensor(1.40659, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.1771694, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 3932\n",
+ "Discriminator Loss: tf.Tensor(2.3287973, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.2384288, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 3933\n",
+ "Discriminator Loss: tf.Tensor(1.5049344, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.008597552, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 3934\n",
+ "Discriminator Loss: tf.Tensor(1.0605091, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.33300385, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 3935\n",
+ "Discriminator Loss: tf.Tensor(0.5639839, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.9847493, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 3936\n",
+ "Discriminator Loss: tf.Tensor(1.6801878, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.5551807, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 3937\n",
+ "Discriminator Loss: tf.Tensor(1.6965169, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.2837647, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 3938\n",
+ "Discriminator Loss: tf.Tensor(1.3458694, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.120860256, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 3939\n",
+ "Discriminator Loss: tf.Tensor(1.6651212, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.0732665, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 3940\n",
+ "Discriminator Loss: tf.Tensor(1.1248273, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.6021506, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 3941\n",
+ "Discriminator Loss: tf.Tensor(1.8588641, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.3028387, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 3942\n",
+ "Discriminator Loss: tf.Tensor(0.68376327, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.8856965, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 3943\n",
+ "Discriminator Loss: tf.Tensor(0.99312425, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.33113104, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 3944\n",
+ "Discriminator Loss: tf.Tensor(4.0214396, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(3.7745392, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 3945\n",
+ "Discriminator Loss: tf.Tensor(1.5924509, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.14346756, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 3946\n",
+ "Discriminator Loss: tf.Tensor(1.326009, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.028813237, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 3947\n",
+ "Discriminator Loss: tf.Tensor(1.2586032, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.041927505, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 3948\n",
+ "Discriminator Loss: tf.Tensor(1.3463103, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.1582746, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 3949\n",
+ "Discriminator Loss: tf.Tensor(1.2554212, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.7644035, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 3950\n",
+ "Discriminator Loss: tf.Tensor(1.3064245, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.27721468, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 3951\n",
+ "Discriminator Loss: tf.Tensor(1.1265669, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.3806124, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 3952\n",
+ "Discriminator Loss: tf.Tensor(1.9847772, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.95560217, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 3953\n",
+ "Discriminator Loss: tf.Tensor(1.5035449, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.4041433, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 3954\n",
+ "Discriminator Loss: tf.Tensor(1.6469114, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.042221725, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 3955\n",
+ "Discriminator Loss: tf.Tensor(1.2467365, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.33905616, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 3956\n",
+ "Discriminator Loss: tf.Tensor(1.2571375, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.0089195, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 3957\n",
+ "Discriminator Loss: tf.Tensor(1.72384, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.6709059, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 3958\n",
+ "Discriminator Loss: tf.Tensor(1.4060128, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.72358656, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 3959\n",
+ "Discriminator Loss: tf.Tensor(1.3220993, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.36784735, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 3960\n",
+ "Discriminator Loss: tf.Tensor(0.9441506, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.2447237, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 3961\n",
+ "Discriminator Loss: tf.Tensor(1.7246175, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.70100623, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 3962\n",
+ "Discriminator Loss: tf.Tensor(1.2908701, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.51473117, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 3963\n",
+ "Discriminator Loss: tf.Tensor(1.3886492, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.092925966, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 3964\n",
+ "Discriminator Loss: tf.Tensor(0.98144567, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.3542852, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 3965\n",
+ "Discriminator Loss: tf.Tensor(2.045127, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-1.01546, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 3966\n",
+ "Discriminator Loss: tf.Tensor(1.3671399, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.34306273, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 3967\n",
+ "Discriminator Loss: tf.Tensor(1.3768053, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.24260306, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 3968\n",
+ "Discriminator Loss: tf.Tensor(0.9380696, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.8532799, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 3969\n",
+ "Discriminator Loss: tf.Tensor(1.190793, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.0189689, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 3970\n",
+ "Discriminator Loss: tf.Tensor(1.0230948, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.045950193, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 3971\n",
+ "Discriminator Loss: tf.Tensor(1.1809884, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.0089599, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 3972\n",
+ "Discriminator Loss: tf.Tensor(0.9436143, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.09604659, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 3973\n",
+ "Discriminator Loss: tf.Tensor(2.2488866, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.1715667, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 3974\n",
+ "Discriminator Loss: tf.Tensor(1.3436111, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.096209206, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 3975\n",
+ "Discriminator Loss: tf.Tensor(1.0468979, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.38811144, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 3976\n",
+ "Discriminator Loss: tf.Tensor(0.9797392, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.65586233, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 3977\n",
+ "Discriminator Loss: tf.Tensor(1.4006833, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.0801424, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 3978\n",
+ "Discriminator Loss: tf.Tensor(1.4038731, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.3154277, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 3979\n",
+ "Discriminator Loss: tf.Tensor(1.2748816, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.0452069, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 3980\n",
+ "Discriminator Loss: tf.Tensor(1.3184632, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.16047575, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 3981\n",
+ "Discriminator Loss: tf.Tensor(1.2257912, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.49517146, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 3982\n",
+ "Discriminator Loss: tf.Tensor(1.2655377, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.6282862, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 3983\n",
+ "Discriminator Loss: tf.Tensor(1.0095637, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.4034461, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 3984\n",
+ "Discriminator Loss: tf.Tensor(1.9734396, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.9476752, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 3985\n",
+ "Discriminator Loss: tf.Tensor(1.2843474, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.14841725, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 3986\n",
+ "Discriminator Loss: tf.Tensor(1.1629975, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.3020487, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 3987\n",
+ "Discriminator Loss: tf.Tensor(1.3084495, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.4269878, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 3988\n",
+ "Discriminator Loss: tf.Tensor(1.9666351, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.9385052, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 3989\n",
+ "Discriminator Loss: tf.Tensor(1.6107957, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.07546628, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 3990\n",
+ "Discriminator Loss: tf.Tensor(1.4566681, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.0789735, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 3991\n",
+ "Discriminator Loss: tf.Tensor(1.0693914, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.4598361, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 3992\n",
+ "Discriminator Loss: tf.Tensor(1.3450692, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.61378425, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 3993\n",
+ "Discriminator Loss: tf.Tensor(0.97445273, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.54917043, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 3994\n",
+ "Discriminator Loss: tf.Tensor(1.4715931, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.2668743, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 3995\n",
+ "Discriminator Loss: tf.Tensor(1.5136425, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.49269572, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 3996\n",
+ "Discriminator Loss: tf.Tensor(1.2929264, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.46868142, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 3997\n",
+ "Discriminator Loss: tf.Tensor(1.1163932, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.27471378, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 3998\n",
+ "Discriminator Loss: tf.Tensor(1.8911304, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.008362, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 3999\n",
+ "Discriminator Loss: tf.Tensor(1.753165, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.7322076, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 4000\n",
+ "Discriminator Loss: tf.Tensor(1.5038218, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.13058859, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 4001\n",
+ "Discriminator Loss: tf.Tensor(1.2999257, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.13873298, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 4002\n",
+ "Discriminator Loss: tf.Tensor(0.9714986, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.0087589, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 4003\n",
+ "Discriminator Loss: tf.Tensor(1.6067444, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.5701827, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 4004\n",
+ "Discriminator Loss: tf.Tensor(1.0352662, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.7491663, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 4005\n",
+ "Discriminator Loss: tf.Tensor(1.2663836, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.8776899, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 4006\n",
+ "Discriminator Loss: tf.Tensor(0.71354795, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.8269735, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 4007\n",
+ "Discriminator Loss: tf.Tensor(0.7699715, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.607707, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 4008\n",
+ "Discriminator Loss: tf.Tensor(4.7179537, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(5.599256, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 4009\n",
+ "Discriminator Loss: tf.Tensor(0.935912, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.31762302, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 4010\n",
+ "Discriminator Loss: tf.Tensor(0.7480432, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.29753664, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 4011\n",
+ "Discriminator Loss: tf.Tensor(1.3089983, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.6519318, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 4012\n",
+ "Discriminator Loss: tf.Tensor(1.4961416, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.46877238, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 4013\n",
+ "Discriminator Loss: tf.Tensor(1.1308513, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.46990785, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 4014\n",
+ "Discriminator Loss: tf.Tensor(1.4932472, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.08323494, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 4015\n",
+ "Discriminator Loss: tf.Tensor(0.84331715, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.0402733, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 4016\n",
+ "Discriminator Loss: tf.Tensor(1.1989706, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.16250332, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 4017\n",
+ "Discriminator Loss: tf.Tensor(1.485877, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.8174189, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 4018\n",
+ "Discriminator Loss: tf.Tensor(1.2116175, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.16397737, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 4019\n",
+ "Discriminator Loss: tf.Tensor(1.1325712, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.8244973, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 4020\n",
+ "Discriminator Loss: tf.Tensor(1.2814056, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.24401216, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 4021\n",
+ "Discriminator Loss: tf.Tensor(0.4635567, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.1223316, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 4022\n",
+ "Discriminator Loss: tf.Tensor(1.243333, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.16992182, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 4023\n",
+ "Discriminator Loss: tf.Tensor(2.6452947, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.8365179, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 4024\n",
+ "Discriminator Loss: tf.Tensor(1.245537, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.08288557, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 4025\n",
+ "Discriminator Loss: tf.Tensor(1.2650495, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.056834415, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 4026\n",
+ "Discriminator Loss: tf.Tensor(1.1284478, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.91781425, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 4027\n",
+ "Discriminator Loss: tf.Tensor(1.2396942, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.15184222, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 4028\n",
+ "Discriminator Loss: tf.Tensor(1.5832634, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.038481, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 4029\n",
+ "Discriminator Loss: tf.Tensor(1.5180736, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.46999896, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 4030\n",
+ "Discriminator Loss: tf.Tensor(1.0045769, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.6948969, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 4031\n",
+ "Discriminator Loss: tf.Tensor(1.1702027, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.31853768, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 4032\n",
+ "Discriminator Loss: tf.Tensor(1.2083472, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.8310093, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 4033\n",
+ "Discriminator Loss: tf.Tensor(1.8345411, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.8018115, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 4034\n",
+ "Discriminator Loss: tf.Tensor(1.1810486, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.25799116, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 4035\n",
+ "Discriminator Loss: tf.Tensor(1.1603048, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.28527343, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 4036\n",
+ "Discriminator Loss: tf.Tensor(0.95867777, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.6337759, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 4037\n",
+ "Discriminator Loss: tf.Tensor(0.9096487, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.94322854, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 4038\n",
+ "Discriminator Loss: tf.Tensor(0.61521375, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.68421173, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 4039\n",
+ "Discriminator Loss: tf.Tensor(3.5660768, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(3.9121988, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 4040\n",
+ "Discriminator Loss: tf.Tensor(1.3528243, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.13404009, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 4041\n",
+ "Discriminator Loss: tf.Tensor(1.2418592, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.08438627, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 4042\n",
+ "Discriminator Loss: tf.Tensor(0.8739206, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.8353219, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 4043\n",
+ "Discriminator Loss: tf.Tensor(1.4576036, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.34214172, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 4044\n",
+ "Discriminator Loss: tf.Tensor(1.2410945, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.4797974, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 4045\n",
+ "Discriminator Loss: tf.Tensor(2.0737526, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-1.0376667, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 4046\n",
+ "Discriminator Loss: tf.Tensor(1.7350211, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.17702013, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 4047\n",
+ "Discriminator Loss: tf.Tensor(1.3772167, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.17037202, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 4048\n",
+ "Discriminator Loss: tf.Tensor(0.884752, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.7875795, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 4049\n",
+ "Discriminator Loss: tf.Tensor(0.5624049, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.94624656, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 4050\n",
+ "Discriminator Loss: tf.Tensor(1.1685936, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.5071101, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 4051\n",
+ "Discriminator Loss: tf.Tensor(2.1356313, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-1.0867676, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 4052\n",
+ "Discriminator Loss: tf.Tensor(1.0051783, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.34728897, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 4053\n",
+ "Discriminator Loss: tf.Tensor(0.8705543, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.27005124, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 4054\n",
+ "Discriminator Loss: tf.Tensor(2.1849499, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.7894733, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 4055\n",
+ "Discriminator Loss: tf.Tensor(1.5891157, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.527259, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 4056\n",
+ "Discriminator Loss: tf.Tensor(1.3092862, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.49733102, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 4057\n",
+ "Discriminator Loss: tf.Tensor(1.3661861, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.36602274, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 4058\n",
+ "Discriminator Loss: tf.Tensor(0.8490927, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.0482371, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 4059\n",
+ "Discriminator Loss: tf.Tensor(1.4612118, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.41106632, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 4060\n",
+ "Discriminator Loss: tf.Tensor(1.1214035, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.191208, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 4061\n",
+ "Discriminator Loss: tf.Tensor(1.7859361, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.75343674, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 4062\n",
+ "Discriminator Loss: tf.Tensor(1.3855617, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.23650198, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 4063\n",
+ "Discriminator Loss: tf.Tensor(1.0339417, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.9068281, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 4064\n",
+ "Discriminator Loss: tf.Tensor(1.4006971, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.15247385, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 4065\n",
+ "Discriminator Loss: tf.Tensor(1.3551277, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.1814623, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 4066\n",
+ "Discriminator Loss: tf.Tensor(2.1057758, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-1.0771753, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 4067\n",
+ "Discriminator Loss: tf.Tensor(1.6877662, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.13520809, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 4068\n",
+ "Discriminator Loss: tf.Tensor(1.4337114, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.1902415, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 4069\n",
+ "Discriminator Loss: tf.Tensor(1.1702145, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.23654509, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 4070\n",
+ "Discriminator Loss: tf.Tensor(1.6070044, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.4276036, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 4071\n",
+ "Discriminator Loss: tf.Tensor(2.0761678, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-1.0547384, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 4072\n",
+ "Discriminator Loss: tf.Tensor(1.5401014, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.10375458, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 4073\n",
+ "Discriminator Loss: tf.Tensor(1.3006849, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.26181415, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 4074\n",
+ "Discriminator Loss: tf.Tensor(1.2197261, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.3066456, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 4075\n",
+ "Discriminator Loss: tf.Tensor(0.728148, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.1532775, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 4076\n",
+ "Discriminator Loss: tf.Tensor(2.287497, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-1.2604958, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 4077\n",
+ "Discriminator Loss: tf.Tensor(1.7256204, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.4582157, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 4078\n",
+ "Discriminator Loss: tf.Tensor(1.4314262, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.23093684, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 4079\n",
+ "Discriminator Loss: tf.Tensor(0.77130246, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.72248524, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 4080\n",
+ "Discriminator Loss: tf.Tensor(0.26288497, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.9413094, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 4081\n",
+ "Discriminator Loss: tf.Tensor(2.8104334, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(3.654733, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 4082\n",
+ "Discriminator Loss: tf.Tensor(1.2399817, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.18559027, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 4083\n",
+ "Discriminator Loss: tf.Tensor(1.2756681, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.69877195, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 4084\n",
+ "Discriminator Loss: tf.Tensor(0.7797868, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.68400174, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 4085\n",
+ "Discriminator Loss: tf.Tensor(1.1458904, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.4470688, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 4086\n",
+ "Discriminator Loss: tf.Tensor(1.413694, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.370867, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 4087\n",
+ "Discriminator Loss: tf.Tensor(1.3005567, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.17186539, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 4088\n",
+ "Discriminator Loss: tf.Tensor(1.5606098, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.2606392, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 4089\n",
+ "Discriminator Loss: tf.Tensor(1.5593046, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.5208414, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 4090\n",
+ "Discriminator Loss: tf.Tensor(1.4171388, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.41724443, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 4091\n",
+ "Discriminator Loss: tf.Tensor(1.386237, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.39338875, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 4092\n",
+ "Discriminator Loss: tf.Tensor(1.0391746, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.8157058, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 4093\n",
+ "Discriminator Loss: tf.Tensor(1.3568466, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.6746039, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 4094\n",
+ "Discriminator Loss: tf.Tensor(1.0618707, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.2226038, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 4095\n",
+ "Discriminator Loss: tf.Tensor(2.1375287, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-1.1019223, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 4096\n",
+ "Discriminator Loss: tf.Tensor(1.5629491, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.24366999, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 4097\n",
+ "Discriminator Loss: tf.Tensor(1.4023747, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.016056472, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 4098\n",
+ "Discriminator Loss: tf.Tensor(0.94771314, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.764287, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 4099\n",
+ "Discriminator Loss: tf.Tensor(1.0914825, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.0044253, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 4100\n",
+ "Discriminator Loss: tf.Tensor(0.60618734, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.68022776, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 4101\n",
+ "Discriminator Loss: tf.Tensor(2.7027254, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.448181, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 4102\n",
+ "Discriminator Loss: tf.Tensor(1.3986892, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.25446263, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 4103\n",
+ "Discriminator Loss: tf.Tensor(1.2398871, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.11332745, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 4104\n",
+ "Discriminator Loss: tf.Tensor(0.84195113, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.5494542, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 4105\n",
+ "Discriminator Loss: tf.Tensor(1.240201, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.98374254, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 4106\n",
+ "Discriminator Loss: tf.Tensor(0.9310789, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.31160983, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 4107\n",
+ "Discriminator Loss: tf.Tensor(2.5078704, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.1798127, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 4108\n",
+ "Discriminator Loss: tf.Tensor(1.2491765, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.15470518, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 4109\n",
+ "Discriminator Loss: tf.Tensor(1.1033258, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.16715159, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 4110\n",
+ "Discriminator Loss: tf.Tensor(0.9525994, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.0564522, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 4111\n",
+ "Discriminator Loss: tf.Tensor(1.6937418, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.6291947, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 4112\n",
+ "Discriminator Loss: tf.Tensor(1.259925, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.9202688, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 4113\n",
+ "Discriminator Loss: tf.Tensor(1.2003549, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.536434, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 4114\n",
+ "Discriminator Loss: tf.Tensor(0.91278994, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.4111992, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 4115\n",
+ "Discriminator Loss: tf.Tensor(1.8846699, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.8463235, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 4116\n",
+ "Discriminator Loss: tf.Tensor(1.3599316, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.47612515, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 4117\n",
+ "Discriminator Loss: tf.Tensor(1.0442467, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.4008832, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 4118\n",
+ "Discriminator Loss: tf.Tensor(1.0878187, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.1939572, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 4119\n",
+ "Discriminator Loss: tf.Tensor(2.269256, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-1.2364584, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 4120\n",
+ "Discriminator Loss: tf.Tensor(1.2598602, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(4.2202573e-05, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 4121\n",
+ "Discriminator Loss: tf.Tensor(0.78036004, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.8263797, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 4122\n",
+ "Discriminator Loss: tf.Tensor(0.9276489, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.83126694, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 4123\n",
+ "Discriminator Loss: tf.Tensor(0.70495176, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.8359756, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 4124\n",
+ "Discriminator Loss: tf.Tensor(1.1651936, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.07517975, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 4125\n",
+ "Discriminator Loss: tf.Tensor(2.2423394, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.4124168, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 4126\n",
+ "Discriminator Loss: tf.Tensor(1.541833, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.27911732, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 4127\n",
+ "Discriminator Loss: tf.Tensor(1.5088545, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.1426637, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 4128\n",
+ "Discriminator Loss: tf.Tensor(1.2802885, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.370675, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 4129\n",
+ "Discriminator Loss: tf.Tensor(1.5288851, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.18010642, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 4130\n",
+ "Discriminator Loss: tf.Tensor(1.4885725, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.7276388, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 4131\n",
+ "Discriminator Loss: tf.Tensor(1.4935536, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.3805654, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 4132\n",
+ "Discriminator Loss: tf.Tensor(0.87220764, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.7696896, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 4133\n",
+ "Discriminator Loss: tf.Tensor(1.6854362, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.4309673, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 4134\n",
+ "Discriminator Loss: tf.Tensor(2.2773952, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-1.2337834, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 4135\n",
+ "Discriminator Loss: tf.Tensor(1.7151856, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.12513088, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 4136\n",
+ "Discriminator Loss: tf.Tensor(1.1852642, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.29875627, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 4137\n",
+ "Discriminator Loss: tf.Tensor(1.041845, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.6193501, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 4138\n",
+ "Discriminator Loss: tf.Tensor(1.0500846, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.9706369, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 4139\n",
+ "Discriminator Loss: tf.Tensor(1.7347561, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.61651635, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 4140\n",
+ "Discriminator Loss: tf.Tensor(1.0955238, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.98684883, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 4141\n",
+ "Discriminator Loss: tf.Tensor(0.8122836, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.3611901, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 4142\n",
+ "Discriminator Loss: tf.Tensor(1.9532404, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.235008, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 4143\n",
+ "Discriminator Loss: tf.Tensor(1.8658789, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.8313868, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 4144\n",
+ "Discriminator Loss: tf.Tensor(1.737939, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.19546808, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 4145\n",
+ "Discriminator Loss: tf.Tensor(1.5253246, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.059220325, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 4146\n",
+ "Discriminator Loss: tf.Tensor(0.85821307, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.7151859, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 4147\n",
+ "Discriminator Loss: tf.Tensor(1.1579192, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.0696564, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 4148\n",
+ "Discriminator Loss: tf.Tensor(1.320413, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.28257266, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 4149\n",
+ "Discriminator Loss: tf.Tensor(1.0593445, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.62124205, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 4150\n",
+ "Discriminator Loss: tf.Tensor(1.1602814, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.2842945, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 4151\n",
+ "Discriminator Loss: tf.Tensor(1.5038966, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.47822818, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 4152\n",
+ "Discriminator Loss: tf.Tensor(0.90093887, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.4275225, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 4153\n",
+ "Discriminator Loss: tf.Tensor(1.1086512, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.2562412, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 4154\n",
+ "Discriminator Loss: tf.Tensor(1.2173836, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.17746176, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 4155\n",
+ "Discriminator Loss: tf.Tensor(1.0313194, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.71376157, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 4156\n",
+ "Discriminator Loss: tf.Tensor(1.1125381, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.7059271, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 4157\n",
+ "Discriminator Loss: tf.Tensor(2.9994226, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.2949784, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 4158\n",
+ "Discriminator Loss: tf.Tensor(1.6044754, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.5304859, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 4159\n",
+ "Discriminator Loss: tf.Tensor(1.4454616, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.022528246, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 4160\n",
+ "Discriminator Loss: tf.Tensor(1.2260069, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.29364705, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 4161\n",
+ "Discriminator Loss: tf.Tensor(1.2044557, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.48665774, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 4162\n",
+ "Discriminator Loss: tf.Tensor(0.9244022, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.2555789, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 4163\n",
+ "Discriminator Loss: tf.Tensor(2.1482894, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-1.1197869, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 4164\n",
+ "Discriminator Loss: tf.Tensor(1.6927916, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.40444016, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 4165\n",
+ "Discriminator Loss: tf.Tensor(1.4408554, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.0043949815, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 4166\n",
+ "Discriminator Loss: tf.Tensor(1.3538308, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.18737209, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 4167\n",
+ "Discriminator Loss: tf.Tensor(0.7501009, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.9383545, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 4168\n",
+ "Discriminator Loss: tf.Tensor(1.2773787, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.07211865, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 4169\n",
+ "Discriminator Loss: tf.Tensor(2.396568, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.3414886, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 4170\n",
+ "Discriminator Loss: tf.Tensor(1.0558885, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.013102144, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 4171\n",
+ "Discriminator Loss: tf.Tensor(0.86616886, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.35771468, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 4172\n",
+ "Discriminator Loss: tf.Tensor(0.469773, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.92809504, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 4173\n",
+ "Discriminator Loss: tf.Tensor(0.9481479, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.1942506, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 4174\n",
+ "Discriminator Loss: tf.Tensor(1.6509566, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.5898788, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 4175\n",
+ "Discriminator Loss: tf.Tensor(1.0108953, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.5193709, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 4176\n",
+ "Discriminator Loss: tf.Tensor(1.7555321, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.7889668, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 4177\n",
+ "Discriminator Loss: tf.Tensor(1.6753395, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.6448411, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 4178\n",
+ "Discriminator Loss: tf.Tensor(1.2781816, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.6044993, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 4179\n",
+ "Discriminator Loss: tf.Tensor(0.79114485, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.6446874, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 4180\n",
+ "Discriminator Loss: tf.Tensor(1.3043394, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.6148821, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 4181\n",
+ "Discriminator Loss: tf.Tensor(2.0923607, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-1.0578547, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 4182\n",
+ "Discriminator Loss: tf.Tensor(1.5037144, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.20939688, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 4183\n",
+ "Discriminator Loss: tf.Tensor(1.1879792, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.3357428, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 4184\n",
+ "Discriminator Loss: tf.Tensor(0.5580021, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.80025595, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 4185\n",
+ "Discriminator Loss: tf.Tensor(1.9624741, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.344303, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 4186\n",
+ "Discriminator Loss: tf.Tensor(1.5785182, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.54931194, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 4187\n",
+ "Discriminator Loss: tf.Tensor(1.09167, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.43854573, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 4188\n",
+ "Discriminator Loss: tf.Tensor(0.9281004, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.643318, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 4189\n",
+ "Discriminator Loss: tf.Tensor(0.89396715, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.3117722, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 4190\n",
+ "Discriminator Loss: tf.Tensor(1.8804886, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.83954525, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 4191\n",
+ "Discriminator Loss: tf.Tensor(1.4079103, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.028082883, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 4192\n",
+ "Discriminator Loss: tf.Tensor(1.2480996, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.5428557, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 4193\n",
+ "Discriminator Loss: tf.Tensor(1.0981823, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.8482349, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 4194\n",
+ "Discriminator Loss: tf.Tensor(0.75245595, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.8224471, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 4195\n",
+ "Discriminator Loss: tf.Tensor(2.281932, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.442338, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 4196\n",
+ "Discriminator Loss: tf.Tensor(1.4402485, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.4131421, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 4197\n",
+ "Discriminator Loss: tf.Tensor(1.1975728, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.28615263, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 4198\n",
+ "Discriminator Loss: tf.Tensor(0.73545325, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.66701365, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 4199\n",
+ "Discriminator Loss: tf.Tensor(1.5248691, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.7163607, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 4200\n",
+ "Discriminator Loss: tf.Tensor(2.1047068, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-1.0644552, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 4201\n",
+ "Discriminator Loss: tf.Tensor(1.5714284, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.20538695, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 4202\n",
+ "Discriminator Loss: tf.Tensor(1.2831856, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.38943562, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 4203\n",
+ "Discriminator Loss: tf.Tensor(1.0621619, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.640904, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 4204\n",
+ "Discriminator Loss: tf.Tensor(0.992117, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.0408758, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 4205\n",
+ "Discriminator Loss: tf.Tensor(1.1657877, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.105738916, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 4206\n",
+ "Discriminator Loss: tf.Tensor(1.4818711, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.4118251, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 4207\n",
+ "Discriminator Loss: tf.Tensor(1.5400475, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.5084041, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 4208\n",
+ "Discriminator Loss: tf.Tensor(1.4859455, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.23197521, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 4209\n",
+ "Discriminator Loss: tf.Tensor(1.3200963, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.39809644, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 4210\n",
+ "Discriminator Loss: tf.Tensor(0.99262667, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.75172997, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 4211\n",
+ "Discriminator Loss: tf.Tensor(0.99965745, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.399353, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 4212\n",
+ "Discriminator Loss: tf.Tensor(1.912578, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.879051, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 4213\n",
+ "Discriminator Loss: tf.Tensor(1.4208742, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.050218344, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 4214\n",
+ "Discriminator Loss: tf.Tensor(0.9311777, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.61741465, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 4215\n",
+ "Discriminator Loss: tf.Tensor(1.3534468, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.8003378, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 4216\n",
+ "Discriminator Loss: tf.Tensor(1.9133669, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.8830395, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 4217\n",
+ "Discriminator Loss: tf.Tensor(1.457526, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.16619232, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 4218\n",
+ "Discriminator Loss: tf.Tensor(1.2727206, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.37634194, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 4219\n",
+ "Discriminator Loss: tf.Tensor(1.0326765, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.94468516, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 4220\n",
+ "Discriminator Loss: tf.Tensor(1.2104212, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.2397734, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 4221\n",
+ "Discriminator Loss: tf.Tensor(1.6444277, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.4544995, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 4222\n",
+ "Discriminator Loss: tf.Tensor(1.7532355, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.7274556, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 4223\n",
+ "Discriminator Loss: tf.Tensor(1.2573009, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.098893546, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 4224\n",
+ "Discriminator Loss: tf.Tensor(0.7883847, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.66254365, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 4225\n",
+ "Discriminator Loss: tf.Tensor(2.8670902, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.3763947, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 4226\n",
+ "Discriminator Loss: tf.Tensor(1.5923382, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.5544285, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 4227\n",
+ "Discriminator Loss: tf.Tensor(1.3015378, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.33655846, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 4228\n",
+ "Discriminator Loss: tf.Tensor(1.2312913, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.56817555, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 4229\n",
+ "Discriminator Loss: tf.Tensor(1.1437626, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.687516, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 4230\n",
+ "Discriminator Loss: tf.Tensor(0.960307, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.89149284, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 4231\n",
+ "Discriminator Loss: tf.Tensor(0.87289, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.6971337, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 4232\n",
+ "Discriminator Loss: tf.Tensor(1.76723, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.1312435, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 4233\n",
+ "Discriminator Loss: tf.Tensor(1.48813, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.45884693, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 4234\n",
+ "Discriminator Loss: tf.Tensor(1.4434953, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.03354035, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 4235\n",
+ "Discriminator Loss: tf.Tensor(0.99339294, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.54987043, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 4236\n",
+ "Discriminator Loss: tf.Tensor(1.1412798, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.2266477, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 4237\n",
+ "Discriminator Loss: tf.Tensor(2.0674038, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-1.0277132, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 4238\n",
+ "Discriminator Loss: tf.Tensor(1.646303, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.2996488, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 4239\n",
+ "Discriminator Loss: tf.Tensor(1.1729401, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.49833688, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 4240\n",
+ "Discriminator Loss: tf.Tensor(0.60415006, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.0318364, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 4241\n",
+ "Discriminator Loss: tf.Tensor(1.0699458, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.015742661, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 4242\n",
+ "Discriminator Loss: tf.Tensor(1.7889298, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.8607159, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 4243\n",
+ "Discriminator Loss: tf.Tensor(1.4196815, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.3467876, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 4244\n",
+ "Discriminator Loss: tf.Tensor(1.1639969, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.43343544, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 4245\n",
+ "Discriminator Loss: tf.Tensor(1.0214384, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.6359388, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 4246\n",
+ "Discriminator Loss: tf.Tensor(0.92776835, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.0532275, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 4247\n",
+ "Discriminator Loss: tf.Tensor(0.5978867, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.76035887, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 4248\n",
+ "Discriminator Loss: tf.Tensor(1.9632142, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.0185046, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 4249\n",
+ "Discriminator Loss: tf.Tensor(1.1069037, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.07051426, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 4250\n",
+ "Discriminator Loss: tf.Tensor(1.1345861, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.62206066, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 4251\n",
+ "Discriminator Loss: tf.Tensor(0.9696336, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.9303053, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 4252\n",
+ "Discriminator Loss: tf.Tensor(0.647125, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.3806416, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 4253\n",
+ "Discriminator Loss: tf.Tensor(1.7112126, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.65235937, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 4254\n",
+ "Discriminator Loss: tf.Tensor(0.7970464, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.9818726, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 4255\n",
+ "Discriminator Loss: tf.Tensor(1.2702785, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.16789466, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 4256\n",
+ "Discriminator Loss: tf.Tensor(1.7757201, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.7869158, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 4257\n",
+ "Discriminator Loss: tf.Tensor(1.3943878, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.21993728, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 4258\n",
+ "Discriminator Loss: tf.Tensor(1.2225064, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.40100682, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 4259\n",
+ "Discriminator Loss: tf.Tensor(1.0162644, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.58878356, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 4260\n",
+ "Discriminator Loss: tf.Tensor(1.3414967, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.211126, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 4261\n",
+ "Discriminator Loss: tf.Tensor(1.3672099, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.32828104, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 4262\n",
+ "Discriminator Loss: tf.Tensor(1.3654114, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.5065254, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 4263\n",
+ "Discriminator Loss: tf.Tensor(1.1541424, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.408067, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 4264\n",
+ "Discriminator Loss: tf.Tensor(0.9166763, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.2042196, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 4265\n",
+ "Discriminator Loss: tf.Tensor(1.4803404, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.44331017, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 4266\n",
+ "Discriminator Loss: tf.Tensor(1.0612478, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.9152303, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 4267\n",
+ "Discriminator Loss: tf.Tensor(1.0800468, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.29589725, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 4268\n",
+ "Discriminator Loss: tf.Tensor(1.2064353, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.528771, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 4269\n",
+ "Discriminator Loss: tf.Tensor(1.796392, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.75882095, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 4270\n",
+ "Discriminator Loss: tf.Tensor(1.1383325, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.39420506, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 4271\n",
+ "Discriminator Loss: tf.Tensor(0.7279258, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.1355532, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 4272\n",
+ "Discriminator Loss: tf.Tensor(1.4446169, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.39992976, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 4273\n",
+ "Discriminator Loss: tf.Tensor(1.0755364, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.1034943, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 4274\n",
+ "Discriminator Loss: tf.Tensor(1.4538447, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.417452, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 4275\n",
+ "Discriminator Loss: tf.Tensor(1.237454, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.62423927, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 4276\n",
+ "Discriminator Loss: tf.Tensor(0.97727704, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.8345933, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 4277\n",
+ "Discriminator Loss: tf.Tensor(1.0573494, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.5846877, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 4278\n",
+ "Discriminator Loss: tf.Tensor(1.8779584, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.8484502, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 4279\n",
+ "Discriminator Loss: tf.Tensor(1.3607676, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.001376121, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 4280\n",
+ "Discriminator Loss: tf.Tensor(0.9684623, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.57660854, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 4281\n",
+ "Discriminator Loss: tf.Tensor(0.92998946, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.3645796, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 4282\n",
+ "Discriminator Loss: tf.Tensor(1.6226112, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.5886206, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 4283\n",
+ "Discriminator Loss: tf.Tensor(1.0033016, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.37565503, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 4284\n",
+ "Discriminator Loss: tf.Tensor(0.8646699, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.2393193, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 4285\n",
+ "Discriminator Loss: tf.Tensor(1.6344417, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.593721, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 4286\n",
+ "Discriminator Loss: tf.Tensor(0.7208431, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.97346425, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 4287\n",
+ "Discriminator Loss: tf.Tensor(1.0879381, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.009341543, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 4288\n",
+ "Discriminator Loss: tf.Tensor(1.9624677, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.1895874, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 4289\n",
+ "Discriminator Loss: tf.Tensor(1.3101618, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.03282706, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 4290\n",
+ "Discriminator Loss: tf.Tensor(1.3009822, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.03465323, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 4291\n",
+ "Discriminator Loss: tf.Tensor(1.0616189, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.7556929, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 4292\n",
+ "Discriminator Loss: tf.Tensor(0.72874635, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.8012161, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 4293\n",
+ "Discriminator Loss: tf.Tensor(2.138828, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.4703424, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 4294\n",
+ "Discriminator Loss: tf.Tensor(1.1624818, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.1309417, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 4295\n",
+ "Discriminator Loss: tf.Tensor(1.4723246, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.514462, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 4296\n",
+ "Discriminator Loss: tf.Tensor(0.53890836, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.99204797, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 4297\n",
+ "Discriminator Loss: tf.Tensor(0.63406944, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.4609165, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 4298\n",
+ "Discriminator Loss: tf.Tensor(2.443194, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.6279123, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 4299\n",
+ "Discriminator Loss: tf.Tensor(1.0345728, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.035712752, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 4300\n",
+ "Discriminator Loss: tf.Tensor(0.5601308, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.720053, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 4301\n",
+ "Discriminator Loss: tf.Tensor(1.1288631, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.1397852, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 4302\n",
+ "Discriminator Loss: tf.Tensor(1.1936115, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.1525323, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 4303\n",
+ "Discriminator Loss: tf.Tensor(0.5964763, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.9915314, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 4304\n",
+ "Discriminator Loss: tf.Tensor(0.80755043, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.44134974, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 4305\n",
+ "Discriminator Loss: tf.Tensor(2.2335558, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.572405, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 4306\n",
+ "Discriminator Loss: tf.Tensor(1.1715308, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.04220164, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 4307\n",
+ "Discriminator Loss: tf.Tensor(1.2159399, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.32978776, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 4308\n",
+ "Discriminator Loss: tf.Tensor(1.1787794, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.183283, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 4309\n",
+ "Discriminator Loss: tf.Tensor(1.6355093, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.58219814, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 4310\n",
+ "Discriminator Loss: tf.Tensor(0.8828214, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.89687985, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 4311\n",
+ "Discriminator Loss: tf.Tensor(1.2295365, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.0128058, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 4312\n",
+ "Discriminator Loss: tf.Tensor(0.7301386, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.5350509, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 4313\n",
+ "Discriminator Loss: tf.Tensor(1.9425077, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.04867, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 4314\n",
+ "Discriminator Loss: tf.Tensor(1.2938428, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.2217954, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 4315\n",
+ "Discriminator Loss: tf.Tensor(0.9733077, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.41311064, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 4316\n",
+ "Discriminator Loss: tf.Tensor(0.6428155, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.5804272, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 4317\n",
+ "Discriminator Loss: tf.Tensor(2.2001657, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.4628546, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 4318\n",
+ "Discriminator Loss: tf.Tensor(1.0779285, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.04644477, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 4319\n",
+ "Discriminator Loss: tf.Tensor(0.85143375, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.88519627, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 4320\n",
+ "Discriminator Loss: tf.Tensor(1.040944, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.28221628, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 4321\n",
+ "Discriminator Loss: tf.Tensor(1.130435, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.5864605, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 4322\n",
+ "Discriminator Loss: tf.Tensor(1.2571772, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.21638386, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 4323\n",
+ "Discriminator Loss: tf.Tensor(1.2998073, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.455264, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 4324\n",
+ "Discriminator Loss: tf.Tensor(0.77119076, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.1559747, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 4325\n",
+ "Discriminator Loss: tf.Tensor(1.7910931, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.7494383, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 4326\n",
+ "Discriminator Loss: tf.Tensor(0.90864927, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.8098549, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 4327\n",
+ "Discriminator Loss: tf.Tensor(1.0025396, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.92746013, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 4328\n",
+ "Discriminator Loss: tf.Tensor(0.80544734, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.3663925, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 4329\n",
+ "Discriminator Loss: tf.Tensor(1.823834, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.770449, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 4330\n",
+ "Discriminator Loss: tf.Tensor(1.3497174, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.27616918, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 4331\n",
+ "Discriminator Loss: tf.Tensor(0.56734633, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.9614317, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 4332\n",
+ "Discriminator Loss: tf.Tensor(0.94254196, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.33952126, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 4333\n",
+ "Discriminator Loss: tf.Tensor(3.5164368, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(3.7776554, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 4334\n",
+ "Discriminator Loss: tf.Tensor(1.2819836, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.052135587, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 4335\n",
+ "Discriminator Loss: tf.Tensor(1.190313, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.0691087, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 4336\n",
+ "Discriminator Loss: tf.Tensor(0.584726, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.8948605, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 4337\n",
+ "Discriminator Loss: tf.Tensor(1.2406628, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.0900964, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 4338\n",
+ "Discriminator Loss: tf.Tensor(0.9603922, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.12033146, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 4339\n",
+ "Discriminator Loss: tf.Tensor(1.6268759, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.374906, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 4340\n",
+ "Discriminator Loss: tf.Tensor(1.3369101, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.3074141, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 4341\n",
+ "Discriminator Loss: tf.Tensor(0.96849823, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.933091, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 4342\n",
+ "Discriminator Loss: tf.Tensor(0.8481934, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.4510983, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 4343\n",
+ "Discriminator Loss: tf.Tensor(1.2195109, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.3099465, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 4344\n",
+ "Discriminator Loss: tf.Tensor(1.7868916, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.74366903, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 4345\n",
+ "Discriminator Loss: tf.Tensor(0.9314315, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.51026094, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 4346\n",
+ "Discriminator Loss: tf.Tensor(1.1136382, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.51299125, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 4347\n",
+ "Discriminator Loss: tf.Tensor(1.0966582, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.2928033, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 4348\n",
+ "Discriminator Loss: tf.Tensor(1.7545722, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.70122886, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 4349\n",
+ "Discriminator Loss: tf.Tensor(1.1320833, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.0909467, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 4350\n",
+ "Discriminator Loss: tf.Tensor(1.4370446, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.19323249, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 4351\n",
+ "Discriminator Loss: tf.Tensor(0.93711907, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.015977, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 4352\n",
+ "Discriminator Loss: tf.Tensor(1.2696093, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.094582506, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 4353\n",
+ "Discriminator Loss: tf.Tensor(1.0655215, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.4641098, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 4354\n",
+ "Discriminator Loss: tf.Tensor(1.716482, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.68495363, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 4355\n",
+ "Discriminator Loss: tf.Tensor(1.462664, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.25304964, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 4356\n",
+ "Discriminator Loss: tf.Tensor(1.0323052, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.71679115, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 4357\n",
+ "Discriminator Loss: tf.Tensor(0.6375353, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.96015733, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 4358\n",
+ "Discriminator Loss: tf.Tensor(1.4661133, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.8285624, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 4359\n",
+ "Discriminator Loss: tf.Tensor(2.1009002, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-1.0641149, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 4360\n",
+ "Discriminator Loss: tf.Tensor(1.7925137, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.26499608, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 4361\n",
+ "Discriminator Loss: tf.Tensor(1.4979677, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.005622471, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 4362\n",
+ "Discriminator Loss: tf.Tensor(0.97591895, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.92948645, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 4363\n",
+ "Discriminator Loss: tf.Tensor(0.77217984, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.78593856, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 4364\n",
+ "Discriminator Loss: tf.Tensor(3.2547421, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.5335362, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 4365\n",
+ "Discriminator Loss: tf.Tensor(1.7368252, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.7036535, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 4366\n",
+ "Discriminator Loss: tf.Tensor(1.2837327, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.0754754, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 4367\n",
+ "Discriminator Loss: tf.Tensor(1.0581454, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.34190798, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 4368\n",
+ "Discriminator Loss: tf.Tensor(1.2262627, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.4275559, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 4369\n",
+ "Discriminator Loss: tf.Tensor(1.0721935, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.8866679, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 4370\n",
+ "Discriminator Loss: tf.Tensor(1.1876286, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.23956995, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 4371\n",
+ "Discriminator Loss: tf.Tensor(2.9429698, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(3.8526945, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 4372\n",
+ "Discriminator Loss: tf.Tensor(1.4563602, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.38157216, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 4373\n",
+ "Discriminator Loss: tf.Tensor(0.9338596, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.67892617, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 4374\n",
+ "Discriminator Loss: tf.Tensor(0.74206305, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.77038413, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 4375\n",
+ "Discriminator Loss: tf.Tensor(0.93737274, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.7012182, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 4376\n",
+ "Discriminator Loss: tf.Tensor(2.405466, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-1.3448086, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 4377\n",
+ "Discriminator Loss: tf.Tensor(1.3139157, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.057481352, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 4378\n",
+ "Discriminator Loss: tf.Tensor(0.63649917, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.9969194, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 4379\n",
+ "Discriminator Loss: tf.Tensor(1.0032504, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.0704825, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 4380\n",
+ "Discriminator Loss: tf.Tensor(1.8071495, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.3250167, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 4381\n",
+ "Discriminator Loss: tf.Tensor(1.1938537, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.15533061, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 4382\n",
+ "Discriminator Loss: tf.Tensor(0.62863064, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.0300108, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 4383\n",
+ "Discriminator Loss: tf.Tensor(1.4500117, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.38069823, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 4384\n",
+ "Discriminator Loss: tf.Tensor(1.2622187, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.2015734, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 4385\n",
+ "Discriminator Loss: tf.Tensor(1.3700842, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.3150995, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 4386\n",
+ "Discriminator Loss: tf.Tensor(0.9017877, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.9241608, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 4387\n",
+ "Discriminator Loss: tf.Tensor(0.64378405, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.82358855, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 4388\n",
+ "Discriminator Loss: tf.Tensor(1.3681767, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.6969084, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 4389\n",
+ "Discriminator Loss: tf.Tensor(1.3940119, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.3548298, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 4390\n",
+ "Discriminator Loss: tf.Tensor(1.0578749, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.4641149, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 4391\n",
+ "Discriminator Loss: tf.Tensor(0.6878569, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.2592629, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 4392\n",
+ "Discriminator Loss: tf.Tensor(1.4416525, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.3913351, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 4393\n",
+ "Discriminator Loss: tf.Tensor(1.4567707, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.9847264, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 4394\n",
+ "Discriminator Loss: tf.Tensor(1.0758183, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.3144051, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 4395\n",
+ "Discriminator Loss: tf.Tensor(1.1413004, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.82287264, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 4396\n",
+ "Discriminator Loss: tf.Tensor(1.0371149, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.2295201, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 4397\n",
+ "Discriminator Loss: tf.Tensor(1.793509, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.74765044, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 4398\n",
+ "Discriminator Loss: tf.Tensor(1.5008693, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.009176423, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 4399\n",
+ "Discriminator Loss: tf.Tensor(1.300483, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.38874164, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 4400\n",
+ "Discriminator Loss: tf.Tensor(0.9840268, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.0032421, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 4401\n",
+ "Discriminator Loss: tf.Tensor(0.75748795, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.5377428, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 4402\n",
+ "Discriminator Loss: tf.Tensor(2.285334, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.9182411, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 4403\n",
+ "Discriminator Loss: tf.Tensor(1.4874974, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.45452514, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 4404\n",
+ "Discriminator Loss: tf.Tensor(1.0602843, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.18091309, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 4405\n",
+ "Discriminator Loss: tf.Tensor(0.72074664, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.644309, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 4406\n",
+ "Discriminator Loss: tf.Tensor(0.7453643, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.3161217, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 4407\n",
+ "Discriminator Loss: tf.Tensor(1.990328, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.9320958, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 4408\n",
+ "Discriminator Loss: tf.Tensor(0.91321146, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.75647736, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 4409\n",
+ "Discriminator Loss: tf.Tensor(0.664631, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.6809419, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 4410\n",
+ "Discriminator Loss: tf.Tensor(1.6978922, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.8777447, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 4411\n",
+ "Discriminator Loss: tf.Tensor(1.829551, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.780529, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 4412\n",
+ "Discriminator Loss: tf.Tensor(1.0546528, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.41308093, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 4413\n",
+ "Discriminator Loss: tf.Tensor(0.8188504, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.3278673, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 4414\n",
+ "Discriminator Loss: tf.Tensor(1.9667382, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.9157801, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 4415\n",
+ "Discriminator Loss: tf.Tensor(1.3866428, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.33376655, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 4416\n",
+ "Discriminator Loss: tf.Tensor(0.8615818, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.93246955, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 4417\n",
+ "Discriminator Loss: tf.Tensor(0.8836124, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.60373133, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 4418\n",
+ "Discriminator Loss: tf.Tensor(1.0513608, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.2642734, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 4419\n",
+ "Discriminator Loss: tf.Tensor(2.0797741, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-1.0312809, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 4420\n",
+ "Discriminator Loss: tf.Tensor(0.9938065, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.39885235, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 4421\n",
+ "Discriminator Loss: tf.Tensor(0.75943875, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.3982086, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 4422\n",
+ "Discriminator Loss: tf.Tensor(1.7633677, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.7225337, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 4423\n",
+ "Discriminator Loss: tf.Tensor(0.62661517, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.0651871, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 4424\n",
+ "Discriminator Loss: tf.Tensor(1.7589211, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.69410676, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 4425\n",
+ "Discriminator Loss: tf.Tensor(1.1772969, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.6500998, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 4426\n",
+ "Discriminator Loss: tf.Tensor(1.0044338, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.222213, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 4427\n",
+ "Discriminator Loss: tf.Tensor(1.3810785, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.35013893, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 4428\n",
+ "Discriminator Loss: tf.Tensor(1.187156, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.9052445, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 4429\n",
+ "Discriminator Loss: tf.Tensor(1.230402, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.31259903, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 4430\n",
+ "Discriminator Loss: tf.Tensor(1.0706508, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.6442566, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 4431\n",
+ "Discriminator Loss: tf.Tensor(1.5185077, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.48378775, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 4432\n",
+ "Discriminator Loss: tf.Tensor(1.2712631, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.4925669, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 4433\n",
+ "Discriminator Loss: tf.Tensor(0.8107005, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.1329633, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 4434\n",
+ "Discriminator Loss: tf.Tensor(1.7783585, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.7491123, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 4435\n",
+ "Discriminator Loss: tf.Tensor(0.8925168, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.6643149, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 4436\n",
+ "Discriminator Loss: tf.Tensor(1.0751996, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.1682433, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 4437\n",
+ "Discriminator Loss: tf.Tensor(0.8912941, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.14726286, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 4438\n",
+ "Discriminator Loss: tf.Tensor(1.4324555, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.1111233, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 4439\n",
+ "Discriminator Loss: tf.Tensor(0.81816375, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.44412377, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 4440\n",
+ "Discriminator Loss: tf.Tensor(1.2242223, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.5620546, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 4441\n",
+ "Discriminator Loss: tf.Tensor(0.8208934, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.6893741, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 4442\n",
+ "Discriminator Loss: tf.Tensor(1.6886513, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.64822394, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 4443\n",
+ "Discriminator Loss: tf.Tensor(1.118119, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.1618549, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 4444\n",
+ "Discriminator Loss: tf.Tensor(1.584286, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.54171, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 4445\n",
+ "Discriminator Loss: tf.Tensor(0.9760403, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.6341062, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 4446\n",
+ "Discriminator Loss: tf.Tensor(0.8601866, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.014574, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 4447\n",
+ "Discriminator Loss: tf.Tensor(0.6863231, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.3926097, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 4448\n",
+ "Discriminator Loss: tf.Tensor(2.7985964, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.8598555, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 4449\n",
+ "Discriminator Loss: tf.Tensor(1.4238024, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.21591102, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 4450\n",
+ "Discriminator Loss: tf.Tensor(1.119122, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.2522053, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 4451\n",
+ "Discriminator Loss: tf.Tensor(1.1594114, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.33320847, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 4452\n",
+ "Discriminator Loss: tf.Tensor(1.4213377, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.3938103, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 4453\n",
+ "Discriminator Loss: tf.Tensor(1.9701434, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.93085575, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 4454\n",
+ "Discriminator Loss: tf.Tensor(1.3587604, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.028010197, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 4455\n",
+ "Discriminator Loss: tf.Tensor(0.88933843, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.6605814, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 4456\n",
+ "Discriminator Loss: tf.Tensor(0.78901756, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.6958399, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 4457\n",
+ "Discriminator Loss: tf.Tensor(1.4055569, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.4981594, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 4458\n",
+ "Discriminator Loss: tf.Tensor(1.7358975, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.6985833, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 4459\n",
+ "Discriminator Loss: tf.Tensor(1.0279526, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.4402252, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 4460\n",
+ "Discriminator Loss: tf.Tensor(0.7995818, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.5805497, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 4461\n",
+ "Discriminator Loss: tf.Tensor(1.0468496, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.0091686, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 4462\n",
+ "Discriminator Loss: tf.Tensor(1.6761606, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.5934281, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 4463\n",
+ "Discriminator Loss: tf.Tensor(1.3705611, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.0741496, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 4464\n",
+ "Discriminator Loss: tf.Tensor(1.3521885, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.3161932, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 4465\n",
+ "Discriminator Loss: tf.Tensor(1.0677745, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.6814777, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 4466\n",
+ "Discriminator Loss: tf.Tensor(1.0932435, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.70455337, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 4467\n",
+ "Discriminator Loss: tf.Tensor(0.8482907, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.9424804, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 4468\n",
+ "Discriminator Loss: tf.Tensor(1.8277279, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.77698404, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 4469\n",
+ "Discriminator Loss: tf.Tensor(0.96579957, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.43424717, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 4470\n",
+ "Discriminator Loss: tf.Tensor(1.0774642, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.83508635, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 4471\n",
+ "Discriminator Loss: tf.Tensor(0.83744687, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.8430017, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 4472\n",
+ "Discriminator Loss: tf.Tensor(1.8222765, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.7642363, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 4473\n",
+ "Discriminator Loss: tf.Tensor(0.9180957, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.1725613, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 4474\n",
+ "Discriminator Loss: tf.Tensor(1.5987055, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.5598102, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 4475\n",
+ "Discriminator Loss: tf.Tensor(1.2103225, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.5469513, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 4476\n",
+ "Discriminator Loss: tf.Tensor(1.0018471, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.8601535, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 4477\n",
+ "Discriminator Loss: tf.Tensor(1.1000669, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.4445701, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 4478\n",
+ "Discriminator Loss: tf.Tensor(1.4212197, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.3812631, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 4479\n",
+ "Discriminator Loss: tf.Tensor(1.2614931, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.18271625, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 4480\n",
+ "Discriminator Loss: tf.Tensor(0.75668705, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.2036374, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 4481\n",
+ "Discriminator Loss: tf.Tensor(1.3793037, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.3323379, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 4482\n",
+ "Discriminator Loss: tf.Tensor(0.64518243, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.143217, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 4483\n",
+ "Discriminator Loss: tf.Tensor(1.1980934, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.13063549, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 4484\n",
+ "Discriminator Loss: tf.Tensor(1.2759426, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.7659754, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 4485\n",
+ "Discriminator Loss: tf.Tensor(1.3051779, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.2653152, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 4486\n",
+ "Discriminator Loss: tf.Tensor(0.8692033, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.8331874, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 4487\n",
+ "Discriminator Loss: tf.Tensor(1.140059, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.2568289, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 4488\n",
+ "Discriminator Loss: tf.Tensor(0.96454746, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.0827036, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 4489\n",
+ "Discriminator Loss: tf.Tensor(1.3783303, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.46120167, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 4490\n",
+ "Discriminator Loss: tf.Tensor(0.92924607, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.159617, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 4491\n",
+ "Discriminator Loss: tf.Tensor(1.4925789, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.45370468, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 4492\n",
+ "Discriminator Loss: tf.Tensor(1.0741593, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.56123114, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 4493\n",
+ "Discriminator Loss: tf.Tensor(0.9121938, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.2289976, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 4494\n",
+ "Discriminator Loss: tf.Tensor(1.395503, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.36520767, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 4495\n",
+ "Discriminator Loss: tf.Tensor(1.1264681, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.6887229, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 4496\n",
+ "Discriminator Loss: tf.Tensor(0.73261905, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.1636491, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 4497\n",
+ "Discriminator Loss: tf.Tensor(1.6145132, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.5733782, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 4498\n",
+ "Discriminator Loss: tf.Tensor(1.1477729, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.2541887, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 4499\n",
+ "Discriminator Loss: tf.Tensor(1.4831067, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.38379756, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 4500\n",
+ "Discriminator Loss: tf.Tensor(1.0920368, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.36793268, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 4501\n",
+ "Discriminator Loss: tf.Tensor(0.9476434, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.7467496, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 4502\n",
+ "Discriminator Loss: tf.Tensor(1.7848535, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.7762448, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 4503\n",
+ "Discriminator Loss: tf.Tensor(1.3576064, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.3275067, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 4504\n",
+ "Discriminator Loss: tf.Tensor(1.4387747, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.3263404, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 4505\n",
+ "Discriminator Loss: tf.Tensor(0.93341047, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.31307733, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 4506\n",
+ "Discriminator Loss: tf.Tensor(1.2281858, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.0993543, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 4507\n",
+ "Discriminator Loss: tf.Tensor(1.382241, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.34693527, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 4508\n",
+ "Discriminator Loss: tf.Tensor(0.8095244, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.941834, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 4509\n",
+ "Discriminator Loss: tf.Tensor(0.48900396, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.78421086, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 4510\n",
+ "Discriminator Loss: tf.Tensor(1.0636436, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.2442088, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 4511\n",
+ "Discriminator Loss: tf.Tensor(1.7895446, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.7089076, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 4512\n",
+ "Discriminator Loss: tf.Tensor(1.0306284, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.1228101, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 4513\n",
+ "Discriminator Loss: tf.Tensor(1.3278637, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.15428323, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 4514\n",
+ "Discriminator Loss: tf.Tensor(0.47794616, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.9988439, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 4515\n",
+ "Discriminator Loss: tf.Tensor(0.8562863, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.304516, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 4516\n",
+ "Discriminator Loss: tf.Tensor(1.8951845, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.5415242, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 4517\n",
+ "Discriminator Loss: tf.Tensor(1.2094073, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.17947589, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 4518\n",
+ "Discriminator Loss: tf.Tensor(0.97822213, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.60228825, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 4519\n",
+ "Discriminator Loss: tf.Tensor(0.709887, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.5990014, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 4520\n",
+ "Discriminator Loss: tf.Tensor(1.2493948, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.6910486, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 4521\n",
+ "Discriminator Loss: tf.Tensor(1.8711324, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.8240261, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 4522\n",
+ "Discriminator Loss: tf.Tensor(1.270508, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.15707941, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 4523\n",
+ "Discriminator Loss: tf.Tensor(0.6089941, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.3467792, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 4524\n",
+ "Discriminator Loss: tf.Tensor(1.216399, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.17674108, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 4525\n",
+ "Discriminator Loss: tf.Tensor(1.0035646, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.2547793, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 4526\n",
+ "Discriminator Loss: tf.Tensor(1.4641322, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.425173, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 4527\n",
+ "Discriminator Loss: tf.Tensor(1.3009585, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.487748, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 4528\n",
+ "Discriminator Loss: tf.Tensor(0.98409885, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.643589, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 4529\n",
+ "Discriminator Loss: tf.Tensor(1.1304868, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.9088235, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 4530\n",
+ "Discriminator Loss: tf.Tensor(0.5921765, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.5138453, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 4531\n",
+ "Discriminator Loss: tf.Tensor(1.4069366, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.3450085, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 4532\n",
+ "Discriminator Loss: tf.Tensor(1.4205863, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.5863576, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 4533\n",
+ "Discriminator Loss: tf.Tensor(1.5186003, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.41042233, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 4534\n",
+ "Discriminator Loss: tf.Tensor(0.92259043, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.46551868, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 4535\n",
+ "Discriminator Loss: tf.Tensor(0.9768131, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.8153402, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 4536\n",
+ "Discriminator Loss: tf.Tensor(0.94366175, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.3411723, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 4537\n",
+ "Discriminator Loss: tf.Tensor(2.0975003, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-1.0535334, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 4538\n",
+ "Discriminator Loss: tf.Tensor(1.5961074, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.2527806, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 4539\n",
+ "Discriminator Loss: tf.Tensor(1.3577213, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.52738523, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 4540\n",
+ "Discriminator Loss: tf.Tensor(1.0789342, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.77289253, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 4541\n",
+ "Discriminator Loss: tf.Tensor(1.8691423, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.5136439, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 4542\n",
+ "Discriminator Loss: tf.Tensor(1.7627516, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.7346979, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 4543\n",
+ "Discriminator Loss: tf.Tensor(1.4220538, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.017471943, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 4544\n",
+ "Discriminator Loss: tf.Tensor(0.99797124, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.17837113, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 4545\n",
+ "Discriminator Loss: tf.Tensor(1.164742, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.6512217, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 4546\n",
+ "Discriminator Loss: tf.Tensor(0.92022383, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.0227306, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 4547\n",
+ "Discriminator Loss: tf.Tensor(1.6303494, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.57909554, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 4548\n",
+ "Discriminator Loss: tf.Tensor(0.47729695, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.1569368, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 4549\n",
+ "Discriminator Loss: tf.Tensor(1.6652676, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.6202568, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 4550\n",
+ "Discriminator Loss: tf.Tensor(1.1182958, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.1339624, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 4551\n",
+ "Discriminator Loss: tf.Tensor(1.6370975, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.58872014, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 4552\n",
+ "Discriminator Loss: tf.Tensor(1.1795262, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.33980083, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 4553\n",
+ "Discriminator Loss: tf.Tensor(0.94683063, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.6761763, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 4554\n",
+ "Discriminator Loss: tf.Tensor(1.092052, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.0841953, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 4555\n",
+ "Discriminator Loss: tf.Tensor(1.813901, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.7719597, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 4556\n",
+ "Discriminator Loss: tf.Tensor(0.7300288, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.72162694, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 4557\n",
+ "Discriminator Loss: tf.Tensor(0.44332042, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.6875709, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 4558\n",
+ "Discriminator Loss: tf.Tensor(0.8830471, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.18969733, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 4559\n",
+ "Discriminator Loss: tf.Tensor(5.487657, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.1246418, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 4560\n",
+ "Discriminator Loss: tf.Tensor(1.2199231, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.107068814, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 4561\n",
+ "Discriminator Loss: tf.Tensor(1.0175717, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.38680127, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 4562\n",
+ "Discriminator Loss: tf.Tensor(1.324913, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.3441335, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 4563\n",
+ "Discriminator Loss: tf.Tensor(1.5933391, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.53792304, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 4564\n",
+ "Discriminator Loss: tf.Tensor(1.1100134, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.5319292, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 4565\n",
+ "Discriminator Loss: tf.Tensor(1.2090818, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.4946245, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 4566\n",
+ "Discriminator Loss: tf.Tensor(0.92572415, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.9917032, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 4567\n",
+ "Discriminator Loss: tf.Tensor(0.9288905, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.38816297, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 4568\n",
+ "Discriminator Loss: tf.Tensor(1.1265159, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.5726012, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 4569\n",
+ "Discriminator Loss: tf.Tensor(1.3806103, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.34091857, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 4570\n",
+ "Discriminator Loss: tf.Tensor(1.1869869, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.67687577, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 4571\n",
+ "Discriminator Loss: tf.Tensor(0.8733696, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.1173859, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 4572\n",
+ "Discriminator Loss: tf.Tensor(1.260701, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.20240967, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 4573\n",
+ "Discriminator Loss: tf.Tensor(1.1176654, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.9773645, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 4574\n",
+ "Discriminator Loss: tf.Tensor(1.2521636, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.23284449, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 4575\n",
+ "Discriminator Loss: tf.Tensor(0.94709516, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.5769316, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 4576\n",
+ "Discriminator Loss: tf.Tensor(1.5321579, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.49377036, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 4577\n",
+ "Discriminator Loss: tf.Tensor(1.1432867, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.94715816, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 4578\n",
+ "Discriminator Loss: tf.Tensor(1.1335437, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.18341611, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 4579\n",
+ "Discriminator Loss: tf.Tensor(0.94862115, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.4412321, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 4580\n",
+ "Discriminator Loss: tf.Tensor(1.1554141, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.116050154, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 4581\n",
+ "Discriminator Loss: tf.Tensor(0.9914936, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.0699269, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 4582\n",
+ "Discriminator Loss: tf.Tensor(1.2620784, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.17881824, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 4583\n",
+ "Discriminator Loss: tf.Tensor(1.0393363, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.2775773, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 4584\n",
+ "Discriminator Loss: tf.Tensor(1.6176218, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.58386356, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 4585\n",
+ "Discriminator Loss: tf.Tensor(1.0507046, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.54291904, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 4586\n",
+ "Discriminator Loss: tf.Tensor(0.764092, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.92061156, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 4587\n",
+ "Discriminator Loss: tf.Tensor(0.46541727, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.053332, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 4588\n",
+ "Discriminator Loss: tf.Tensor(1.042217, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.19378446, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 4589\n",
+ "Discriminator Loss: tf.Tensor(2.7014947, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(3.2893932, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 4590\n",
+ "Discriminator Loss: tf.Tensor(1.1834565, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.0412847, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 4591\n",
+ "Discriminator Loss: tf.Tensor(1.0115526, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.21584447, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 4592\n",
+ "Discriminator Loss: tf.Tensor(1.4147378, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.5638787, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 4593\n",
+ "Discriminator Loss: tf.Tensor(1.530146, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.49651924, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 4594\n",
+ "Discriminator Loss: tf.Tensor(1.0452491, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.76470023, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 4595\n",
+ "Discriminator Loss: tf.Tensor(0.93087095, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.0916327, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 4596\n",
+ "Discriminator Loss: tf.Tensor(1.4834563, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.432897, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 4597\n",
+ "Discriminator Loss: tf.Tensor(1.0493383, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.7008454, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 4598\n",
+ "Discriminator Loss: tf.Tensor(1.2348249, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.78301287, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 4599\n",
+ "Discriminator Loss: tf.Tensor(1.2408311, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.2660975, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 4600\n",
+ "Discriminator Loss: tf.Tensor(1.7804835, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.7466412, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 4601\n",
+ "Discriminator Loss: tf.Tensor(1.0426812, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.49307907, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 4602\n",
+ "Discriminator Loss: tf.Tensor(0.7681753, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.9985938, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 4603\n",
+ "Discriminator Loss: tf.Tensor(0.7345337, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.42998123, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 4604\n",
+ "Discriminator Loss: tf.Tensor(1.9476106, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.3046093, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 4605\n",
+ "Discriminator Loss: tf.Tensor(1.3778678, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.3304683, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 4606\n",
+ "Discriminator Loss: tf.Tensor(0.727016, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.7170647, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 4607\n",
+ "Discriminator Loss: tf.Tensor(0.78034127, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.8916657, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 4608\n",
+ "Discriminator Loss: tf.Tensor(0.57964855, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.5547289, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 4609\n",
+ "Discriminator Loss: tf.Tensor(1.3249363, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.2114687, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 4610\n",
+ "Discriminator Loss: tf.Tensor(1.3307894, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.6789738, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 4611\n",
+ "Discriminator Loss: tf.Tensor(0.9233972, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.20166624, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 4612\n",
+ "Discriminator Loss: tf.Tensor(0.6528264, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.0758258, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 4613\n",
+ "Discriminator Loss: tf.Tensor(1.2476869, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.18658023, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 4614\n",
+ "Discriminator Loss: tf.Tensor(1.1761928, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.94559336, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 4615\n",
+ "Discriminator Loss: tf.Tensor(0.5548848, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.0625054, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 4616\n",
+ "Discriminator Loss: tf.Tensor(1.1177697, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.019132636, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 4617\n",
+ "Discriminator Loss: tf.Tensor(1.6140674, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.6224499, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 4618\n",
+ "Discriminator Loss: tf.Tensor(1.2842586, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.20767395, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 4619\n",
+ "Discriminator Loss: tf.Tensor(1.0770937, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.47043857, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 4620\n",
+ "Discriminator Loss: tf.Tensor(0.9876275, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.74417084, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 4621\n",
+ "Discriminator Loss: tf.Tensor(0.84535205, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.8935771, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 4622\n",
+ "Discriminator Loss: tf.Tensor(1.4931126, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.6715212, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 4623\n",
+ "Discriminator Loss: tf.Tensor(1.9726313, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.9320812, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 4624\n",
+ "Discriminator Loss: tf.Tensor(1.3065852, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.061706334, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 4625\n",
+ "Discriminator Loss: tf.Tensor(0.5740784, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.2390505, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 4626\n",
+ "Discriminator Loss: tf.Tensor(1.8612268, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.8258926, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 4627\n",
+ "Discriminator Loss: tf.Tensor(0.8325881, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.5275626, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 4628\n",
+ "Discriminator Loss: tf.Tensor(0.9266789, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.1760387, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 4629\n",
+ "Discriminator Loss: tf.Tensor(0.8630616, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.20854555, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 4630\n",
+ "Discriminator Loss: tf.Tensor(1.3752185, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.3564547, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 4631\n",
+ "Discriminator Loss: tf.Tensor(1.4415176, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.41394472, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 4632\n",
+ "Discriminator Loss: tf.Tensor(0.8631512, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.94358826, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 4633\n",
+ "Discriminator Loss: tf.Tensor(0.89322484, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.6878743, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 4634\n",
+ "Discriminator Loss: tf.Tensor(1.3915249, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.8131653, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 4635\n",
+ "Discriminator Loss: tf.Tensor(1.4197975, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.3849235, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 4636\n",
+ "Discriminator Loss: tf.Tensor(0.631395, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.57633704, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 4637\n",
+ "Discriminator Loss: tf.Tensor(1.2473799, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.6568546, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 4638\n",
+ "Discriminator Loss: tf.Tensor(1.3793222, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.32974672, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 4639\n",
+ "Discriminator Loss: tf.Tensor(0.7322132, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.8613155, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 4640\n",
+ "Discriminator Loss: tf.Tensor(1.2037635, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.74102515, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 4641\n",
+ "Discriminator Loss: tf.Tensor(1.6155405, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.5367483, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 4642\n",
+ "Discriminator Loss: tf.Tensor(1.8277897, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.78760594, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 4643\n",
+ "Discriminator Loss: tf.Tensor(1.227628, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.2631701, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 4644\n",
+ "Discriminator Loss: tf.Tensor(1.021834, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.62071204, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 4645\n",
+ "Discriminator Loss: tf.Tensor(0.96074, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.5722567, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 4646\n",
+ "Discriminator Loss: tf.Tensor(1.636141, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.6014026, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 4647\n",
+ "Discriminator Loss: tf.Tensor(0.82794785, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.049396, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 4648\n",
+ "Discriminator Loss: tf.Tensor(1.4244833, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.3349222, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 4649\n",
+ "Discriminator Loss: tf.Tensor(1.0412499, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.1323664, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 4650\n",
+ "Discriminator Loss: tf.Tensor(1.3228616, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.26452747, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 4651\n",
+ "Discriminator Loss: tf.Tensor(0.91225827, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.8480706, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 4652\n",
+ "Discriminator Loss: tf.Tensor(0.75554967, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.89887697, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 4653\n",
+ "Discriminator Loss: tf.Tensor(1.729526, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.001065, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 4654\n",
+ "Discriminator Loss: tf.Tensor(1.4469438, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.39771798, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 4655\n",
+ "Discriminator Loss: tf.Tensor(0.9172364, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.4708211, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 4656\n",
+ "Discriminator Loss: tf.Tensor(0.84350336, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.7372969, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 4657\n",
+ "Discriminator Loss: tf.Tensor(1.1265353, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.9110441, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 4658\n",
+ "Discriminator Loss: tf.Tensor(1.681891, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.62888247, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 4659\n",
+ "Discriminator Loss: tf.Tensor(0.8055439, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.70562, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 4660\n",
+ "Discriminator Loss: tf.Tensor(0.7289401, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.8442341, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 4661\n",
+ "Discriminator Loss: tf.Tensor(1.9560024, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.9004011, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 4662\n",
+ "Discriminator Loss: tf.Tensor(0.9988682, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.0346426, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 4663\n",
+ "Discriminator Loss: tf.Tensor(1.2885454, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.122382164, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 4664\n",
+ "Discriminator Loss: tf.Tensor(1.0575013, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.1388154, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 4665\n",
+ "Discriminator Loss: tf.Tensor(1.4371109, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.40585622, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 4666\n",
+ "Discriminator Loss: tf.Tensor(0.76908195, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.8386095, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 4667\n",
+ "Discriminator Loss: tf.Tensor(0.90648854, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.788388, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 4668\n",
+ "Discriminator Loss: tf.Tensor(1.889096, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.266517, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 4669\n",
+ "Discriminator Loss: tf.Tensor(1.5978267, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.5576326, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 4670\n",
+ "Discriminator Loss: tf.Tensor(1.0262932, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.5418465, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 4671\n",
+ "Discriminator Loss: tf.Tensor(0.5358163, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.0368937, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 4672\n",
+ "Discriminator Loss: tf.Tensor(1.1340525, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.06932637, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 4673\n",
+ "Discriminator Loss: tf.Tensor(1.5987561, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.7244297, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 4674\n",
+ "Discriminator Loss: tf.Tensor(1.3136345, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.26346, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 4675\n",
+ "Discriminator Loss: tf.Tensor(0.69815075, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.8979581, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 4676\n",
+ "Discriminator Loss: tf.Tensor(0.4544186, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.0757494, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 4677\n",
+ "Discriminator Loss: tf.Tensor(1.2744871, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.21686308, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 4678\n",
+ "Discriminator Loss: tf.Tensor(1.2182307, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.5652937, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 4679\n",
+ "Discriminator Loss: tf.Tensor(1.4809464, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.43828335, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 4680\n",
+ "Discriminator Loss: tf.Tensor(0.81043327, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.9464635, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 4681\n",
+ "Discriminator Loss: tf.Tensor(0.79621524, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.9003668, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 4682\n",
+ "Discriminator Loss: tf.Tensor(1.0456102, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.7180452, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 4683\n",
+ "Discriminator Loss: tf.Tensor(1.7936078, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.7449429, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 4684\n",
+ "Discriminator Loss: tf.Tensor(1.035368, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.3393246, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 4685\n",
+ "Discriminator Loss: tf.Tensor(0.6105257, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.82911044, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 4686\n",
+ "Discriminator Loss: tf.Tensor(1.4907432, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.1910582, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 4687\n",
+ "Discriminator Loss: tf.Tensor(1.4408957, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.39467013, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 4688\n",
+ "Discriminator Loss: tf.Tensor(0.9364253, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.75820875, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 4689\n",
+ "Discriminator Loss: tf.Tensor(0.76334333, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.3670262, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 4690\n",
+ "Discriminator Loss: tf.Tensor(1.2863426, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.24246116, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 4691\n",
+ "Discriminator Loss: tf.Tensor(1.4018381, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.135122, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 4692\n",
+ "Discriminator Loss: tf.Tensor(1.301445, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.20630294, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 4693\n",
+ "Discriminator Loss: tf.Tensor(1.3896898, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.39108002, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 4694\n",
+ "Discriminator Loss: tf.Tensor(0.7469695, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.97773165, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 4695\n",
+ "Discriminator Loss: tf.Tensor(0.6630013, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.1385094, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 4696\n",
+ "Discriminator Loss: tf.Tensor(1.4941893, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.42318955, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 4697\n",
+ "Discriminator Loss: tf.Tensor(1.2079477, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.97711617, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 4698\n",
+ "Discriminator Loss: tf.Tensor(1.1780968, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.5870453, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 4699\n",
+ "Discriminator Loss: tf.Tensor(1.8363242, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.79893035, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 4700\n",
+ "Discriminator Loss: tf.Tensor(1.0806679, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.2978667, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 4701\n",
+ "Discriminator Loss: tf.Tensor(0.7326365, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.9902064, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 4702\n",
+ "Discriminator Loss: tf.Tensor(0.6683393, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.0399369, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 4703\n",
+ "Discriminator Loss: tf.Tensor(1.0850445, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.087439604, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 4704\n",
+ "Discriminator Loss: tf.Tensor(1.5147848, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.7875859, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 4705\n",
+ "Discriminator Loss: tf.Tensor(1.0959276, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.0629338, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 4706\n",
+ "Discriminator Loss: tf.Tensor(0.704885, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.8098894, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 4707\n",
+ "Discriminator Loss: tf.Tensor(0.95537555, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.2067021, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 4708\n",
+ "Discriminator Loss: tf.Tensor(1.391409, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.33252636, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 4709\n",
+ "Discriminator Loss: tf.Tensor(0.61414564, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.8541692, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 4710\n",
+ "Discriminator Loss: tf.Tensor(1.3210661, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.0812638, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 4711\n",
+ "Discriminator Loss: tf.Tensor(1.3410425, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.29088992, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 4712\n",
+ "Discriminator Loss: tf.Tensor(0.83446634, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.2535967, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 4713\n",
+ "Discriminator Loss: tf.Tensor(1.0389118, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.02164115, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 4714\n",
+ "Discriminator Loss: tf.Tensor(0.7759979, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.2335477, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 4715\n",
+ "Discriminator Loss: tf.Tensor(1.2985561, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.22869718, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 4716\n",
+ "Discriminator Loss: tf.Tensor(0.77615845, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.8478338, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 4717\n",
+ "Discriminator Loss: tf.Tensor(0.7424397, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.3643125, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 4718\n",
+ "Discriminator Loss: tf.Tensor(1.1111063, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.057539005, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 4719\n",
+ "Discriminator Loss: tf.Tensor(1.4697869, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.832478, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 4720\n",
+ "Discriminator Loss: tf.Tensor(0.6457275, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.1117514, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 4721\n",
+ "Discriminator Loss: tf.Tensor(1.4176044, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.3517382, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 4722\n",
+ "Discriminator Loss: tf.Tensor(0.674762, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.93674153, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 4723\n",
+ "Discriminator Loss: tf.Tensor(0.37082368, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.601765, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 4724\n",
+ "Discriminator Loss: tf.Tensor(1.2655718, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.14070934, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 4725\n",
+ "Discriminator Loss: tf.Tensor(1.7043269, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.116042, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 4726\n",
+ "Discriminator Loss: tf.Tensor(1.2252214, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.17514765, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 4727\n",
+ "Discriminator Loss: tf.Tensor(1.0743297, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.67208433, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 4728\n",
+ "Discriminator Loss: tf.Tensor(0.7307507, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.2534719, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 4729\n",
+ "Discriminator Loss: tf.Tensor(1.6770693, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.6260652, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 4730\n",
+ "Discriminator Loss: tf.Tensor(1.1523888, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.6259987, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 4731\n",
+ "Discriminator Loss: tf.Tensor(0.8391444, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.2093717, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 4732\n",
+ "Discriminator Loss: tf.Tensor(1.1662412, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.12432641, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 4733\n",
+ "Discriminator Loss: tf.Tensor(1.2027647, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.58573747, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 4734\n",
+ "Discriminator Loss: tf.Tensor(0.9368863, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.0075742, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 4735\n",
+ "Discriminator Loss: tf.Tensor(0.609243, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.5950687, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 4736\n",
+ "Discriminator Loss: tf.Tensor(2.603132, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.6951008, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 4737\n",
+ "Discriminator Loss: tf.Tensor(1.1976401, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.08991623, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 4738\n",
+ "Discriminator Loss: tf.Tensor(0.84414554, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.37667987, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 4739\n",
+ "Discriminator Loss: tf.Tensor(0.8333094, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.9050601, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 4740\n",
+ "Discriminator Loss: tf.Tensor(1.1177118, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.3475971, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 4741\n",
+ "Discriminator Loss: tf.Tensor(1.6278142, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.5769621, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 4742\n",
+ "Discriminator Loss: tf.Tensor(1.1279459, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.43116698, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 4743\n",
+ "Discriminator Loss: tf.Tensor(0.5847232, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.2877518, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 4744\n",
+ "Discriminator Loss: tf.Tensor(1.8860576, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.84642696, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 4745\n",
+ "Discriminator Loss: tf.Tensor(0.78443944, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.0392069, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 4746\n",
+ "Discriminator Loss: tf.Tensor(1.4081314, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.29341054, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 4747\n",
+ "Discriminator Loss: tf.Tensor(1.0425888, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.252231, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 4748\n",
+ "Discriminator Loss: tf.Tensor(1.5843937, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.5386689, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 4749\n",
+ "Discriminator Loss: tf.Tensor(1.2050871, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.45575324, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 4750\n",
+ "Discriminator Loss: tf.Tensor(0.6067038, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.017353, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 4751\n",
+ "Discriminator Loss: tf.Tensor(0.7908468, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.5440631, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 4752\n",
+ "Discriminator Loss: tf.Tensor(1.5562088, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.63296, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 4753\n",
+ "Discriminator Loss: tf.Tensor(1.3876485, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.34102425, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 4754\n",
+ "Discriminator Loss: tf.Tensor(1.1320566, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.1606793, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 4755\n",
+ "Discriminator Loss: tf.Tensor(0.8095915, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.0898798, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 4756\n",
+ "Discriminator Loss: tf.Tensor(1.7611141, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.7117769, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 4757\n",
+ "Discriminator Loss: tf.Tensor(0.8987959, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.90565664, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 4758\n",
+ "Discriminator Loss: tf.Tensor(0.8260886, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.1856542, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 4759\n",
+ "Discriminator Loss: tf.Tensor(1.4064988, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.3627983, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 4760\n",
+ "Discriminator Loss: tf.Tensor(1.1122941, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.2336231, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 4761\n",
+ "Discriminator Loss: tf.Tensor(1.5742781, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.5301257, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 4762\n",
+ "Discriminator Loss: tf.Tensor(0.7131458, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.7451721, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 4763\n",
+ "Discriminator Loss: tf.Tensor(1.0348763, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.829261, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 4764\n",
+ "Discriminator Loss: tf.Tensor(1.0232745, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.3935041, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 4765\n",
+ "Discriminator Loss: tf.Tensor(2.3465714, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-1.3114796, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 4766\n",
+ "Discriminator Loss: tf.Tensor(1.3652972, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.0102583775, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 4767\n",
+ "Discriminator Loss: tf.Tensor(0.5543912, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.8561918, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 4768\n",
+ "Discriminator Loss: tf.Tensor(0.46053314, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.3115938, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 4769\n",
+ "Discriminator Loss: tf.Tensor(1.4169452, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.36060318, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 4770\n",
+ "Discriminator Loss: tf.Tensor(1.0585399, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.4806213, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 4771\n",
+ "Discriminator Loss: tf.Tensor(1.9135748, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.87692684, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 4772\n",
+ "Discriminator Loss: tf.Tensor(1.0737166, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.27916518, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 4773\n",
+ "Discriminator Loss: tf.Tensor(0.68429685, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.3278822, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 4774\n",
+ "Discriminator Loss: tf.Tensor(1.2231299, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.1892801, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 4775\n",
+ "Discriminator Loss: tf.Tensor(1.1260525, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.2478117, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 4776\n",
+ "Discriminator Loss: tf.Tensor(1.4599485, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.42972067, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 4777\n",
+ "Discriminator Loss: tf.Tensor(1.0253533, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.5075882, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 4778\n",
+ "Discriminator Loss: tf.Tensor(1.0272479, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.9270597, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 4779\n",
+ "Discriminator Loss: tf.Tensor(1.445847, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.4148345, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 4780\n",
+ "Discriminator Loss: tf.Tensor(1.5229933, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.49756363, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 4781\n",
+ "Discriminator Loss: tf.Tensor(1.2624556, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.16978242, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 4782\n",
+ "Discriminator Loss: tf.Tensor(0.9498817, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.75444645, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 4783\n",
+ "Discriminator Loss: tf.Tensor(0.81560546, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.2887658, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 4784\n",
+ "Discriminator Loss: tf.Tensor(1.6539748, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.613944, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 4785\n",
+ "Discriminator Loss: tf.Tensor(0.7811609, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.7923799, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 4786\n",
+ "Discriminator Loss: tf.Tensor(1.0012524, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.1544989, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 4787\n",
+ "Discriminator Loss: tf.Tensor(1.1063114, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.07386017, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 4788\n",
+ "Discriminator Loss: tf.Tensor(0.85257685, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.40445212, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 4789\n",
+ "Discriminator Loss: tf.Tensor(1.3648852, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.1182272, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 4790\n",
+ "Discriminator Loss: tf.Tensor(1.4213706, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.38424453, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 4791\n",
+ "Discriminator Loss: tf.Tensor(0.706058, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.2567042, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 4792\n",
+ "Discriminator Loss: tf.Tensor(1.3663116, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.33463463, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 4793\n",
+ "Discriminator Loss: tf.Tensor(0.7359607, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.1877773, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 4794\n",
+ "Discriminator Loss: tf.Tensor(1.1520301, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.1170316, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 4795\n",
+ "Discriminator Loss: tf.Tensor(0.48441947, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.3442397, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 4796\n",
+ "Discriminator Loss: tf.Tensor(1.2233193, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.17846823, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 4797\n",
+ "Discriminator Loss: tf.Tensor(0.84998584, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.1579138, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 4798\n",
+ "Discriminator Loss: tf.Tensor(1.384699, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.279338, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 4799\n",
+ "Discriminator Loss: tf.Tensor(0.6087182, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.8234303, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 4800\n",
+ "Discriminator Loss: tf.Tensor(1.1704562, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.1186929, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 4801\n",
+ "Discriminator Loss: tf.Tensor(1.1646953, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.11537019, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 4802\n",
+ "Discriminator Loss: tf.Tensor(0.50151706, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.90195656, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 4803\n",
+ "Discriminator Loss: tf.Tensor(1.173785, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.1909819, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 4804\n",
+ "Discriminator Loss: tf.Tensor(1.4080764, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.28489998, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 4805\n",
+ "Discriminator Loss: tf.Tensor(0.51522124, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.9738843, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 4806\n",
+ "Discriminator Loss: tf.Tensor(0.49957103, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.0217531, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 4807\n",
+ "Discriminator Loss: tf.Tensor(0.50313056, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.8714243, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 4808\n",
+ "Discriminator Loss: tf.Tensor(1.0436966, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.12215018, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 4809\n",
+ "Discriminator Loss: tf.Tensor(1.3212041, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.70488, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 4810\n",
+ "Discriminator Loss: tf.Tensor(0.5467864, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.49572825, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 4811\n",
+ "Discriminator Loss: tf.Tensor(0.23533255, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.6271172, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 4812\n",
+ "Discriminator Loss: tf.Tensor(0.96875036, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.31412795, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 4813\n",
+ "Discriminator Loss: tf.Tensor(3.5000644, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.4921944, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 4814\n",
+ "Discriminator Loss: tf.Tensor(1.0630882, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.21135134, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 4815\n",
+ "Discriminator Loss: tf.Tensor(0.7240944, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.712495, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 4816\n",
+ "Discriminator Loss: tf.Tensor(0.646468, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.5257359, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 4817\n",
+ "Discriminator Loss: tf.Tensor(1.387428, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.3049587, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 4818\n",
+ "Discriminator Loss: tf.Tensor(1.078689, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.4425083, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 4819\n",
+ "Discriminator Loss: tf.Tensor(0.92810595, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.6223607, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 4820\n",
+ "Discriminator Loss: tf.Tensor(1.7862163, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.2027924, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 4821\n",
+ "Discriminator Loss: tf.Tensor(1.6775124, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.60728246, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 4822\n",
+ "Discriminator Loss: tf.Tensor(1.1995705, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.3722838, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 4823\n",
+ "Discriminator Loss: tf.Tensor(0.92169535, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.6099928, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 4824\n",
+ "Discriminator Loss: tf.Tensor(0.8972875, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.0789299, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 4825\n",
+ "Discriminator Loss: tf.Tensor(1.8186877, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.7765052, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 4826\n",
+ "Discriminator Loss: tf.Tensor(1.1689801, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.45863533, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 4827\n",
+ "Discriminator Loss: tf.Tensor(0.7957107, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.80180675, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 4828\n",
+ "Discriminator Loss: tf.Tensor(1.2598449, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.4604235, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 4829\n",
+ "Discriminator Loss: tf.Tensor(1.5324043, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.5074857, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 4830\n",
+ "Discriminator Loss: tf.Tensor(1.1424482, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.26195052, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 4831\n",
+ "Discriminator Loss: tf.Tensor(0.8207021, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.1793481, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 4832\n",
+ "Discriminator Loss: tf.Tensor(1.8077787, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.7765172, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 4833\n",
+ "Discriminator Loss: tf.Tensor(0.8533147, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.89701056, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 4834\n",
+ "Discriminator Loss: tf.Tensor(0.7197846, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.97131157, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 4835\n",
+ "Discriminator Loss: tf.Tensor(0.84946924, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.3585061, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 4836\n",
+ "Discriminator Loss: tf.Tensor(1.5682716, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.53138155, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 4837\n",
+ "Discriminator Loss: tf.Tensor(0.84610283, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.68336457, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 4838\n",
+ "Discriminator Loss: tf.Tensor(1.2036706, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.5397428, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 4839\n",
+ "Discriminator Loss: tf.Tensor(1.5448122, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.51146656, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 4840\n",
+ "Discriminator Loss: tf.Tensor(1.1154666, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.68111724, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 4841\n",
+ "Discriminator Loss: tf.Tensor(0.96824336, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.0583104, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 4842\n",
+ "Discriminator Loss: tf.Tensor(1.5260346, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.483703, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 4843\n",
+ "Discriminator Loss: tf.Tensor(1.2072426, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.2583925, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 4844\n",
+ "Discriminator Loss: tf.Tensor(1.4616737, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.4222916, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 4845\n",
+ "Discriminator Loss: tf.Tensor(0.9652987, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.63905734, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 4846\n",
+ "Discriminator Loss: tf.Tensor(0.8791633, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.2724329, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 4847\n",
+ "Discriminator Loss: tf.Tensor(1.2501751, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.19802748, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 4848\n",
+ "Discriminator Loss: tf.Tensor(0.67190397, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.89514476, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 4849\n",
+ "Discriminator Loss: tf.Tensor(0.71538186, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.4654368, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 4850\n",
+ "Discriminator Loss: tf.Tensor(1.0848749, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.0011481246, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 4851\n",
+ "Discriminator Loss: tf.Tensor(1.3633769, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.4828638, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 4852\n",
+ "Discriminator Loss: tf.Tensor(1.3756609, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.3414947, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 4853\n",
+ "Discriminator Loss: tf.Tensor(1.0326289, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.8027671, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 4854\n",
+ "Discriminator Loss: tf.Tensor(1.1207829, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.67874575, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 4855\n",
+ "Discriminator Loss: tf.Tensor(1.401367, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.1968542, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 4856\n",
+ "Discriminator Loss: tf.Tensor(1.7735168, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.7515567, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 4857\n",
+ "Discriminator Loss: tf.Tensor(1.0054928, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.2416348, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 4858\n",
+ "Discriminator Loss: tf.Tensor(0.9892329, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.8506245, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 4859\n",
+ "Discriminator Loss: tf.Tensor(1.1249936, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.4702177, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 4860\n",
+ "Discriminator Loss: tf.Tensor(2.0657449, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-1.0305736, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 4861\n",
+ "Discriminator Loss: tf.Tensor(0.8675502, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.71470785, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 4862\n",
+ "Discriminator Loss: tf.Tensor(0.72316533, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.0753638, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 4863\n",
+ "Discriminator Loss: tf.Tensor(1.0398538, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.0033144678, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 4864\n",
+ "Discriminator Loss: tf.Tensor(0.84154624, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.3961471, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 4865\n",
+ "Discriminator Loss: tf.Tensor(0.70869946, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.39831018, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 4866\n",
+ "Discriminator Loss: tf.Tensor(1.0356377, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.4368681, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 4867\n",
+ "Discriminator Loss: tf.Tensor(0.8309866, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.19980073, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 4868\n",
+ "Discriminator Loss: tf.Tensor(0.78276426, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.9994998, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 4869\n",
+ "Discriminator Loss: tf.Tensor(0.26815224, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.0857878, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 4870\n",
+ "Discriminator Loss: tf.Tensor(0.9236586, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.14671421, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 4871\n",
+ "Discriminator Loss: tf.Tensor(2.2472243, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(3.0488102, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 4872\n",
+ "Discriminator Loss: tf.Tensor(1.0438863, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.053442854, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 4873\n",
+ "Discriminator Loss: tf.Tensor(0.668311, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.0841227, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 4874\n",
+ "Discriminator Loss: tf.Tensor(1.0187438, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.028955704, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 4875\n",
+ "Discriminator Loss: tf.Tensor(0.8969794, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.7188333, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 4876\n",
+ "Discriminator Loss: tf.Tensor(0.84907126, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.24803112, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 4877\n",
+ "Discriminator Loss: tf.Tensor(0.47894716, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.6246411, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 4878\n",
+ "Discriminator Loss: tf.Tensor(0.9718187, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.080022305, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 4879\n",
+ "Discriminator Loss: tf.Tensor(0.8650014, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.5946268, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 4880\n",
+ "Discriminator Loss: tf.Tensor(1.298802, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.25119647, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 4881\n",
+ "Discriminator Loss: tf.Tensor(0.82148004, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.2159501, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 4882\n",
+ "Discriminator Loss: tf.Tensor(1.6153955, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.47926342, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 4883\n",
+ "Discriminator Loss: tf.Tensor(0.78696954, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.8657157, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 4884\n",
+ "Discriminator Loss: tf.Tensor(0.9215574, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.7256168, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 4885\n",
+ "Discriminator Loss: tf.Tensor(1.0909748, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.022378514, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 4886\n",
+ "Discriminator Loss: tf.Tensor(0.7029809, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.0277766, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 4887\n",
+ "Discriminator Loss: tf.Tensor(0.98680043, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.19890809, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 4888\n",
+ "Discriminator Loss: tf.Tensor(1.2811074, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.324757, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 4889\n",
+ "Discriminator Loss: tf.Tensor(1.2759501, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.24531095, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 4890\n",
+ "Discriminator Loss: tf.Tensor(0.993977, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.679632, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 4891\n",
+ "Discriminator Loss: tf.Tensor(0.64071256, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.0560839, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 4892\n",
+ "Discriminator Loss: tf.Tensor(1.3188467, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.20752318, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 4893\n",
+ "Discriminator Loss: tf.Tensor(1.121967, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.3820571, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 4894\n",
+ "Discriminator Loss: tf.Tensor(1.1515927, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.124823414, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 4895\n",
+ "Discriminator Loss: tf.Tensor(0.65775293, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.9203351, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 4896\n",
+ "Discriminator Loss: tf.Tensor(0.8746855, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.3389701, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 4897\n",
+ "Discriminator Loss: tf.Tensor(1.2749099, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.23977514, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 4898\n",
+ "Discriminator Loss: tf.Tensor(1.0867779, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.8100424, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 4899\n",
+ "Discriminator Loss: tf.Tensor(1.1847368, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.6888605, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 4900\n",
+ "Discriminator Loss: tf.Tensor(1.2773484, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.24343604, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 4901\n",
+ "Discriminator Loss: tf.Tensor(0.9627458, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.63685507, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 4902\n",
+ "Discriminator Loss: tf.Tensor(0.9438709, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.3039913, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 4903\n",
+ "Discriminator Loss: tf.Tensor(1.7557131, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.71140504, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 4904\n",
+ "Discriminator Loss: tf.Tensor(1.027433, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.64427274, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 4905\n",
+ "Discriminator Loss: tf.Tensor(0.51115227, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.2276281, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 4906\n",
+ "Discriminator Loss: tf.Tensor(1.1482729, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.10877478, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 4907\n",
+ "Discriminator Loss: tf.Tensor(1.0594902, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.4133056, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 4908\n",
+ "Discriminator Loss: tf.Tensor(1.2240735, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.14252175, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 4909\n",
+ "Discriminator Loss: tf.Tensor(0.770842, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.8883708, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 4910\n",
+ "Discriminator Loss: tf.Tensor(0.6946908, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.205566, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 4911\n",
+ "Discriminator Loss: tf.Tensor(2.107497, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-1.0534137, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 4912\n",
+ "Discriminator Loss: tf.Tensor(1.0696095, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.67845297, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 4913\n",
+ "Discriminator Loss: tf.Tensor(0.73028857, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.8131018, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 4914\n",
+ "Discriminator Loss: tf.Tensor(1.6244164, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.5865166, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 4915\n",
+ "Discriminator Loss: tf.Tensor(0.7219825, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.0477518, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 4916\n",
+ "Discriminator Loss: tf.Tensor(1.523471, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.46246138, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 4917\n",
+ "Discriminator Loss: tf.Tensor(0.79885405, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.9980542, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 4918\n",
+ "Discriminator Loss: tf.Tensor(0.9542746, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.20826167, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 4919\n",
+ "Discriminator Loss: tf.Tensor(1.6076221, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.008327, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 4920\n",
+ "Discriminator Loss: tf.Tensor(1.5530057, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.46232164, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 4921\n",
+ "Discriminator Loss: tf.Tensor(0.85977846, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.54899734, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 4922\n",
+ "Discriminator Loss: tf.Tensor(0.84027827, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.1875738, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 4923\n",
+ "Discriminator Loss: tf.Tensor(1.4323087, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.39698243, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 4924\n",
+ "Discriminator Loss: tf.Tensor(0.8059477, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.7291762, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 4925\n",
+ "Discriminator Loss: tf.Tensor(0.9339247, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.7889872, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 4926\n",
+ "Discriminator Loss: tf.Tensor(1.2906401, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.25885078, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 4927\n",
+ "Discriminator Loss: tf.Tensor(0.8801898, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.3865281, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 4928\n",
+ "Discriminator Loss: tf.Tensor(1.3287386, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.24224262, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 4929\n",
+ "Discriminator Loss: tf.Tensor(0.8080442, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.2159506, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 4930\n",
+ "Discriminator Loss: tf.Tensor(1.3912586, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.34627798, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 4931\n",
+ "Discriminator Loss: tf.Tensor(0.98610044, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.8222663, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 4932\n",
+ "Discriminator Loss: tf.Tensor(1.0337974, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.0404078, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 4933\n",
+ "Discriminator Loss: tf.Tensor(1.0481861, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.011219248, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 4934\n",
+ "Discriminator Loss: tf.Tensor(1.0586085, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.5578483, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 4935\n",
+ "Discriminator Loss: tf.Tensor(1.1689603, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.14588921, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 4936\n",
+ "Discriminator Loss: tf.Tensor(0.6182009, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.0069681, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 4937\n",
+ "Discriminator Loss: tf.Tensor(1.0707039, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.015166924, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 4938\n",
+ "Discriminator Loss: tf.Tensor(1.4015927, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.95121, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 4939\n",
+ "Discriminator Loss: tf.Tensor(1.3041867, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.23606281, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 4940\n",
+ "Discriminator Loss: tf.Tensor(0.38700366, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.9662051, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 4941\n",
+ "Discriminator Loss: tf.Tensor(0.96332425, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.4276133, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 4942\n",
+ "Discriminator Loss: tf.Tensor(1.9744195, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.7889786, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 4943\n",
+ "Discriminator Loss: tf.Tensor(1.0680703, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.06993105, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 4944\n",
+ "Discriminator Loss: tf.Tensor(0.61789775, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.0754422, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 4945\n",
+ "Discriminator Loss: tf.Tensor(1.2356364, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.1977619, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 4946\n",
+ "Discriminator Loss: tf.Tensor(1.3267944, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.434065, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 4947\n",
+ "Discriminator Loss: tf.Tensor(1.3785721, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.31478533, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 4948\n",
+ "Discriminator Loss: tf.Tensor(0.68924284, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.1685976, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 4949\n",
+ "Discriminator Loss: tf.Tensor(1.5843112, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.48519492, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 4950\n",
+ "Discriminator Loss: tf.Tensor(0.8918744, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.6097266, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 4951\n",
+ "Discriminator Loss: tf.Tensor(0.83243084, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.5013123, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 4952\n",
+ "Discriminator Loss: tf.Tensor(1.5176226, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.48483226, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 4953\n",
+ "Discriminator Loss: tf.Tensor(0.5472127, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.0228109, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 4954\n",
+ "Discriminator Loss: tf.Tensor(0.94439244, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.13592954, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 4955\n",
+ "Discriminator Loss: tf.Tensor(1.3387177, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.9247636, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 4956\n",
+ "Discriminator Loss: tf.Tensor(1.7394652, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.6715409, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 4957\n",
+ "Discriminator Loss: tf.Tensor(0.99971306, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.7963498, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 4958\n",
+ "Discriminator Loss: tf.Tensor(0.6958913, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.0785499, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 4959\n",
+ "Discriminator Loss: tf.Tensor(0.91856223, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.11161124, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 4960\n",
+ "Discriminator Loss: tf.Tensor(0.9774904, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.9518979, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 4961\n",
+ "Discriminator Loss: tf.Tensor(0.83400255, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.4021727, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 4962\n",
+ "Discriminator Loss: tf.Tensor(1.8011432, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.7663062, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 4963\n",
+ "Discriminator Loss: tf.Tensor(0.9159455, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.57774997, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 4964\n",
+ "Discriminator Loss: tf.Tensor(0.8985479, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.1756469, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 4965\n",
+ "Discriminator Loss: tf.Tensor(1.3005064, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.26017037, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 4966\n",
+ "Discriminator Loss: tf.Tensor(0.9176791, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.6266236, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 4967\n",
+ "Discriminator Loss: tf.Tensor(1.2041832, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.081194, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 4968\n",
+ "Discriminator Loss: tf.Tensor(1.4925289, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.4513749, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 4969\n",
+ "Discriminator Loss: tf.Tensor(0.7059572, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.8842823, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 4970\n",
+ "Discriminator Loss: tf.Tensor(0.85324836, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.9789644, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 4971\n",
+ "Discriminator Loss: tf.Tensor(1.1298482, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.6972572, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 4972\n",
+ "Discriminator Loss: tf.Tensor(1.4540342, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.4240285, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 4973\n",
+ "Discriminator Loss: tf.Tensor(0.5155952, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.0049423, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 4974\n",
+ "Discriminator Loss: tf.Tensor(0.91864926, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.31230235, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 4975\n",
+ "Discriminator Loss: tf.Tensor(1.4279348, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.478041, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 4976\n",
+ "Discriminator Loss: tf.Tensor(1.2853742, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.23645373, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 4977\n",
+ "Discriminator Loss: tf.Tensor(0.71150315, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.392116, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 4978\n",
+ "Discriminator Loss: tf.Tensor(1.2749027, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.22511213, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 4979\n",
+ "Discriminator Loss: tf.Tensor(0.68911177, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.0144125, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 4980\n",
+ "Discriminator Loss: tf.Tensor(0.9710774, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.058142003, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 4981\n",
+ "Discriminator Loss: tf.Tensor(1.1771405, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.616486, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 4982\n",
+ "Discriminator Loss: tf.Tensor(1.1027097, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.0022550346, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 4983\n",
+ "Discriminator Loss: tf.Tensor(0.64077747, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.0866275, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 4984\n",
+ "Discriminator Loss: tf.Tensor(1.1094252, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.029150857, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 4985\n",
+ "Discriminator Loss: tf.Tensor(0.39380318, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.0273402, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 4986\n",
+ "Discriminator Loss: tf.Tensor(0.7964843, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.4519452, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 4987\n",
+ "Discriminator Loss: tf.Tensor(1.736876, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.70337415, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 4988\n",
+ "Discriminator Loss: tf.Tensor(0.77308404, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.2000405, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 4989\n",
+ "Discriminator Loss: tf.Tensor(1.4424706, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.41221455, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 4990\n",
+ "Discriminator Loss: tf.Tensor(1.0606706, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.1610842, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 4991\n",
+ "Discriminator Loss: tf.Tensor(1.4099042, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.3319791, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 4992\n",
+ "Discriminator Loss: tf.Tensor(0.9594003, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.48655033, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 4993\n",
+ "Discriminator Loss: tf.Tensor(0.60713637, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.1128377, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 4994\n",
+ "Discriminator Loss: tf.Tensor(0.96166, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.13049017, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 4995\n",
+ "Discriminator Loss: tf.Tensor(1.4051688, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.0046773, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 4996\n",
+ "Discriminator Loss: tf.Tensor(0.9336112, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.21607842, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 4997\n",
+ "Discriminator Loss: tf.Tensor(0.95002794, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.477869, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 4998\n",
+ "Discriminator Loss: tf.Tensor(1.2186973, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.098114915, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 4999\n",
+ "Discriminator Loss: tf.Tensor(1.0188383, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.2592028, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 5000\n",
+ "Discriminator Loss: tf.Tensor(1.4610654, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.4379808, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 5001\n",
+ "Discriminator Loss: tf.Tensor(1.0161849, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.80083066, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 5002\n",
+ "Discriminator Loss: tf.Tensor(0.70834583, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.98475355, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 5003\n",
+ "Discriminator Loss: tf.Tensor(0.13644028, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.97702867, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 5004\n",
+ "Discriminator Loss: tf.Tensor(3.6791859, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.904411, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 5005\n",
+ "Discriminator Loss: tf.Tensor(1.5601909, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.42737687, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 5006\n",
+ "Discriminator Loss: tf.Tensor(0.91215354, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.4210063, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 5007\n",
+ "Discriminator Loss: tf.Tensor(0.22034378, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.5780736, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 5008\n",
+ "Discriminator Loss: tf.Tensor(0.6711449, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.8093011, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 5009\n",
+ "Discriminator Loss: tf.Tensor(4.401826, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.7058346, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 5010\n",
+ "Discriminator Loss: tf.Tensor(1.3514736, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.12842949, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 5011\n",
+ "Discriminator Loss: tf.Tensor(1.1486119, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.41816416, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 5012\n",
+ "Discriminator Loss: tf.Tensor(0.83318615, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.77430326, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 5013\n",
+ "Discriminator Loss: tf.Tensor(1.031585, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.2713422, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 5014\n",
+ "Discriminator Loss: tf.Tensor(1.2954934, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.21217342, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 5015\n",
+ "Discriminator Loss: tf.Tensor(1.0262985, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.5492043, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 5016\n",
+ "Discriminator Loss: tf.Tensor(1.1393074, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.69538146, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 5017\n",
+ "Discriminator Loss: tf.Tensor(1.285964, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.2855178, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 5018\n",
+ "Discriminator Loss: tf.Tensor(1.7222929, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.63965195, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 5019\n",
+ "Discriminator Loss: tf.Tensor(1.3260524, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.15953358, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 5020\n",
+ "Discriminator Loss: tf.Tensor(1.241416, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.3381162, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 5021\n",
+ "Discriminator Loss: tf.Tensor(1.0155772, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.84941864, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 5022\n",
+ "Discriminator Loss: tf.Tensor(1.1168051, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.98646975, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 5023\n",
+ "Discriminator Loss: tf.Tensor(1.4588412, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.28503165, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 5024\n",
+ "Discriminator Loss: tf.Tensor(1.0795001, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.9105026, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 5025\n",
+ "Discriminator Loss: tf.Tensor(0.7472017, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.1376638, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 5026\n",
+ "Discriminator Loss: tf.Tensor(1.4790888, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.41224083, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 5027\n",
+ "Discriminator Loss: tf.Tensor(1.1537747, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.56557417, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 5028\n",
+ "Discriminator Loss: tf.Tensor(1.0324469, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.0109571, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 5029\n",
+ "Discriminator Loss: tf.Tensor(0.9108057, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.53381604, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 5030\n",
+ "Discriminator Loss: tf.Tensor(1.7626987, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.8336171, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 5031\n",
+ "Discriminator Loss: tf.Tensor(1.5100833, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.4373738, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 5032\n",
+ "Discriminator Loss: tf.Tensor(1.1172, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.26658523, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 5033\n",
+ "Discriminator Loss: tf.Tensor(0.622268, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.87451345, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 5034\n",
+ "Discriminator Loss: tf.Tensor(0.8476964, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.328586, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 5035\n",
+ "Discriminator Loss: tf.Tensor(1.7978957, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.7362725, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 5036\n",
+ "Discriminator Loss: tf.Tensor(1.0501348, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.0033741, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 5037\n",
+ "Discriminator Loss: tf.Tensor(0.80496085, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.46310332, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 5038\n",
+ "Discriminator Loss: tf.Tensor(1.2003105, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.3249447, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 5039\n",
+ "Discriminator Loss: tf.Tensor(1.3882533, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.35481265, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 5040\n",
+ "Discriminator Loss: tf.Tensor(0.55830157, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.78267866, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 5041\n",
+ "Discriminator Loss: tf.Tensor(1.0221082, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.2644267, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 5042\n",
+ "Discriminator Loss: tf.Tensor(1.7286344, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.6888959, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 5043\n",
+ "Discriminator Loss: tf.Tensor(0.86692125, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.6576088, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 5044\n",
+ "Discriminator Loss: tf.Tensor(0.2618145, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.4830608, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 5045\n",
+ "Discriminator Loss: tf.Tensor(0.80906504, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.2692118, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 5046\n",
+ "Discriminator Loss: tf.Tensor(3.355538, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.8121437, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 5047\n",
+ "Discriminator Loss: tf.Tensor(0.90501153, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.27536395, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 5048\n",
+ "Discriminator Loss: tf.Tensor(0.91749835, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.83858997, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 5049\n",
+ "Discriminator Loss: tf.Tensor(0.9980646, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.1059414, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 5050\n",
+ "Discriminator Loss: tf.Tensor(1.5379853, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.40844345, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 5051\n",
+ "Discriminator Loss: tf.Tensor(0.91803825, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.62579983, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 5052\n",
+ "Discriminator Loss: tf.Tensor(0.7784151, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.149795, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 5053\n",
+ "Discriminator Loss: tf.Tensor(1.3340019, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.302839, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 5054\n",
+ "Discriminator Loss: tf.Tensor(0.9234642, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.64977103, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 5055\n",
+ "Discriminator Loss: tf.Tensor(0.8258546, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.75854015, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 5056\n",
+ "Discriminator Loss: tf.Tensor(1.4958177, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.5227795, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 5057\n",
+ "Discriminator Loss: tf.Tensor(1.4732404, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.44068798, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 5058\n",
+ "Discriminator Loss: tf.Tensor(0.8898401, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.25457427, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 5059\n",
+ "Discriminator Loss: tf.Tensor(0.8799244, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.1661139, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 5060\n",
+ "Discriminator Loss: tf.Tensor(1.587627, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.53986496, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 5061\n",
+ "Discriminator Loss: tf.Tensor(0.96352696, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.61408395, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 5062\n",
+ "Discriminator Loss: tf.Tensor(0.68192565, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.9559929, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 5063\n",
+ "Discriminator Loss: tf.Tensor(0.7937871, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.6685971, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 5064\n",
+ "Discriminator Loss: tf.Tensor(1.8044761, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.7333146, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 5065\n",
+ "Discriminator Loss: tf.Tensor(0.67893034, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.97928494, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 5066\n",
+ "Discriminator Loss: tf.Tensor(0.6648668, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.9256878, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 5067\n",
+ "Discriminator Loss: tf.Tensor(1.2060039, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.554538, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 5068\n",
+ "Discriminator Loss: tf.Tensor(1.7191831, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.689095, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 5069\n",
+ "Discriminator Loss: tf.Tensor(0.78567684, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.71644753, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 5070\n",
+ "Discriminator Loss: tf.Tensor(1.0267291, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.7135717, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 5071\n",
+ "Discriminator Loss: tf.Tensor(1.6436636, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.5105331, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 5072\n",
+ "Discriminator Loss: tf.Tensor(1.3325405, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.532918, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 5073\n",
+ "Discriminator Loss: tf.Tensor(0.96483827, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.3205056, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 5074\n",
+ "Discriminator Loss: tf.Tensor(1.7951908, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.70460224, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 5075\n",
+ "Discriminator Loss: tf.Tensor(0.8103403, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.61583954, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 5076\n",
+ "Discriminator Loss: tf.Tensor(0.63996696, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.602652, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 5077\n",
+ "Discriminator Loss: tf.Tensor(1.3646826, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.32853493, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 5078\n",
+ "Discriminator Loss: tf.Tensor(0.76354074, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.2309136, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 5079\n",
+ "Discriminator Loss: tf.Tensor(1.2800388, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.24075246, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 5080\n",
+ "Discriminator Loss: tf.Tensor(0.62152636, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.0101146, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 5081\n",
+ "Discriminator Loss: tf.Tensor(0.69347864, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.43770337, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 5082\n",
+ "Discriminator Loss: tf.Tensor(2.0323787, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.8508863, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 5083\n",
+ "Discriminator Loss: tf.Tensor(1.1575578, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.03300822, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 5084\n",
+ "Discriminator Loss: tf.Tensor(0.49082965, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.0736943, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 5085\n",
+ "Discriminator Loss: tf.Tensor(1.2917348, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.226384, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 5086\n",
+ "Discriminator Loss: tf.Tensor(0.6837336, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.209631, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 5087\n",
+ "Discriminator Loss: tf.Tensor(1.685606, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.57166815, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 5088\n",
+ "Discriminator Loss: tf.Tensor(0.7237857, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.0516614, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 5089\n",
+ "Discriminator Loss: tf.Tensor(1.1299224, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.1017296, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 5090\n",
+ "Discriminator Loss: tf.Tensor(0.77826947, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.3147782, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 5091\n",
+ "Discriminator Loss: tf.Tensor(1.8020769, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.5922388, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 5092\n",
+ "Discriminator Loss: tf.Tensor(0.6328706, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.910496, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 5093\n",
+ "Discriminator Loss: tf.Tensor(0.5842956, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.6875335, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 5094\n",
+ "Discriminator Loss: tf.Tensor(1.2064866, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.15913963, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 5095\n",
+ "Discriminator Loss: tf.Tensor(1.052088, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.2848531, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 5096\n",
+ "Discriminator Loss: tf.Tensor(1.2619418, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.2402368, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 5097\n",
+ "Discriminator Loss: tf.Tensor(0.50334126, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.264362, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 5098\n",
+ "Discriminator Loss: tf.Tensor(1.3088281, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.25334176, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 5099\n",
+ "Discriminator Loss: tf.Tensor(0.8188419, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.3088212, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 5100\n",
+ "Discriminator Loss: tf.Tensor(1.3685614, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.31129047, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 5101\n",
+ "Discriminator Loss: tf.Tensor(0.50607693, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.87782115, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 5102\n",
+ "Discriminator Loss: tf.Tensor(1.1979548, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.9360813, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 5103\n",
+ "Discriminator Loss: tf.Tensor(1.136448, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.04324403, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 5104\n",
+ "Discriminator Loss: tf.Tensor(0.77969325, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.0510163, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 5105\n",
+ "Discriminator Loss: tf.Tensor(1.5751781, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.4083046, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 5106\n",
+ "Discriminator Loss: tf.Tensor(0.56697863, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.0037094, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 5107\n",
+ "Discriminator Loss: tf.Tensor(0.53674746, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.7214227, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 5108\n",
+ "Discriminator Loss: tf.Tensor(2.9763482, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(3.1561491, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 5109\n",
+ "Discriminator Loss: tf.Tensor(1.0346953, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.07824409, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 5110\n",
+ "Discriminator Loss: tf.Tensor(0.8969807, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.54212886, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 5111\n",
+ "Discriminator Loss: tf.Tensor(0.6179954, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.3543812, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 5112\n",
+ "Discriminator Loss: tf.Tensor(1.396096, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.35221526, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 5113\n",
+ "Discriminator Loss: tf.Tensor(0.8917382, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.2807727, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 5114\n",
+ "Discriminator Loss: tf.Tensor(1.3161587, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.24992496, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 5115\n",
+ "Discriminator Loss: tf.Tensor(0.9131143, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.9692953, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 5116\n",
+ "Discriminator Loss: tf.Tensor(1.0033557, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.70542294, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 5117\n",
+ "Discriminator Loss: tf.Tensor(1.1834712, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.8944021, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 5118\n",
+ "Discriminator Loss: tf.Tensor(1.0919075, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.039504193, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 5119\n",
+ "Discriminator Loss: tf.Tensor(1.1212955, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.75900334, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 5120\n",
+ "Discriminator Loss: tf.Tensor(1.2354501, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.5125557, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 5121\n",
+ "Discriminator Loss: tf.Tensor(2.011754, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.9880374, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 5122\n",
+ "Discriminator Loss: tf.Tensor(1.3245916, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.32714042, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 5123\n",
+ "Discriminator Loss: tf.Tensor(0.9771096, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.7428581, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 5124\n",
+ "Discriminator Loss: tf.Tensor(1.0644343, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.3018738, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 5125\n",
+ "Discriminator Loss: tf.Tensor(1.371398, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.33545777, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 5126\n",
+ "Discriminator Loss: tf.Tensor(0.6343114, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.9040234, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 5127\n",
+ "Discriminator Loss: tf.Tensor(0.65018314, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.9291149, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 5128\n",
+ "Discriminator Loss: tf.Tensor(1.3368433, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.2753763, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 5129\n",
+ "Discriminator Loss: tf.Tensor(0.8799502, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.6599698, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 5130\n",
+ "Discriminator Loss: tf.Tensor(1.1933079, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.074084565, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 5131\n",
+ "Discriminator Loss: tf.Tensor(0.35821247, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.393058, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 5132\n",
+ "Discriminator Loss: tf.Tensor(1.4385246, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.33728996, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 5133\n",
+ "Discriminator Loss: tf.Tensor(1.2067233, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.91567975, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 5134\n",
+ "Discriminator Loss: tf.Tensor(0.65277433, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.1104939, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 5135\n",
+ "Discriminator Loss: tf.Tensor(1.7896717, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.7591588, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 5136\n",
+ "Discriminator Loss: tf.Tensor(0.7398635, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.78229445, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 5137\n",
+ "Discriminator Loss: tf.Tensor(0.3963123, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.3489014, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 5138\n",
+ "Discriminator Loss: tf.Tensor(1.1781201, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.12165614, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 5139\n",
+ "Discriminator Loss: tf.Tensor(1.7019091, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.010357, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 5140\n",
+ "Discriminator Loss: tf.Tensor(0.9954865, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.038424004, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 5141\n",
+ "Discriminator Loss: tf.Tensor(0.7531266, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.8023553, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 5142\n",
+ "Discriminator Loss: tf.Tensor(0.8745713, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.5252366, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 5143\n",
+ "Discriminator Loss: tf.Tensor(1.405912, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.35773587, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 5144\n",
+ "Discriminator Loss: tf.Tensor(0.5118555, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.8515971, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 5145\n",
+ "Discriminator Loss: tf.Tensor(1.2733805, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.083399, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 5146\n",
+ "Discriminator Loss: tf.Tensor(0.8684116, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.16625857, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 5147\n",
+ "Discriminator Loss: tf.Tensor(0.7754935, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.87078, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 5148\n",
+ "Discriminator Loss: tf.Tensor(0.73636293, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.216085, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 5149\n",
+ "Discriminator Loss: tf.Tensor(1.0461999, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.0005167735, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 5150\n",
+ "Discriminator Loss: tf.Tensor(1.0470461, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.8642117, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 5151\n",
+ "Discriminator Loss: tf.Tensor(0.7551141, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.26823243, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 5152\n",
+ "Discriminator Loss: tf.Tensor(1.1315745, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.6188024, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 5153\n",
+ "Discriminator Loss: tf.Tensor(0.9708555, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.045887638, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 5154\n",
+ "Discriminator Loss: tf.Tensor(0.5355536, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.2823175, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 5155\n",
+ "Discriminator Loss: tf.Tensor(0.67019457, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.38039568, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 5156\n",
+ "Discriminator Loss: tf.Tensor(1.6544793, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.6454417, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 5157\n",
+ "Discriminator Loss: tf.Tensor(0.8976879, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.15435146, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 5158\n",
+ "Discriminator Loss: tf.Tensor(0.79253054, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.7934001, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 5159\n",
+ "Discriminator Loss: tf.Tensor(1.0297741, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.8482374, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 5160\n",
+ "Discriminator Loss: tf.Tensor(1.5409045, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.495773, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 5161\n",
+ "Discriminator Loss: tf.Tensor(0.7967753, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.7920566, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 5162\n",
+ "Discriminator Loss: tf.Tensor(0.6665583, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.847466, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 5163\n",
+ "Discriminator Loss: tf.Tensor(1.0376662, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.6244103, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 5164\n",
+ "Discriminator Loss: tf.Tensor(2.0549567, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-1.0199754, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 5165\n",
+ "Discriminator Loss: tf.Tensor(0.53510094, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.94432765, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 5166\n",
+ "Discriminator Loss: tf.Tensor(0.55573, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.9438205, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 5167\n",
+ "Discriminator Loss: tf.Tensor(1.9996171, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.2560606, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 5168\n",
+ "Discriminator Loss: tf.Tensor(1.9055603, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.872261, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 5169\n",
+ "Discriminator Loss: tf.Tensor(1.1309521, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.43399414, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 5170\n",
+ "Discriminator Loss: tf.Tensor(0.8658425, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.303027, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 5171\n",
+ "Discriminator Loss: tf.Tensor(1.527215, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.49201158, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 5172\n",
+ "Discriminator Loss: tf.Tensor(0.9671863, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.6473983, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 5173\n",
+ "Discriminator Loss: tf.Tensor(0.53271675, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.306621, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 5174\n",
+ "Discriminator Loss: tf.Tensor(1.7745466, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.724924, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 5175\n",
+ "Discriminator Loss: tf.Tensor(1.0550807, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.48515034, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 5176\n",
+ "Discriminator Loss: tf.Tensor(1.0514135, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.6081504, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 5177\n",
+ "Discriminator Loss: tf.Tensor(1.7108473, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.6770155, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 5178\n",
+ "Discriminator Loss: tf.Tensor(0.6293927, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.9277722, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 5179\n",
+ "Discriminator Loss: tf.Tensor(0.7931324, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.9167743, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 5180\n",
+ "Discriminator Loss: tf.Tensor(1.2048801, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.16536315, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 5181\n",
+ "Discriminator Loss: tf.Tensor(0.9501438, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.6859931, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 5182\n",
+ "Discriminator Loss: tf.Tensor(1.4496598, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.41531792, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 5183\n",
+ "Discriminator Loss: tf.Tensor(0.8273909, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.1250545, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 5184\n",
+ "Discriminator Loss: tf.Tensor(1.6035858, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.56295675, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 5185\n",
+ "Discriminator Loss: tf.Tensor(0.7496077, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.7073768, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 5186\n",
+ "Discriminator Loss: tf.Tensor(1.0185976, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.727655, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 5187\n",
+ "Discriminator Loss: tf.Tensor(1.062701, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.018489594, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 5188\n",
+ "Discriminator Loss: tf.Tensor(0.571846, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.0828058, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 5189\n",
+ "Discriminator Loss: tf.Tensor(0.7336632, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.30685195, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 5190\n",
+ "Discriminator Loss: tf.Tensor(1.1269904, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.4334539, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 5191\n",
+ "Discriminator Loss: tf.Tensor(0.8587747, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.1793819, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 5192\n",
+ "Discriminator Loss: tf.Tensor(0.43966123, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.0715164, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 5193\n",
+ "Discriminator Loss: tf.Tensor(0.70492244, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.37211868, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 5194\n",
+ "Discriminator Loss: tf.Tensor(1.3585769, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.8104515, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 5195\n",
+ "Discriminator Loss: tf.Tensor(0.894086, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.24445187, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 5196\n",
+ "Discriminator Loss: tf.Tensor(0.38913652, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.0959553, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 5197\n",
+ "Discriminator Loss: tf.Tensor(0.36881733, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.6966105, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 5198\n",
+ "Discriminator Loss: tf.Tensor(1.3352417, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.082928, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 5199\n",
+ "Discriminator Loss: tf.Tensor(0.6073365, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.6165933, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 5200\n",
+ "Discriminator Loss: tf.Tensor(0.851916, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.6134577, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 5201\n",
+ "Discriminator Loss: tf.Tensor(0.98071975, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.11270488, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 5202\n",
+ "Discriminator Loss: tf.Tensor(0.6564584, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.4475461, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 5203\n",
+ "Discriminator Loss: tf.Tensor(0.57865065, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.6533795, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 5204\n",
+ "Discriminator Loss: tf.Tensor(1.2594533, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.8049989, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 5205\n",
+ "Discriminator Loss: tf.Tensor(0.54324806, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.51045084, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 5206\n",
+ "Discriminator Loss: tf.Tensor(0.703768, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.3268479, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 5207\n",
+ "Discriminator Loss: tf.Tensor(0.9124347, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.4162382, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 5208\n",
+ "Discriminator Loss: tf.Tensor(0.56048626, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.4244701, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 5209\n",
+ "Discriminator Loss: tf.Tensor(0.94492304, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.10008877, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 5210\n",
+ "Discriminator Loss: tf.Tensor(1.0012331, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.8623899, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 5211\n",
+ "Discriminator Loss: tf.Tensor(0.9825356, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.08963501, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 5212\n",
+ "Discriminator Loss: tf.Tensor(0.25388956, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.7472315, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 5213\n",
+ "Discriminator Loss: tf.Tensor(0.5628433, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.8793845, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 5214\n",
+ "Discriminator Loss: tf.Tensor(1.2750906, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.6544538, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 5215\n",
+ "Discriminator Loss: tf.Tensor(1.0910308, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.16960762, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 5216\n",
+ "Discriminator Loss: tf.Tensor(0.54001284, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.011237, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 5217\n",
+ "Discriminator Loss: tf.Tensor(0.9008344, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.6425388, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 5218\n",
+ "Discriminator Loss: tf.Tensor(1.9009795, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.3772135, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 5219\n",
+ "Discriminator Loss: tf.Tensor(1.1494216, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.063566945, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 5220\n",
+ "Discriminator Loss: tf.Tensor(0.6503094, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.8108844, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 5221\n",
+ "Discriminator Loss: tf.Tensor(0.7152777, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.4395237, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 5222\n",
+ "Discriminator Loss: tf.Tensor(1.4022424, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.36558792, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 5223\n",
+ "Discriminator Loss: tf.Tensor(0.85154134, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.6936394, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 5224\n",
+ "Discriminator Loss: tf.Tensor(1.1817291, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.14949477, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 5225\n",
+ "Discriminator Loss: tf.Tensor(0.71758527, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.3994559, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 5226\n",
+ "Discriminator Loss: tf.Tensor(1.2431964, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.20035422, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 5227\n",
+ "Discriminator Loss: tf.Tensor(0.97282195, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.1420122, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 5228\n",
+ "Discriminator Loss: tf.Tensor(1.3408234, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.30442873, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 5229\n",
+ "Discriminator Loss: tf.Tensor(0.9553238, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.64148045, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 5230\n",
+ "Discriminator Loss: tf.Tensor(0.81170917, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.6997288, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 5231\n",
+ "Discriminator Loss: tf.Tensor(1.3920572, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.36824712, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 5232\n",
+ "Discriminator Loss: tf.Tensor(0.5668782, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.9381047, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 5233\n",
+ "Discriminator Loss: tf.Tensor(0.8240093, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.8767872, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 5234\n",
+ "Discriminator Loss: tf.Tensor(1.0319399, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.012736104, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 5235\n",
+ "Discriminator Loss: tf.Tensor(0.94176793, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.2006302, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 5236\n",
+ "Discriminator Loss: tf.Tensor(1.3289528, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.25734624, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 5237\n",
+ "Discriminator Loss: tf.Tensor(0.6159954, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.0960761, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 5238\n",
+ "Discriminator Loss: tf.Tensor(1.5188651, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.47532046, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 5239\n",
+ "Discriminator Loss: tf.Tensor(0.81939334, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.0976425, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 5240\n",
+ "Discriminator Loss: tf.Tensor(1.6214681, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.5728662, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 5241\n",
+ "Discriminator Loss: tf.Tensor(1.1568401, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.6188952, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 5242\n",
+ "Discriminator Loss: tf.Tensor(1.0560204, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.1953245, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 5243\n",
+ "Discriminator Loss: tf.Tensor(1.4679263, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.43484864, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 5244\n",
+ "Discriminator Loss: tf.Tensor(1.0267587, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.6245549, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 5245\n",
+ "Discriminator Loss: tf.Tensor(0.9995202, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.6106852, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 5246\n",
+ "Discriminator Loss: tf.Tensor(1.3596314, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.34002522, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 5247\n",
+ "Discriminator Loss: tf.Tensor(0.6123887, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.1998111, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 5248\n",
+ "Discriminator Loss: tf.Tensor(1.3658546, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.29685032, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 5249\n",
+ "Discriminator Loss: tf.Tensor(0.9137444, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.4810213, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 5250\n",
+ "Discriminator Loss: tf.Tensor(1.2268491, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.14189051, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 5251\n",
+ "Discriminator Loss: tf.Tensor(0.411856, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.1235734, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 5252\n",
+ "Discriminator Loss: tf.Tensor(1.434019, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.32587188, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 5253\n",
+ "Discriminator Loss: tf.Tensor(0.7675945, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.2246338, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 5254\n",
+ "Discriminator Loss: tf.Tensor(1.4206134, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.37583032, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 5255\n",
+ "Discriminator Loss: tf.Tensor(0.6639707, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.90889865, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 5256\n",
+ "Discriminator Loss: tf.Tensor(0.73656845, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.3763609, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 5257\n",
+ "Discriminator Loss: tf.Tensor(1.2584704, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.20817631, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 5258\n",
+ "Discriminator Loss: tf.Tensor(0.87565887, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.99848175, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 5259\n",
+ "Discriminator Loss: tf.Tensor(0.4078334, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.97119665, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 5260\n",
+ "Discriminator Loss: tf.Tensor(1.0063158, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.1627877, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 5261\n",
+ "Discriminator Loss: tf.Tensor(1.9005231, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.8714642, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 5262\n",
+ "Discriminator Loss: tf.Tensor(0.85475177, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.8718486, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 5263\n",
+ "Discriminator Loss: tf.Tensor(1.0142391, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.186456, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 5264\n",
+ "Discriminator Loss: tf.Tensor(1.2936981, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.22452553, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 5265\n",
+ "Discriminator Loss: tf.Tensor(0.5717279, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.8929427, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 5266\n",
+ "Discriminator Loss: tf.Tensor(0.84834063, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.5680202, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 5267\n",
+ "Discriminator Loss: tf.Tensor(1.5753967, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.5220148, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 5268\n",
+ "Discriminator Loss: tf.Tensor(0.5338235, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.0034189, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 5269\n",
+ "Discriminator Loss: tf.Tensor(0.47665545, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.68290395, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 5270\n",
+ "Discriminator Loss: tf.Tensor(2.1974435, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(3.2377841, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 5271\n",
+ "Discriminator Loss: tf.Tensor(1.3248948, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.24075828, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 5272\n",
+ "Discriminator Loss: tf.Tensor(0.6567917, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.2187696, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 5273\n",
+ "Discriminator Loss: tf.Tensor(1.4002897, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.33430377, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 5274\n",
+ "Discriminator Loss: tf.Tensor(0.8078703, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.4237326, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 5275\n",
+ "Discriminator Loss: tf.Tensor(1.2211347, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.16755104, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 5276\n",
+ "Discriminator Loss: tf.Tensor(0.84641635, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.1511208, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 5277\n",
+ "Discriminator Loss: tf.Tensor(1.4155363, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.3438954, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 5278\n",
+ "Discriminator Loss: tf.Tensor(0.78030866, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.8014609, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 5279\n",
+ "Discriminator Loss: tf.Tensor(0.4641809, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.6261708, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 5280\n",
+ "Discriminator Loss: tf.Tensor(1.0162833, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.14201336, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 5281\n",
+ "Discriminator Loss: tf.Tensor(1.3695816, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.8311296, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 5282\n",
+ "Discriminator Loss: tf.Tensor(1.0048591, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.13692854, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 5283\n",
+ "Discriminator Loss: tf.Tensor(0.74810684, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.0445985, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 5284\n",
+ "Discriminator Loss: tf.Tensor(0.71967006, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.4310362, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 5285\n",
+ "Discriminator Loss: tf.Tensor(1.3728342, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.1895573, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 5286\n",
+ "Discriminator Loss: tf.Tensor(1.9455539, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.90262896, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 5287\n",
+ "Discriminator Loss: tf.Tensor(1.2710961, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.09718303, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 5288\n",
+ "Discriminator Loss: tf.Tensor(1.027824, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.3458589, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 5289\n",
+ "Discriminator Loss: tf.Tensor(1.6100893, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.5775667, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 5290\n",
+ "Discriminator Loss: tf.Tensor(0.7438284, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.82119584, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 5291\n",
+ "Discriminator Loss: tf.Tensor(0.5321877, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.4204631, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 5292\n",
+ "Discriminator Loss: tf.Tensor(1.3339893, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.3010087, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 5293\n",
+ "Discriminator Loss: tf.Tensor(0.73862493, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.24586, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 5294\n",
+ "Discriminator Loss: tf.Tensor(1.1212983, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.09251877, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 5295\n",
+ "Discriminator Loss: tf.Tensor(0.33494818, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.2240645, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 5296\n",
+ "Discriminator Loss: tf.Tensor(0.91087604, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.13079594, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 5297\n",
+ "Discriminator Loss: tf.Tensor(0.6840285, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.7443131, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 5298\n",
+ "Discriminator Loss: tf.Tensor(1.1252214, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.07401448, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 5299\n",
+ "Discriminator Loss: tf.Tensor(0.43805826, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.507371, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 5300\n",
+ "Discriminator Loss: tf.Tensor(0.9486943, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.13387571, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 5301\n",
+ "Discriminator Loss: tf.Tensor(1.0097739, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.8454186, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 5302\n",
+ "Discriminator Loss: tf.Tensor(1.5462945, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.5127476, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 5303\n",
+ "Discriminator Loss: tf.Tensor(0.55815023, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.0478255, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 5304\n",
+ "Discriminator Loss: tf.Tensor(1.663804, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.5769033, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 5305\n",
+ "Discriminator Loss: tf.Tensor(1.0057412, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.0443488, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 5306\n",
+ "Discriminator Loss: tf.Tensor(1.5934253, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.4610015, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 5307\n",
+ "Discriminator Loss: tf.Tensor(1.0053614, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.7225998, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 5308\n",
+ "Discriminator Loss: tf.Tensor(1.021897, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.3644576, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 5309\n",
+ "Discriminator Loss: tf.Tensor(1.5398191, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.51894546, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 5310\n",
+ "Discriminator Loss: tf.Tensor(0.8643324, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.8055861, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 5311\n",
+ "Discriminator Loss: tf.Tensor(0.7956644, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.1590129, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 5312\n",
+ "Discriminator Loss: tf.Tensor(0.8710128, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.14442164, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 5313\n",
+ "Discriminator Loss: tf.Tensor(1.0973228, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.8057833, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 5314\n",
+ "Discriminator Loss: tf.Tensor(1.0077683, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.6535589, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 5315\n",
+ "Discriminator Loss: tf.Tensor(1.2477393, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.21248855, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 5316\n",
+ "Discriminator Loss: tf.Tensor(0.16360259, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.1791202, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 5317\n",
+ "Discriminator Loss: tf.Tensor(1.456941, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.18911922, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 5318\n",
+ "Discriminator Loss: tf.Tensor(1.6705631, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.8154179, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 5319\n",
+ "Discriminator Loss: tf.Tensor(1.354915, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.25327733, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 5320\n",
+ "Discriminator Loss: tf.Tensor(0.61355734, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.0061388, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 5321\n",
+ "Discriminator Loss: tf.Tensor(0.6813395, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.6293207, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 5322\n",
+ "Discriminator Loss: tf.Tensor(0.5614182, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.1230886, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 5323\n",
+ "Discriminator Loss: tf.Tensor(2.201969, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-1.1552055, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 5324\n",
+ "Discriminator Loss: tf.Tensor(1.2322676, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.69596475, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 5325\n",
+ "Discriminator Loss: tf.Tensor(0.8873297, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.8673633, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 5326\n",
+ "Discriminator Loss: tf.Tensor(1.5766758, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.5424813, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 5327\n",
+ "Discriminator Loss: tf.Tensor(0.68077326, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.9165239, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 5328\n",
+ "Discriminator Loss: tf.Tensor(0.8238218, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.4443277, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 5329\n",
+ "Discriminator Loss: tf.Tensor(1.4314983, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.3974056, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 5330\n",
+ "Discriminator Loss: tf.Tensor(1.2244252, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.9114435, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 5331\n",
+ "Discriminator Loss: tf.Tensor(1.086613, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.4141302, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 5332\n",
+ "Discriminator Loss: tf.Tensor(1.6200918, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.5634367, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 5333\n",
+ "Discriminator Loss: tf.Tensor(0.97736174, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.7116292, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 5334\n",
+ "Discriminator Loss: tf.Tensor(0.56437504, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.4313551, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 5335\n",
+ "Discriminator Loss: tf.Tensor(1.0352956, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.1337624, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 5336\n",
+ "Discriminator Loss: tf.Tensor(1.5640869, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.6402949, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 5337\n",
+ "Discriminator Loss: tf.Tensor(1.2461934, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.20486732, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 5338\n",
+ "Discriminator Loss: tf.Tensor(1.0311854, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.59015846, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 5339\n",
+ "Discriminator Loss: tf.Tensor(0.6786284, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.2865149, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 5340\n",
+ "Discriminator Loss: tf.Tensor(1.3119378, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.27975902, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 5341\n",
+ "Discriminator Loss: tf.Tensor(0.8237414, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.2415514, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 5342\n",
+ "Discriminator Loss: tf.Tensor(1.4927143, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.30074117, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 5343\n",
+ "Discriminator Loss: tf.Tensor(0.84050184, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.85729367, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 5344\n",
+ "Discriminator Loss: tf.Tensor(0.43945426, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.3583914, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 5345\n",
+ "Discriminator Loss: tf.Tensor(0.93425864, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.24702477, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 5346\n",
+ "Discriminator Loss: tf.Tensor(0.844368, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.6934115, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 5347\n",
+ "Discriminator Loss: tf.Tensor(0.5586635, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.5987404, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 5348\n",
+ "Discriminator Loss: tf.Tensor(0.9039873, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.8364607, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 5349\n",
+ "Discriminator Loss: tf.Tensor(0.65065926, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.45895138, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 5350\n",
+ "Discriminator Loss: tf.Tensor(0.8501693, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.553091, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 5351\n",
+ "Discriminator Loss: tf.Tensor(0.92266077, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.14098547, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 5352\n",
+ "Discriminator Loss: tf.Tensor(0.717217, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.6585399, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 5353\n",
+ "Discriminator Loss: tf.Tensor(0.73637575, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.44505644, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 5354\n",
+ "Discriminator Loss: tf.Tensor(0.7140167, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.6660115, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 5355\n",
+ "Discriminator Loss: tf.Tensor(0.92593926, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.15236662, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 5356\n",
+ "Discriminator Loss: tf.Tensor(1.2181789, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.3837175, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 5357\n",
+ "Discriminator Loss: tf.Tensor(1.1808424, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.118214466, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 5358\n",
+ "Discriminator Loss: tf.Tensor(0.7732053, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.86782056, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 5359\n",
+ "Discriminator Loss: tf.Tensor(1.3516194, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.3375313, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 5360\n",
+ "Discriminator Loss: tf.Tensor(1.5005201, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.4733356, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 5361\n",
+ "Discriminator Loss: tf.Tensor(0.8456136, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.0786651, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 5362\n",
+ "Discriminator Loss: tf.Tensor(1.1654452, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.09567753, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 5363\n",
+ "Discriminator Loss: tf.Tensor(0.26783833, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.3338069, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 5364\n",
+ "Discriminator Loss: tf.Tensor(0.84289455, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.3489314, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 5365\n",
+ "Discriminator Loss: tf.Tensor(1.2634299, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.884592, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 5366\n",
+ "Discriminator Loss: tf.Tensor(1.1499498, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.054347366, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 5367\n",
+ "Discriminator Loss: tf.Tensor(0.2834203, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.99702007, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 5368\n",
+ "Discriminator Loss: tf.Tensor(0.28867555, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.1722072, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 5369\n",
+ "Discriminator Loss: tf.Tensor(1.1416695, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.17296873, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 5370\n",
+ "Discriminator Loss: tf.Tensor(1.9230012, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.9908739, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 5371\n",
+ "Discriminator Loss: tf.Tensor(1.4368813, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.21868235, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 5372\n",
+ "Discriminator Loss: tf.Tensor(0.9496194, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.9157861, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 5373\n",
+ "Discriminator Loss: tf.Tensor(0.8120888, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.7750632, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 5374\n",
+ "Discriminator Loss: tf.Tensor(1.9998336, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.89238995, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 5375\n",
+ "Discriminator Loss: tf.Tensor(0.971439, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.0309216, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 5376\n",
+ "Discriminator Loss: tf.Tensor(1.248085, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.1797816, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 5377\n",
+ "Discriminator Loss: tf.Tensor(1.3648264, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.62299985, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 5378\n",
+ "Discriminator Loss: tf.Tensor(0.9807693, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.8802181, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 5379\n",
+ "Discriminator Loss: tf.Tensor(0.95831, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.2009175, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 5380\n",
+ "Discriminator Loss: tf.Tensor(1.6361775, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.59326273, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 5381\n",
+ "Discriminator Loss: tf.Tensor(0.71930075, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.8111329, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 5382\n",
+ "Discriminator Loss: tf.Tensor(0.7368557, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.5261742, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 5383\n",
+ "Discriminator Loss: tf.Tensor(1.6016632, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.56587964, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 5384\n",
+ "Discriminator Loss: tf.Tensor(1.0282304, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.7629783, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 5385\n",
+ "Discriminator Loss: tf.Tensor(0.92300016, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.7990996, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 5386\n",
+ "Discriminator Loss: tf.Tensor(1.1795504, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.124426305, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 5387\n",
+ "Discriminator Loss: tf.Tensor(0.667664, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.1715392, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 5388\n",
+ "Discriminator Loss: tf.Tensor(1.0480583, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.047901094, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 5389\n",
+ "Discriminator Loss: tf.Tensor(0.9753258, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.0582619, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 5390\n",
+ "Discriminator Loss: tf.Tensor(1.2672708, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.1398898, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 5391\n",
+ "Discriminator Loss: tf.Tensor(0.82518476, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.7391939, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 5392\n",
+ "Discriminator Loss: tf.Tensor(1.0933152, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.2728336, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 5393\n",
+ "Discriminator Loss: tf.Tensor(1.2055925, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.17586367, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 5394\n",
+ "Discriminator Loss: tf.Tensor(0.68904555, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.0047455, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 5395\n",
+ "Discriminator Loss: tf.Tensor(0.73818886, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.42160872, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 5396\n",
+ "Discriminator Loss: tf.Tensor(1.502961, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.4255455, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 5397\n",
+ "Discriminator Loss: tf.Tensor(1.3775055, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.31794292, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 5398\n",
+ "Discriminator Loss: tf.Tensor(0.44752806, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.9529416, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 5399\n",
+ "Discriminator Loss: tf.Tensor(0.32217818, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.8029671, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 5400\n",
+ "Discriminator Loss: tf.Tensor(0.7128864, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.3787353, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 5401\n",
+ "Discriminator Loss: tf.Tensor(1.6144917, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.0545647, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 5402\n",
+ "Discriminator Loss: tf.Tensor(1.17849, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.13358225, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 5403\n",
+ "Discriminator Loss: tf.Tensor(0.7012514, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.2995065, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 5404\n",
+ "Discriminator Loss: tf.Tensor(0.8529013, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.17411838, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 5405\n",
+ "Discriminator Loss: tf.Tensor(1.197589, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.8106123, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 5406\n",
+ "Discriminator Loss: tf.Tensor(1.1861358, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.040650133, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 5407\n",
+ "Discriminator Loss: tf.Tensor(0.71321386, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.95196086, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 5408\n",
+ "Discriminator Loss: tf.Tensor(0.6530837, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.9594998, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 5409\n",
+ "Discriminator Loss: tf.Tensor(1.2607715, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.204731, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 5410\n",
+ "Discriminator Loss: tf.Tensor(2.2055933, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-1.1738645, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 5411\n",
+ "Discriminator Loss: tf.Tensor(0.99159074, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.3712683, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 5412\n",
+ "Discriminator Loss: tf.Tensor(0.9675286, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.4296684, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 5413\n",
+ "Discriminator Loss: tf.Tensor(1.5666187, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.5181648, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 5414\n",
+ "Discriminator Loss: tf.Tensor(0.4790851, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.98000306, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 5415\n",
+ "Discriminator Loss: tf.Tensor(0.6684133, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.494758, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 5416\n",
+ "Discriminator Loss: tf.Tensor(0.90450156, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.23524506, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 5417\n",
+ "Discriminator Loss: tf.Tensor(1.1243879, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.8376069, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 5418\n",
+ "Discriminator Loss: tf.Tensor(0.81493783, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.37155822, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 5419\n",
+ "Discriminator Loss: tf.Tensor(0.7366367, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.363021, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 5420\n",
+ "Discriminator Loss: tf.Tensor(0.99814236, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.10668611, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 5421\n",
+ "Discriminator Loss: tf.Tensor(0.8490063, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.7935815, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 5422\n",
+ "Discriminator Loss: tf.Tensor(0.76203686, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.3558149, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 5423\n",
+ "Discriminator Loss: tf.Tensor(0.5919911, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.9153093, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 5424\n",
+ "Discriminator Loss: tf.Tensor(0.69922453, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.6029434, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 5425\n",
+ "Discriminator Loss: tf.Tensor(0.97231203, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.0642328, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 5426\n",
+ "Discriminator Loss: tf.Tensor(0.812739, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.5870892, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 5427\n",
+ "Discriminator Loss: tf.Tensor(0.34338146, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.6603807, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 5428\n",
+ "Discriminator Loss: tf.Tensor(0.35625422, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.7879823, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 5429\n",
+ "Discriminator Loss: tf.Tensor(0.98115647, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.3733072, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 5430\n",
+ "Discriminator Loss: tf.Tensor(0.6300148, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.68519545, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 5431\n",
+ "Discriminator Loss: tf.Tensor(0.53588593, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.481221, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 5432\n",
+ "Discriminator Loss: tf.Tensor(0.24225633, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.9744614, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 5433\n",
+ "Discriminator Loss: tf.Tensor(0.76606995, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.5942485, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 5434\n",
+ "Discriminator Loss: tf.Tensor(0.62191164, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.43975043, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 5435\n",
+ "Discriminator Loss: tf.Tensor(1.2514728, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.2977562, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 5436\n",
+ "Discriminator Loss: tf.Tensor(1.0177789, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.0033537808, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 5437\n",
+ "Discriminator Loss: tf.Tensor(1.2010325, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.8150622, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 5438\n",
+ "Discriminator Loss: tf.Tensor(1.1599486, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.07719876, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 5439\n",
+ "Discriminator Loss: tf.Tensor(0.99389803, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.875343, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 5440\n",
+ "Discriminator Loss: tf.Tensor(1.0020082, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.032697912, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 5441\n",
+ "Discriminator Loss: tf.Tensor(0.79650223, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.4477428, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 5442\n",
+ "Discriminator Loss: tf.Tensor(1.0284151, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.019581236, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 5443\n",
+ "Discriminator Loss: tf.Tensor(0.7090762, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.2104682, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 5444\n",
+ "Discriminator Loss: tf.Tensor(1.1229416, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.09212378, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 5445\n",
+ "Discriminator Loss: tf.Tensor(0.5683767, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.012489, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 5446\n",
+ "Discriminator Loss: tf.Tensor(0.6302161, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.40956545, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 5447\n",
+ "Discriminator Loss: tf.Tensor(1.6356002, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.4125738, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 5448\n",
+ "Discriminator Loss: tf.Tensor(0.867663, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.2598991, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 5449\n",
+ "Discriminator Loss: tf.Tensor(0.6025485, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.2114229, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 5450\n",
+ "Discriminator Loss: tf.Tensor(1.0569817, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.0068882294, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 5451\n",
+ "Discriminator Loss: tf.Tensor(1.0856383, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.3129908, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 5452\n",
+ "Discriminator Loss: tf.Tensor(1.1171511, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.055479024, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 5453\n",
+ "Discriminator Loss: tf.Tensor(0.7315804, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.0597113, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 5454\n",
+ "Discriminator Loss: tf.Tensor(1.0021527, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.083095185, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 5455\n",
+ "Discriminator Loss: tf.Tensor(1.000922, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.6394345, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 5456\n",
+ "Discriminator Loss: tf.Tensor(1.2924975, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.230936, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 5457\n",
+ "Discriminator Loss: tf.Tensor(0.5336143, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.4269365, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 5458\n",
+ "Discriminator Loss: tf.Tensor(1.3432562, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.048624273, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 5459\n",
+ "Discriminator Loss: tf.Tensor(0.5100573, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.7582535, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 5460\n",
+ "Discriminator Loss: tf.Tensor(1.5825875, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.5349992, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 5461\n",
+ "Discriminator Loss: tf.Tensor(0.7709808, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.0243989, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 5462\n",
+ "Discriminator Loss: tf.Tensor(1.0540823, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.16614203, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 5463\n",
+ "Discriminator Loss: tf.Tensor(0.9879881, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.0797317, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 5464\n",
+ "Discriminator Loss: tf.Tensor(1.4919226, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.3937784, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 5465\n",
+ "Discriminator Loss: tf.Tensor(1.0876812, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.420186, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 5466\n",
+ "Discriminator Loss: tf.Tensor(1.1659634, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.065572225, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 5467\n",
+ "Discriminator Loss: tf.Tensor(0.70919895, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.337027, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 5468\n",
+ "Discriminator Loss: tf.Tensor(1.4829706, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.20846762, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 5469\n",
+ "Discriminator Loss: tf.Tensor(0.5712316, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.0964046, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 5470\n",
+ "Discriminator Loss: tf.Tensor(1.3241906, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.27251288, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 5471\n",
+ "Discriminator Loss: tf.Tensor(0.8390117, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.1660451, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 5472\n",
+ "Discriminator Loss: tf.Tensor(1.2997608, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.26203725, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 5473\n",
+ "Discriminator Loss: tf.Tensor(0.6448373, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.89326173, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 5474\n",
+ "Discriminator Loss: tf.Tensor(0.9738572, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.5001675, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 5475\n",
+ "Discriminator Loss: tf.Tensor(1.2116694, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.16533966, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 5476\n",
+ "Discriminator Loss: tf.Tensor(0.4993387, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.2032899, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 5477\n",
+ "Discriminator Loss: tf.Tensor(0.9443807, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.13408782, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 5478\n",
+ "Discriminator Loss: tf.Tensor(1.1586144, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.9128084, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 5479\n",
+ "Discriminator Loss: tf.Tensor(1.0944666, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.06936251, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 5480\n",
+ "Discriminator Loss: tf.Tensor(0.39797938, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.266014, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 5481\n",
+ "Discriminator Loss: tf.Tensor(1.1813318, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.09022441, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 5482\n",
+ "Discriminator Loss: tf.Tensor(1.2542664, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.5062226, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 5483\n",
+ "Discriminator Loss: tf.Tensor(0.83592314, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.21578704, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 5484\n",
+ "Discriminator Loss: tf.Tensor(0.77648187, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.0383544, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 5485\n",
+ "Discriminator Loss: tf.Tensor(0.59183985, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.5164311, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 5486\n",
+ "Discriminator Loss: tf.Tensor(1.6621447, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.3291607, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 5487\n",
+ "Discriminator Loss: tf.Tensor(0.88571376, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.24127777, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 5488\n",
+ "Discriminator Loss: tf.Tensor(0.500418, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.1599654, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 5489\n",
+ "Discriminator Loss: tf.Tensor(0.58427143, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.488139, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 5490\n",
+ "Discriminator Loss: tf.Tensor(1.2273165, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.7414249, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 5491\n",
+ "Discriminator Loss: tf.Tensor(0.4343091, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.67258686, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 5492\n",
+ "Discriminator Loss: tf.Tensor(0.7355503, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.3974558, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 5493\n",
+ "Discriminator Loss: tf.Tensor(0.61264884, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.51167876, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 5494\n",
+ "Discriminator Loss: tf.Tensor(0.9086077, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.73292, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 5495\n",
+ "Discriminator Loss: tf.Tensor(0.49365544, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.67817384, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 5496\n",
+ "Discriminator Loss: tf.Tensor(1.46065, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.7254572, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 5497\n",
+ "Discriminator Loss: tf.Tensor(0.58634603, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.46061012, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 5498\n",
+ "Discriminator Loss: tf.Tensor(1.0751208, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.3429499, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 5499\n",
+ "Discriminator Loss: tf.Tensor(0.9131057, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.17389183, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 5500\n",
+ "Discriminator Loss: tf.Tensor(0.833378, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.9248274, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 5501\n",
+ "Discriminator Loss: tf.Tensor(0.67082584, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.9121262, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 5502\n",
+ "Discriminator Loss: tf.Tensor(0.82440543, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.3294213, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 5503\n",
+ "Discriminator Loss: tf.Tensor(1.313979, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.1150403, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 5504\n",
+ "Discriminator Loss: tf.Tensor(1.03222, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.045185376, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 5505\n",
+ "Discriminator Loss: tf.Tensor(0.47717986, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.278554, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 5506\n",
+ "Discriminator Loss: tf.Tensor(1.0653768, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.014925492, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 5507\n",
+ "Discriminator Loss: tf.Tensor(0.95579934, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.4326805, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 5508\n",
+ "Discriminator Loss: tf.Tensor(1.1993185, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.015251855, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 5509\n",
+ "Discriminator Loss: tf.Tensor(0.6351676, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.0270721, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 5510\n",
+ "Discriminator Loss: tf.Tensor(1.0389361, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.08599508, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 5511\n",
+ "Discriminator Loss: tf.Tensor(0.97485244, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.5989165, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 5512\n",
+ "Discriminator Loss: tf.Tensor(1.090363, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.031510815, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 5513\n",
+ "Discriminator Loss: tf.Tensor(0.78966856, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.2612089, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 5514\n",
+ "Discriminator Loss: tf.Tensor(1.1851752, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.03447881, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 5515\n",
+ "Discriminator Loss: tf.Tensor(0.44079503, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.4267277, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 5516\n",
+ "Discriminator Loss: tf.Tensor(1.1247413, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.094176166, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 5517\n",
+ "Discriminator Loss: tf.Tensor(0.83499265, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.3882442, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 5518\n",
+ "Discriminator Loss: tf.Tensor(1.885863, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.8618307, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 5519\n",
+ "Discriminator Loss: tf.Tensor(1.5539861, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.057272512, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 5520\n",
+ "Discriminator Loss: tf.Tensor(1.0410011, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.1337075, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 5521\n",
+ "Discriminator Loss: tf.Tensor(1.4099241, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.31896156, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 5522\n",
+ "Discriminator Loss: tf.Tensor(1.0082537, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.4423952, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 5523\n",
+ "Discriminator Loss: tf.Tensor(0.65756726, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.2540401, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 5524\n",
+ "Discriminator Loss: tf.Tensor(2.4473958, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-1.3981328, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 5525\n",
+ "Discriminator Loss: tf.Tensor(0.95089805, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.60380346, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 5526\n",
+ "Discriminator Loss: tf.Tensor(0.7648047, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.189978, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 5527\n",
+ "Discriminator Loss: tf.Tensor(1.704389, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.66345376, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 5528\n",
+ "Discriminator Loss: tf.Tensor(0.63294744, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.78826636, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 5529\n",
+ "Discriminator Loss: tf.Tensor(1.1136942, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.287934, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 5530\n",
+ "Discriminator Loss: tf.Tensor(1.5155631, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.48322377, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 5531\n",
+ "Discriminator Loss: tf.Tensor(0.77678937, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.1744663, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 5532\n",
+ "Discriminator Loss: tf.Tensor(1.1078953, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.03446593, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 5533\n",
+ "Discriminator Loss: tf.Tensor(0.46338338, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.98448104, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 5534\n",
+ "Discriminator Loss: tf.Tensor(0.60946393, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.3449224, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 5535\n",
+ "Discriminator Loss: tf.Tensor(1.8236535, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.7621322, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 5536\n",
+ "Discriminator Loss: tf.Tensor(0.7368444, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.4816281, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 5537\n",
+ "Discriminator Loss: tf.Tensor(1.2584456, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.23446788, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 5538\n",
+ "Discriminator Loss: tf.Tensor(0.3877625, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.4785928, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 5539\n",
+ "Discriminator Loss: tf.Tensor(0.8899487, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.26192644, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 5540\n",
+ "Discriminator Loss: tf.Tensor(0.54468876, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.8427572, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 5541\n",
+ "Discriminator Loss: tf.Tensor(0.96040785, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.15804331, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 5542\n",
+ "Discriminator Loss: tf.Tensor(0.52995723, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.0950203, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 5543\n",
+ "Discriminator Loss: tf.Tensor(0.75357896, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.29874277, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 5544\n",
+ "Discriminator Loss: tf.Tensor(0.5881225, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.2562945, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 5545\n",
+ "Discriminator Loss: tf.Tensor(1.0280349, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.01205419, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 5546\n",
+ "Discriminator Loss: tf.Tensor(1.3124071, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.7949194, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 5547\n",
+ "Discriminator Loss: tf.Tensor(1.7129481, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.6920104, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 5548\n",
+ "Discriminator Loss: tf.Tensor(0.73239285, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.9230871, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 5549\n",
+ "Discriminator Loss: tf.Tensor(1.3594245, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.5025384, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 5550\n",
+ "Discriminator Loss: tf.Tensor(1.1019702, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.08219328, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 5551\n",
+ "Discriminator Loss: tf.Tensor(0.9553402, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.5272952, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 5552\n",
+ "Discriminator Loss: tf.Tensor(0.98945814, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.122659646, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 5553\n",
+ "Discriminator Loss: tf.Tensor(0.85088086, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.3888797, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 5554\n",
+ "Discriminator Loss: tf.Tensor(1.1999547, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.16876478, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 5555\n",
+ "Discriminator Loss: tf.Tensor(0.76179403, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.1381388, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 5556\n",
+ "Discriminator Loss: tf.Tensor(1.2577732, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.22347064, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 5557\n",
+ "Discriminator Loss: tf.Tensor(0.46149465, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.1296905, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 5558\n",
+ "Discriminator Loss: tf.Tensor(0.77762747, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.27880093, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 5559\n",
+ "Discriminator Loss: tf.Tensor(1.1588678, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.8179032, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 5560\n",
+ "Discriminator Loss: tf.Tensor(1.049907, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.18227386, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 5561\n",
+ "Discriminator Loss: tf.Tensor(0.33961803, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.0826997, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 5562\n",
+ "Discriminator Loss: tf.Tensor(1.4755152, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.29383728, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 5563\n",
+ "Discriminator Loss: tf.Tensor(0.8895089, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.5452642, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 5564\n",
+ "Discriminator Loss: tf.Tensor(1.4297975, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.17249615, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 5565\n",
+ "Discriminator Loss: tf.Tensor(0.5913791, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.1748211, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 5566\n",
+ "Discriminator Loss: tf.Tensor(1.1919373, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.13580845, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 5567\n",
+ "Discriminator Loss: tf.Tensor(0.6992258, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.088277, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 5568\n",
+ "Discriminator Loss: tf.Tensor(1.3081702, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.18576717, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 5569\n",
+ "Discriminator Loss: tf.Tensor(0.8175417, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.79216784, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 5570\n",
+ "Discriminator Loss: tf.Tensor(1.0187908, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.0012763, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 5571\n",
+ "Discriminator Loss: tf.Tensor(1.308037, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.24801095, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 5572\n",
+ "Discriminator Loss: tf.Tensor(0.558815, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.5003419, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 5573\n",
+ "Discriminator Loss: tf.Tensor(1.1491239, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.12018486, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 5574\n",
+ "Discriminator Loss: tf.Tensor(0.555869, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.6870474, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 5575\n",
+ "Discriminator Loss: tf.Tensor(0.912181, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.118605584, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 5576\n",
+ "Discriminator Loss: tf.Tensor(0.7658702, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.6098953, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 5577\n",
+ "Discriminator Loss: tf.Tensor(1.5029179, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.47536254, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 5578\n",
+ "Discriminator Loss: tf.Tensor(0.43233114, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.96507484, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 5579\n",
+ "Discriminator Loss: tf.Tensor(0.82637477, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.0541222, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 5580\n",
+ "Discriminator Loss: tf.Tensor(1.6083152, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.57227975, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 5581\n",
+ "Discriminator Loss: tf.Tensor(0.8108564, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.0352361, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 5582\n",
+ "Discriminator Loss: tf.Tensor(1.3740704, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.25947377, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 5583\n",
+ "Discriminator Loss: tf.Tensor(0.48353353, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.5503129, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 5584\n",
+ "Discriminator Loss: tf.Tensor(1.0548973, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.023022803, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 5585\n",
+ "Discriminator Loss: tf.Tensor(1.0787702, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.0869825, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 5586\n",
+ "Discriminator Loss: tf.Tensor(0.8575939, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.42699194, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 5587\n",
+ "Discriminator Loss: tf.Tensor(0.6863395, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.6404711, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 5588\n",
+ "Discriminator Loss: tf.Tensor(0.9816169, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.17143334, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 5589\n",
+ "Discriminator Loss: tf.Tensor(1.0361639, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.3932632, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 5590\n",
+ "Discriminator Loss: tf.Tensor(0.97891796, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.14305274, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 5591\n",
+ "Discriminator Loss: tf.Tensor(0.41800532, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.8961592, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 5592\n",
+ "Discriminator Loss: tf.Tensor(1.8411534, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.7117777, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 5593\n",
+ "Discriminator Loss: tf.Tensor(0.90451795, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.19506411, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 5594\n",
+ "Discriminator Loss: tf.Tensor(0.7842989, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.5657297, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 5595\n",
+ "Discriminator Loss: tf.Tensor(1.1413598, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.04308859, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 5596\n",
+ "Discriminator Loss: tf.Tensor(1.0941315, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.5471679, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 5597\n",
+ "Discriminator Loss: tf.Tensor(1.3652899, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.26973283, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 5598\n",
+ "Discriminator Loss: tf.Tensor(0.5730038, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.1817056, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 5599\n",
+ "Discriminator Loss: tf.Tensor(1.151831, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.06672243, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 5600\n",
+ "Discriminator Loss: tf.Tensor(0.50059986, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.3777844, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 5601\n",
+ "Discriminator Loss: tf.Tensor(1.0569142, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.0047045685, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 5602\n",
+ "Discriminator Loss: tf.Tensor(0.8875996, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.570573, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 5603\n",
+ "Discriminator Loss: tf.Tensor(1.260017, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.2153665, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 5604\n",
+ "Discriminator Loss: tf.Tensor(0.47545806, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.0979902, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 5605\n",
+ "Discriminator Loss: tf.Tensor(1.2880464, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.10783806, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 5606\n",
+ "Discriminator Loss: tf.Tensor(0.26502654, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.0091311, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 5607\n",
+ "Discriminator Loss: tf.Tensor(0.4997335, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.2645835, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 5608\n",
+ "Discriminator Loss: tf.Tensor(1.8180456, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.6319206, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 5609\n",
+ "Discriminator Loss: tf.Tensor(0.86155844, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.6316384, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 5610\n",
+ "Discriminator Loss: tf.Tensor(1.220856, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.0445895, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 5611\n",
+ "Discriminator Loss: tf.Tensor(0.24904367, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.7269574, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 5612\n",
+ "Discriminator Loss: tf.Tensor(0.5824286, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.563842, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 5613\n",
+ "Discriminator Loss: tf.Tensor(1.2865717, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.3942075, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 5614\n",
+ "Discriminator Loss: tf.Tensor(0.8609526, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.36224592, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 5615\n",
+ "Discriminator Loss: tf.Tensor(0.2520163, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.3064467, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 5616\n",
+ "Discriminator Loss: tf.Tensor(0.87847, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.27750477, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 5617\n",
+ "Discriminator Loss: tf.Tensor(0.81184965, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.8069252, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 5618\n",
+ "Discriminator Loss: tf.Tensor(0.81132835, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.21475385, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 5619\n",
+ "Discriminator Loss: tf.Tensor(0.6541139, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.7434467, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 5620\n",
+ "Discriminator Loss: tf.Tensor(1.4071614, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.3434017, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 5621\n",
+ "Discriminator Loss: tf.Tensor(0.51633704, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.5497068, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 5622\n",
+ "Discriminator Loss: tf.Tensor(1.2235467, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.10504862, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 5623\n",
+ "Discriminator Loss: tf.Tensor(1.0161749, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.8707265, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 5624\n",
+ "Discriminator Loss: tf.Tensor(1.2780849, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.22247772, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 5625\n",
+ "Discriminator Loss: tf.Tensor(0.2857318, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.0647672, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 5626\n",
+ "Discriminator Loss: tf.Tensor(1.0120232, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.0730575, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 5627\n",
+ "Discriminator Loss: tf.Tensor(1.3317213, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.7826495, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 5628\n",
+ "Discriminator Loss: tf.Tensor(0.8021898, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.25368798, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 5629\n",
+ "Discriminator Loss: tf.Tensor(0.4432229, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.158446, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 5630\n",
+ "Discriminator Loss: tf.Tensor(0.62063205, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.43367824, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 5631\n",
+ "Discriminator Loss: tf.Tensor(0.9805088, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.7418903, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 5632\n",
+ "Discriminator Loss: tf.Tensor(0.79814225, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.34108734, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 5633\n",
+ "Discriminator Loss: tf.Tensor(0.5592058, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.3530626, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 5634\n",
+ "Discriminator Loss: tf.Tensor(0.8992551, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.18085414, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 5635\n",
+ "Discriminator Loss: tf.Tensor(1.1059334, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.2973789, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 5636\n",
+ "Discriminator Loss: tf.Tensor(0.961765, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.07035999, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 5637\n",
+ "Discriminator Loss: tf.Tensor(0.44215864, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.321358, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 5638\n",
+ "Discriminator Loss: tf.Tensor(0.67374957, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.3664875, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 5639\n",
+ "Discriminator Loss: tf.Tensor(0.7996887, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.834054, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 5640\n",
+ "Discriminator Loss: tf.Tensor(0.61384994, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.45138445, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 5641\n",
+ "Discriminator Loss: tf.Tensor(0.996158, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.8829697, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 5642\n",
+ "Discriminator Loss: tf.Tensor(1.1260676, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.037681144, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 5643\n",
+ "Discriminator Loss: tf.Tensor(0.54057974, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.3158511, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 5644\n",
+ "Discriminator Loss: tf.Tensor(1.0622994, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.041206215, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 5645\n",
+ "Discriminator Loss: tf.Tensor(0.84248793, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.611369, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 5646\n",
+ "Discriminator Loss: tf.Tensor(1.1793634, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.15800782, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 5647\n",
+ "Discriminator Loss: tf.Tensor(0.6348043, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.5834799, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 5648\n",
+ "Discriminator Loss: tf.Tensor(0.956477, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.082708456, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 5649\n",
+ "Discriminator Loss: tf.Tensor(0.86957335, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.9864407, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 5650\n",
+ "Discriminator Loss: tf.Tensor(0.8618045, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.23583896, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 5651\n",
+ "Discriminator Loss: tf.Tensor(0.92480373, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.0257783, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 5652\n",
+ "Discriminator Loss: tf.Tensor(0.882357, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.13943055, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 5653\n",
+ "Discriminator Loss: tf.Tensor(0.8384137, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.921084, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 5654\n",
+ "Discriminator Loss: tf.Tensor(1.0204085, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.08034316, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 5655\n",
+ "Discriminator Loss: tf.Tensor(0.500609, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.6417737, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 5656\n",
+ "Discriminator Loss: tf.Tensor(1.0179904, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.030842492, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 5657\n",
+ "Discriminator Loss: tf.Tensor(0.951601, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.3783358, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 5658\n",
+ "Discriminator Loss: tf.Tensor(1.0676215, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.032819845, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 5659\n",
+ "Discriminator Loss: tf.Tensor(0.5439845, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.097998, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 5660\n",
+ "Discriminator Loss: tf.Tensor(0.78802425, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.37488708, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 5661\n",
+ "Discriminator Loss: tf.Tensor(0.91722727, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.7106804, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 5662\n",
+ "Discriminator Loss: tf.Tensor(0.86965704, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.15545143, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 5663\n",
+ "Discriminator Loss: tf.Tensor(0.977122, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.5410467, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 5664\n",
+ "Discriminator Loss: tf.Tensor(0.9884235, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.095579304, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 5665\n",
+ "Discriminator Loss: tf.Tensor(0.65386784, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.2875742, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 5666\n",
+ "Discriminator Loss: tf.Tensor(0.8632938, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.21574862, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 5667\n",
+ "Discriminator Loss: tf.Tensor(0.79412276, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.3695875, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 5668\n",
+ "Discriminator Loss: tf.Tensor(1.2268865, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.15362376, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 5669\n",
+ "Discriminator Loss: tf.Tensor(1.2543263, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.5576147, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 5670\n",
+ "Discriminator Loss: tf.Tensor(1.3196973, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.29566407, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 5671\n",
+ "Discriminator Loss: tf.Tensor(0.549002, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.0448827, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 5672\n",
+ "Discriminator Loss: tf.Tensor(1.2929729, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.26991642, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 5673\n",
+ "Discriminator Loss: tf.Tensor(0.92836916, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.2249761, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 5674\n",
+ "Discriminator Loss: tf.Tensor(1.2689259, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.17493194, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 5675\n",
+ "Discriminator Loss: tf.Tensor(0.6966353, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.066018, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 5676\n",
+ "Discriminator Loss: tf.Tensor(1.4870313, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.42448977, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 5677\n",
+ "Discriminator Loss: tf.Tensor(0.5367325, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.94780445, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 5678\n",
+ "Discriminator Loss: tf.Tensor(0.7339567, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.8286223, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 5679\n",
+ "Discriminator Loss: tf.Tensor(1.2125956, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.16995753, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 5680\n",
+ "Discriminator Loss: tf.Tensor(1.0338047, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.6621567, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 5681\n",
+ "Discriminator Loss: tf.Tensor(1.3774835, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.35784963, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 5682\n",
+ "Discriminator Loss: tf.Tensor(0.7102758, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.2990729, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 5683\n",
+ "Discriminator Loss: tf.Tensor(1.0748305, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.0011522882, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 5684\n",
+ "Discriminator Loss: tf.Tensor(0.50129646, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.586078, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 5685\n",
+ "Discriminator Loss: tf.Tensor(0.6273966, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.4559702, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 5686\n",
+ "Discriminator Loss: tf.Tensor(0.9181645, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.9022698, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 5687\n",
+ "Discriminator Loss: tf.Tensor(0.49114162, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.54133683, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 5688\n",
+ "Discriminator Loss: tf.Tensor(0.88003194, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.0259893, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 5689\n",
+ "Discriminator Loss: tf.Tensor(0.55562854, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.52727866, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 5690\n",
+ "Discriminator Loss: tf.Tensor(0.4345234, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.6702477, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 5691\n",
+ "Discriminator Loss: tf.Tensor(0.78813964, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.44971934, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 5692\n",
+ "Discriminator Loss: tf.Tensor(1.4060959, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.235071, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 5693\n",
+ "Discriminator Loss: tf.Tensor(1.0799277, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.02566793, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 5694\n",
+ "Discriminator Loss: tf.Tensor(0.6880021, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.3396457, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 5695\n",
+ "Discriminator Loss: tf.Tensor(1.110934, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.05712251, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 5696\n",
+ "Discriminator Loss: tf.Tensor(0.66668296, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.2791531, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 5697\n",
+ "Discriminator Loss: tf.Tensor(1.1711228, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.014799935, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 5698\n",
+ "Discriminator Loss: tf.Tensor(0.96190333, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.5803267, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 5699\n",
+ "Discriminator Loss: tf.Tensor(1.4704784, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.39950767, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 5700\n",
+ "Discriminator Loss: tf.Tensor(0.2831021, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.0268534, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 5701\n",
+ "Discriminator Loss: tf.Tensor(0.7491462, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.50787354, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 5702\n",
+ "Discriminator Loss: tf.Tensor(0.89536643, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.1664188, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 5703\n",
+ "Discriminator Loss: tf.Tensor(1.7188941, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.6008454, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 5704\n",
+ "Discriminator Loss: tf.Tensor(0.6649976, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.1162661, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 5705\n",
+ "Discriminator Loss: tf.Tensor(1.0091585, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.119166076, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 5706\n",
+ "Discriminator Loss: tf.Tensor(0.6859517, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.5343877, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 5707\n",
+ "Discriminator Loss: tf.Tensor(0.5378072, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.4858818, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 5708\n",
+ "Discriminator Loss: tf.Tensor(0.69745827, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.9100653, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 5709\n",
+ "Discriminator Loss: tf.Tensor(0.8358336, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.1872908, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 5710\n",
+ "Discriminator Loss: tf.Tensor(0.9277607, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.2648035, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 5711\n",
+ "Discriminator Loss: tf.Tensor(1.8826104, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.85583514, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 5712\n",
+ "Discriminator Loss: tf.Tensor(0.52458483, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.0343131, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 5713\n",
+ "Discriminator Loss: tf.Tensor(0.76087475, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.27567574, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 5714\n",
+ "Discriminator Loss: tf.Tensor(1.3607459, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(3.091507, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 5715\n",
+ "Discriminator Loss: tf.Tensor(0.53026867, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.5333746, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 5716\n",
+ "Discriminator Loss: tf.Tensor(0.81782687, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.943932, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 5717\n",
+ "Discriminator Loss: tf.Tensor(0.43908373, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.5960217, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 5718\n",
+ "Discriminator Loss: tf.Tensor(0.81438875, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.3106074, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 5719\n",
+ "Discriminator Loss: tf.Tensor(0.35345852, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.7366154, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 5720\n",
+ "Discriminator Loss: tf.Tensor(0.9999371, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.7088324, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 5721\n",
+ "Discriminator Loss: tf.Tensor(0.86584216, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.1675009, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 5722\n",
+ "Discriminator Loss: tf.Tensor(1.382021, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.4218988, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 5723\n",
+ "Discriminator Loss: tf.Tensor(1.2937971, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.21736331, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 5724\n",
+ "Discriminator Loss: tf.Tensor(0.71168363, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.886938, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 5725\n",
+ "Discriminator Loss: tf.Tensor(1.1204543, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.09592288, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 5726\n",
+ "Discriminator Loss: tf.Tensor(0.5253141, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.4953914, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 5727\n",
+ "Discriminator Loss: tf.Tensor(1.0423189, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.063939676, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 5728\n",
+ "Discriminator Loss: tf.Tensor(0.48538497, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.4799942, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 5729\n",
+ "Discriminator Loss: tf.Tensor(0.647704, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.50445074, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 5730\n",
+ "Discriminator Loss: tf.Tensor(0.7574898, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.7818395, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 5731\n",
+ "Discriminator Loss: tf.Tensor(0.38844624, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.6991098, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 5732\n",
+ "Discriminator Loss: tf.Tensor(1.0790526, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.123435, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 5733\n",
+ "Discriminator Loss: tf.Tensor(0.79542667, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.24335666, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 5734\n",
+ "Discriminator Loss: tf.Tensor(0.48748466, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.62473, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 5735\n",
+ "Discriminator Loss: tf.Tensor(0.5340413, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.49616262, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 5736\n",
+ "Discriminator Loss: tf.Tensor(0.6800196, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.4704583, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 5737\n",
+ "Discriminator Loss: tf.Tensor(0.14314203, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.98698014, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 5738\n",
+ "Discriminator Loss: tf.Tensor(0.8971314, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.4926863, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 5739\n",
+ "Discriminator Loss: tf.Tensor(0.74714905, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.6489851, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 5740\n",
+ "Discriminator Loss: tf.Tensor(1.0352618, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.2224474, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 5741\n",
+ "Discriminator Loss: tf.Tensor(0.8298417, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.3234596, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 5742\n",
+ "Discriminator Loss: tf.Tensor(0.6564295, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.7779999, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 5743\n",
+ "Discriminator Loss: tf.Tensor(0.63948035, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.48908475, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 5744\n",
+ "Discriminator Loss: tf.Tensor(1.1942041, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.3334043, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 5745\n",
+ "Discriminator Loss: tf.Tensor(0.6304815, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.43036875, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 5746\n",
+ "Discriminator Loss: tf.Tensor(1.0675287, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.5791359, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 5747\n",
+ "Discriminator Loss: tf.Tensor(0.9578713, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.18004088, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 5748\n",
+ "Discriminator Loss: tf.Tensor(0.7177437, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.6112188, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 5749\n",
+ "Discriminator Loss: tf.Tensor(1.017948, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.0615984, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 5750\n",
+ "Discriminator Loss: tf.Tensor(1.0965472, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.4805154, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 5751\n",
+ "Discriminator Loss: tf.Tensor(1.4534212, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.313496, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 5752\n",
+ "Discriminator Loss: tf.Tensor(0.5110132, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.007809, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 5753\n",
+ "Discriminator Loss: tf.Tensor(0.44620478, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.7917683, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 5754\n",
+ "Discriminator Loss: tf.Tensor(1.928386, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(3.1061227, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 5755\n",
+ "Discriminator Loss: tf.Tensor(1.474033, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.41816723, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 5756\n",
+ "Discriminator Loss: tf.Tensor(0.8714004, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.8092248, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 5757\n",
+ "Discriminator Loss: tf.Tensor(0.8965246, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.1493652, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 5758\n",
+ "Discriminator Loss: tf.Tensor(1.3483386, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.3189163, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 5759\n",
+ "Discriminator Loss: tf.Tensor(0.7417158, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.2763754, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 5760\n",
+ "Discriminator Loss: tf.Tensor(1.1652703, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.11429647, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 5761\n",
+ "Discriminator Loss: tf.Tensor(0.69079626, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.216723, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 5762\n",
+ "Discriminator Loss: tf.Tensor(1.4864292, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.45945787, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 5763\n",
+ "Discriminator Loss: tf.Tensor(0.9407269, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.1875007, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 5764\n",
+ "Discriminator Loss: tf.Tensor(1.236333, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.15904558, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 5765\n",
+ "Discriminator Loss: tf.Tensor(0.67253876, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.10045, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 5766\n",
+ "Discriminator Loss: tf.Tensor(1.7369689, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.7045121, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 5767\n",
+ "Discriminator Loss: tf.Tensor(0.4866447, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.99813604, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 5768\n",
+ "Discriminator Loss: tf.Tensor(0.51555556, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.2116237, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 5769\n",
+ "Discriminator Loss: tf.Tensor(1.423574, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.3811891, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 5770\n",
+ "Discriminator Loss: tf.Tensor(0.45158467, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.0035771, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 5771\n",
+ "Discriminator Loss: tf.Tensor(1.0480591, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.5472107, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 5772\n",
+ "Discriminator Loss: tf.Tensor(1.4494226, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.41665947, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 5773\n",
+ "Discriminator Loss: tf.Tensor(0.56969786, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.82812995, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 5774\n",
+ "Discriminator Loss: tf.Tensor(1.3354168, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.2592123, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 5775\n",
+ "Discriminator Loss: tf.Tensor(1.5831623, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.45726308, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 5776\n",
+ "Discriminator Loss: tf.Tensor(0.71870697, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.0817392, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 5777\n",
+ "Discriminator Loss: tf.Tensor(1.3212541, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.28001267, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 5778\n",
+ "Discriminator Loss: tf.Tensor(0.7062594, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.9759071, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 5779\n",
+ "Discriminator Loss: tf.Tensor(0.4965688, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.1032312, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 5780\n",
+ "Discriminator Loss: tf.Tensor(1.609959, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.547582, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 5781\n",
+ "Discriminator Loss: tf.Tensor(0.4130832, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.5468578, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 5782\n",
+ "Discriminator Loss: tf.Tensor(1.1251017, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.074888684, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 5783\n",
+ "Discriminator Loss: tf.Tensor(0.7522442, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.0913985, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 5784\n",
+ "Discriminator Loss: tf.Tensor(0.9520395, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.09727308, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 5785\n",
+ "Discriminator Loss: tf.Tensor(0.20102042, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.6401888, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 5786\n",
+ "Discriminator Loss: tf.Tensor(0.773848, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.41411638, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 5787\n",
+ "Discriminator Loss: tf.Tensor(1.1854964, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.3250878, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 5788\n",
+ "Discriminator Loss: tf.Tensor(1.5226852, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.48759186, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 5789\n",
+ "Discriminator Loss: tf.Tensor(0.9131094, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.71664065, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 5790\n",
+ "Discriminator Loss: tf.Tensor(0.7475891, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.8879423, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 5791\n",
+ "Discriminator Loss: tf.Tensor(0.91977894, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.14770955, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 5792\n",
+ "Discriminator Loss: tf.Tensor(1.4023652, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.7214915, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 5793\n",
+ "Discriminator Loss: tf.Tensor(0.8299487, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.33090952, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 5794\n",
+ "Discriminator Loss: tf.Tensor(0.94916534, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.4169898, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 5795\n",
+ "Discriminator Loss: tf.Tensor(0.8318211, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.27572456, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 5796\n",
+ "Discriminator Loss: tf.Tensor(0.9338163, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.6532322, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 5797\n",
+ "Discriminator Loss: tf.Tensor(0.6984356, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.33421728, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 5798\n",
+ "Discriminator Loss: tf.Tensor(0.9238689, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.6275982, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 5799\n",
+ "Discriminator Loss: tf.Tensor(0.6838013, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.36811575, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 5800\n",
+ "Discriminator Loss: tf.Tensor(0.59438884, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.4756781, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 5801\n",
+ "Discriminator Loss: tf.Tensor(1.2031224, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.11546121, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 5802\n",
+ "Discriminator Loss: tf.Tensor(0.81022316, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.7941418, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 5803\n",
+ "Discriminator Loss: tf.Tensor(0.9464505, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.1176124, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 5804\n",
+ "Discriminator Loss: tf.Tensor(1.0216414, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.6228992, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 5805\n",
+ "Discriminator Loss: tf.Tensor(1.0781595, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.0043173046, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 5806\n",
+ "Discriminator Loss: tf.Tensor(0.67763925, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.2260144, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 5807\n",
+ "Discriminator Loss: tf.Tensor(1.1362467, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.08860257, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 5808\n",
+ "Discriminator Loss: tf.Tensor(0.70552343, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.4069996, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 5809\n",
+ "Discriminator Loss: tf.Tensor(0.901254, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.21880293, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 5810\n",
+ "Discriminator Loss: tf.Tensor(0.63874567, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.7932335, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 5811\n",
+ "Discriminator Loss: tf.Tensor(0.88133407, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.3695673, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 5812\n",
+ "Discriminator Loss: tf.Tensor(0.8248848, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.960941, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 5813\n",
+ "Discriminator Loss: tf.Tensor(0.80514944, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.26431432, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 5814\n",
+ "Discriminator Loss: tf.Tensor(0.8283453, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.8501157, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 5815\n",
+ "Discriminator Loss: tf.Tensor(0.7144879, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.3817859, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 5816\n",
+ "Discriminator Loss: tf.Tensor(0.49617073, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.9161487, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 5817\n",
+ "Discriminator Loss: tf.Tensor(0.8967887, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.31604305, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 5818\n",
+ "Discriminator Loss: tf.Tensor(1.1867983, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.191206, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 5819\n",
+ "Discriminator Loss: tf.Tensor(0.9002293, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.22156572, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 5820\n",
+ "Discriminator Loss: tf.Tensor(0.44833738, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.6521257, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 5821\n",
+ "Discriminator Loss: tf.Tensor(1.1087227, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.04400924, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 5822\n",
+ "Discriminator Loss: tf.Tensor(0.42223665, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.235667, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 5823\n",
+ "Discriminator Loss: tf.Tensor(0.56416965, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.66677237, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 5824\n",
+ "Discriminator Loss: tf.Tensor(0.950946, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.8249257, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 5825\n",
+ "Discriminator Loss: tf.Tensor(0.55378973, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.72940224, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 5826\n",
+ "Discriminator Loss: tf.Tensor(1.23561, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.9294548, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 5827\n",
+ "Discriminator Loss: tf.Tensor(0.5821613, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.4716401, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 5828\n",
+ "Discriminator Loss: tf.Tensor(0.588864, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.0101986, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 5829\n",
+ "Discriminator Loss: tf.Tensor(0.21695718, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.86302996, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 5830\n",
+ "Discriminator Loss: tf.Tensor(0.98940897, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(3.0269659, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 5831\n",
+ "Discriminator Loss: tf.Tensor(0.29347444, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.8075052, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 5832\n",
+ "Discriminator Loss: tf.Tensor(0.9114923, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.6940477, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 5833\n",
+ "Discriminator Loss: tf.Tensor(1.2298896, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.124975026, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 5834\n",
+ "Discriminator Loss: tf.Tensor(0.92741704, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.7800299, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 5835\n",
+ "Discriminator Loss: tf.Tensor(0.90820384, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.12178331, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 5836\n",
+ "Discriminator Loss: tf.Tensor(0.58225095, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.6541382, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 5837\n",
+ "Discriminator Loss: tf.Tensor(1.308058, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.18744779, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 5838\n",
+ "Discriminator Loss: tf.Tensor(1.0521039, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.40531, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 5839\n",
+ "Discriminator Loss: tf.Tensor(1.3081636, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.2270691, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 5840\n",
+ "Discriminator Loss: tf.Tensor(0.59696674, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.5250269, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 5841\n",
+ "Discriminator Loss: tf.Tensor(0.95018554, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.19628243, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 5842\n",
+ "Discriminator Loss: tf.Tensor(0.57696843, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.5895845, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 5843\n",
+ "Discriminator Loss: tf.Tensor(0.62758803, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.49799132, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 5844\n",
+ "Discriminator Loss: tf.Tensor(0.916173, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.788232, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 5845\n",
+ "Discriminator Loss: tf.Tensor(1.9758472, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.79035825, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 5846\n",
+ "Discriminator Loss: tf.Tensor(1.0218186, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.88802546, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 5847\n",
+ "Discriminator Loss: tf.Tensor(1.180974, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.8167638, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 5848\n",
+ "Discriminator Loss: tf.Tensor(1.2285788, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.15314221, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 5849\n",
+ "Discriminator Loss: tf.Tensor(0.9081552, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.4002796, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 5850\n",
+ "Discriminator Loss: tf.Tensor(0.8381273, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.24017839, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 5851\n",
+ "Discriminator Loss: tf.Tensor(0.9776273, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.6583663, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 5852\n",
+ "Discriminator Loss: tf.Tensor(0.76674217, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.28933492, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 5853\n",
+ "Discriminator Loss: tf.Tensor(0.83831424, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.6359953, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 5854\n",
+ "Discriminator Loss: tf.Tensor(0.7637939, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.37422523, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 5855\n",
+ "Discriminator Loss: tf.Tensor(0.946461, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.6936617, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 5856\n",
+ "Discriminator Loss: tf.Tensor(0.8510822, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.25427234, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 5857\n",
+ "Discriminator Loss: tf.Tensor(0.82422495, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.6701202, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 5858\n",
+ "Discriminator Loss: tf.Tensor(0.7944943, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.3100577, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 5859\n",
+ "Discriminator Loss: tf.Tensor(0.80552506, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.6989733, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 5860\n",
+ "Discriminator Loss: tf.Tensor(1.2461908, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.13326345, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 5861\n",
+ "Discriminator Loss: tf.Tensor(0.8210801, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.5896963, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 5862\n",
+ "Discriminator Loss: tf.Tensor(1.0869936, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.04635634, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 5863\n",
+ "Discriminator Loss: tf.Tensor(0.97215176, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.4172155, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 5864\n",
+ "Discriminator Loss: tf.Tensor(1.3925767, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.37511706, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 5865\n",
+ "Discriminator Loss: tf.Tensor(0.5741223, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.0856856, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 5866\n",
+ "Discriminator Loss: tf.Tensor(0.869852, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.25698105, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 5867\n",
+ "Discriminator Loss: tf.Tensor(0.5245037, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.8613011, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 5868\n",
+ "Discriminator Loss: tf.Tensor(1.212493, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.05560233, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 5869\n",
+ "Discriminator Loss: tf.Tensor(0.79185474, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.5974311, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 5870\n",
+ "Discriminator Loss: tf.Tensor(1.4679333, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.41312125, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 5871\n",
+ "Discriminator Loss: tf.Tensor(0.57739, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.7030288, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 5872\n",
+ "Discriminator Loss: tf.Tensor(1.2165201, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.18838246, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 5873\n",
+ "Discriminator Loss: tf.Tensor(0.49921423, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.4682733, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 5874\n",
+ "Discriminator Loss: tf.Tensor(1.3002478, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.25962552, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 5875\n",
+ "Discriminator Loss: tf.Tensor(0.68534815, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.6572245, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 5876\n",
+ "Discriminator Loss: tf.Tensor(0.6929437, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.35312286, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 5877\n",
+ "Discriminator Loss: tf.Tensor(0.5291674, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.351844, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 5878\n",
+ "Discriminator Loss: tf.Tensor(0.5210301, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.5185035, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 5879\n",
+ "Discriminator Loss: tf.Tensor(0.84272265, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.5333784, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 5880\n",
+ "Discriminator Loss: tf.Tensor(1.1361463, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.0886297, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 5881\n",
+ "Discriminator Loss: tf.Tensor(0.9405198, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.0031838, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 5882\n",
+ "Discriminator Loss: tf.Tensor(1.542221, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.32407388, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 5883\n",
+ "Discriminator Loss: tf.Tensor(0.69503975, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.8793365, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 5884\n",
+ "Discriminator Loss: tf.Tensor(1.2279713, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.16449817, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 5885\n",
+ "Discriminator Loss: tf.Tensor(0.6736901, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.8446951, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 5886\n",
+ "Discriminator Loss: tf.Tensor(1.3507857, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.29642752, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 5887\n",
+ "Discriminator Loss: tf.Tensor(0.62891567, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.496375, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 5888\n",
+ "Discriminator Loss: tf.Tensor(0.95968324, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.09234276, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 5889\n",
+ "Discriminator Loss: tf.Tensor(0.52205217, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.528482, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 5890\n",
+ "Discriminator Loss: tf.Tensor(0.9655406, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.13848007, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 5891\n",
+ "Discriminator Loss: tf.Tensor(0.854933, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.3710362, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 5892\n",
+ "Discriminator Loss: tf.Tensor(0.8948252, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.13771208, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 5893\n",
+ "Discriminator Loss: tf.Tensor(0.37777656, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.2932078, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 5894\n",
+ "Discriminator Loss: tf.Tensor(0.9326836, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.24353303, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 5895\n",
+ "Discriminator Loss: tf.Tensor(0.9811731, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.1839712, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 5896\n",
+ "Discriminator Loss: tf.Tensor(0.94973314, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.14231469, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 5897\n",
+ "Discriminator Loss: tf.Tensor(0.82861435, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.5295855, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 5898\n",
+ "Discriminator Loss: tf.Tensor(0.6915176, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.41581535, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 5899\n",
+ "Discriminator Loss: tf.Tensor(0.64099616, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.7625531, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 5900\n",
+ "Discriminator Loss: tf.Tensor(1.1472559, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.07567922, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 5901\n",
+ "Discriminator Loss: tf.Tensor(0.5665914, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.5426912, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 5902\n",
+ "Discriminator Loss: tf.Tensor(0.74434644, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.29922807, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 5903\n",
+ "Discriminator Loss: tf.Tensor(1.4048765, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.9788355, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 5904\n",
+ "Discriminator Loss: tf.Tensor(0.61148345, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.5028395, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 5905\n",
+ "Discriminator Loss: tf.Tensor(0.69420636, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.3963114, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 5906\n",
+ "Discriminator Loss: tf.Tensor(0.6073322, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.42156565, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 5907\n",
+ "Discriminator Loss: tf.Tensor(0.78680587, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.9995705, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 5908\n",
+ "Discriminator Loss: tf.Tensor(0.96520174, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.19054013, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 5909\n",
+ "Discriminator Loss: tf.Tensor(1.1205417, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.0822122, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 5910\n",
+ "Discriminator Loss: tf.Tensor(1.274554, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.19050121, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 5911\n",
+ "Discriminator Loss: tf.Tensor(0.7428317, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.4919796, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 5912\n",
+ "Discriminator Loss: tf.Tensor(0.930864, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.09396153, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 5913\n",
+ "Discriminator Loss: tf.Tensor(1.0371437, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.9467402, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 5914\n",
+ "Discriminator Loss: tf.Tensor(1.0037016, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.02384988, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 5915\n",
+ "Discriminator Loss: tf.Tensor(0.8475029, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.4305645, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 5916\n",
+ "Discriminator Loss: tf.Tensor(0.8745264, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.2548727, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 5917\n",
+ "Discriminator Loss: tf.Tensor(0.39434522, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.5147165, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 5918\n",
+ "Discriminator Loss: tf.Tensor(1.344749, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.032527, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 5919\n",
+ "Discriminator Loss: tf.Tensor(0.35946196, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.6911143, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 5920\n",
+ "Discriminator Loss: tf.Tensor(1.121938, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.21887471, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 5921\n",
+ "Discriminator Loss: tf.Tensor(1.0846844, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.3039548, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 5922\n",
+ "Discriminator Loss: tf.Tensor(1.1456444, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.112487994, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 5923\n",
+ "Discriminator Loss: tf.Tensor(0.8853451, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.3040522, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 5924\n",
+ "Discriminator Loss: tf.Tensor(1.0723574, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.037780732, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 5925\n",
+ "Discriminator Loss: tf.Tensor(0.6263069, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.6098038, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 5926\n",
+ "Discriminator Loss: tf.Tensor(0.48304838, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.5495127, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 5927\n",
+ "Discriminator Loss: tf.Tensor(1.0190562, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.7069273, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 5928\n",
+ "Discriminator Loss: tf.Tensor(0.35572797, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.1109209, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 5929\n",
+ "Discriminator Loss: tf.Tensor(0.61574113, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.54024357, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 5930\n",
+ "Discriminator Loss: tf.Tensor(0.8685925, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.8831795, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 5931\n",
+ "Discriminator Loss: tf.Tensor(0.5426449, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.56107, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 5932\n",
+ "Discriminator Loss: tf.Tensor(0.7624806, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.0941713, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 5933\n",
+ "Discriminator Loss: tf.Tensor(0.5544078, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.48740065, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 5934\n",
+ "Discriminator Loss: tf.Tensor(1.0661697, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.5570638, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 5935\n",
+ "Discriminator Loss: tf.Tensor(0.71617615, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.35151002, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 5936\n",
+ "Discriminator Loss: tf.Tensor(0.5925253, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.1572182, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 5937\n",
+ "Discriminator Loss: tf.Tensor(0.7053066, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.52238387, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 5938\n",
+ "Discriminator Loss: tf.Tensor(0.79063535, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.1884003, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 5939\n",
+ "Discriminator Loss: tf.Tensor(1.0399672, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.052310992, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 5940\n",
+ "Discriminator Loss: tf.Tensor(1.0396022, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.8559994, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 5941\n",
+ "Discriminator Loss: tf.Tensor(1.273774, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.2574226, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 5942\n",
+ "Discriminator Loss: tf.Tensor(0.5717967, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.7213621, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 5943\n",
+ "Discriminator Loss: tf.Tensor(0.9109444, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.13532822, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 5944\n",
+ "Discriminator Loss: tf.Tensor(1.2387193, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.0843506, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 5945\n",
+ "Discriminator Loss: tf.Tensor(1.3029041, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.22688381, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 5946\n",
+ "Discriminator Loss: tf.Tensor(0.6573909, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.1469871, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 5947\n",
+ "Discriminator Loss: tf.Tensor(0.9113414, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.2019434, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 5948\n",
+ "Discriminator Loss: tf.Tensor(1.0537452, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.4070778, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 5949\n",
+ "Discriminator Loss: tf.Tensor(0.98116934, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.056089606, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 5950\n",
+ "Discriminator Loss: tf.Tensor(0.415205, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.0890926, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 5951\n",
+ "Discriminator Loss: tf.Tensor(0.822616, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.39566553, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 5952\n",
+ "Discriminator Loss: tf.Tensor(1.2844528, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.6662383, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 5953\n",
+ "Discriminator Loss: tf.Tensor(1.5063633, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.3567321, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 5954\n",
+ "Discriminator Loss: tf.Tensor(0.5677866, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.0823989, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 5955\n",
+ "Discriminator Loss: tf.Tensor(1.1245099, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.007041463, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 5956\n",
+ "Discriminator Loss: tf.Tensor(0.53737456, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.3015429, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 5957\n",
+ "Discriminator Loss: tf.Tensor(1.6462688, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.47349095, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 5958\n",
+ "Discriminator Loss: tf.Tensor(0.82722986, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.2001301, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 5959\n",
+ "Discriminator Loss: tf.Tensor(1.4043628, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.34745777, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 5960\n",
+ "Discriminator Loss: tf.Tensor(0.5049397, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.3998095, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 5961\n",
+ "Discriminator Loss: tf.Tensor(1.0613813, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.25852403, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 5962\n",
+ "Discriminator Loss: tf.Tensor(0.49345952, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.482964, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 5963\n",
+ "Discriminator Loss: tf.Tensor(1.1096785, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.054396708, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 5964\n",
+ "Discriminator Loss: tf.Tensor(0.92079526, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.5117677, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 5965\n",
+ "Discriminator Loss: tf.Tensor(1.1694984, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.20941414, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 5966\n",
+ "Discriminator Loss: tf.Tensor(0.39972264, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.427526, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 5967\n",
+ "Discriminator Loss: tf.Tensor(0.49784642, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.76199466, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 5968\n",
+ "Discriminator Loss: tf.Tensor(0.90780306, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.2958508, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 5969\n",
+ "Discriminator Loss: tf.Tensor(0.26771343, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.8760323, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 5970\n",
+ "Discriminator Loss: tf.Tensor(0.7190774, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.3666723, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 5971\n",
+ "Discriminator Loss: tf.Tensor(0.25338557, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.7959378, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 5972\n",
+ "Discriminator Loss: tf.Tensor(1.2371742, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.694524, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 5973\n",
+ "Discriminator Loss: tf.Tensor(0.05105468, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.0194187, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 5974\n",
+ "Discriminator Loss: tf.Tensor(0.49645427, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.655461, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 5975\n",
+ "Discriminator Loss: tf.Tensor(0.68506676, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.70427936, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 5976\n",
+ "Discriminator Loss: tf.Tensor(0.9241684, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(3.1139967, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 5977\n",
+ "Discriminator Loss: tf.Tensor(0.51814544, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.81886643, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 5978\n",
+ "Discriminator Loss: tf.Tensor(0.36671263, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.7914078, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 5979\n",
+ "Discriminator Loss: tf.Tensor(1.1487482, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.48552442, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 5980\n",
+ "Discriminator Loss: tf.Tensor(2.171011, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(3.0665252, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 5981\n",
+ "Discriminator Loss: tf.Tensor(0.94089353, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.17907812, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 5982\n",
+ "Discriminator Loss: tf.Tensor(0.6341472, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.4989587, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 5983\n",
+ "Discriminator Loss: tf.Tensor(1.0608628, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.094284914, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 5984\n",
+ "Discriminator Loss: tf.Tensor(0.59629714, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.5388975, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 5985\n",
+ "Discriminator Loss: tf.Tensor(1.172309, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.11754954, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 5986\n",
+ "Discriminator Loss: tf.Tensor(0.7932292, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.6253042, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 5987\n",
+ "Discriminator Loss: tf.Tensor(1.3760022, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.2535846, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 5988\n",
+ "Discriminator Loss: tf.Tensor(0.6975173, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.180601, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 5989\n",
+ "Discriminator Loss: tf.Tensor(1.0156004, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.014913391, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 5990\n",
+ "Discriminator Loss: tf.Tensor(0.5018858, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.6603757, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 5991\n",
+ "Discriminator Loss: tf.Tensor(0.53508824, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.5072294, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 5992\n",
+ "Discriminator Loss: tf.Tensor(0.274599, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.6459663, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 5993\n",
+ "Discriminator Loss: tf.Tensor(0.36406955, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.3942947, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 5994\n",
+ "Discriminator Loss: tf.Tensor(1.0362554, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.19449072, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 5995\n",
+ "Discriminator Loss: tf.Tensor(1.3654156, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(3.002761, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 5996\n",
+ "Discriminator Loss: tf.Tensor(0.82908636, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.20852101, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 5997\n",
+ "Discriminator Loss: tf.Tensor(0.5130378, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.686854, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 5998\n",
+ "Discriminator Loss: tf.Tensor(0.57121557, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.47256693, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 5999\n",
+ "Discriminator Loss: tf.Tensor(1.3670032, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.5855587, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 6000\n",
+ "Discriminator Loss: tf.Tensor(0.7486694, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.36469474, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 6001\n",
+ "Discriminator Loss: tf.Tensor(0.67160285, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.6914402, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 6002\n",
+ "Discriminator Loss: tf.Tensor(0.8541497, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.18889578, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 6003\n",
+ "Discriminator Loss: tf.Tensor(0.83709747, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.752519, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 6004\n",
+ "Discriminator Loss: tf.Tensor(1.048815, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.06450587, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 6005\n",
+ "Discriminator Loss: tf.Tensor(0.67921245, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.4298156, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 6006\n",
+ "Discriminator Loss: tf.Tensor(1.0854219, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.02046412, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 6007\n",
+ "Discriminator Loss: tf.Tensor(0.97509396, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.5468489, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 6008\n",
+ "Discriminator Loss: tf.Tensor(1.2391238, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.12800412, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 6009\n",
+ "Discriminator Loss: tf.Tensor(0.5388595, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.2404075, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 6010\n",
+ "Discriminator Loss: tf.Tensor(0.83351815, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.20058171, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 6011\n",
+ "Discriminator Loss: tf.Tensor(0.78066015, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.5928255, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 6012\n",
+ "Discriminator Loss: tf.Tensor(0.93287116, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.098134845, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 6013\n",
+ "Discriminator Loss: tf.Tensor(0.6643505, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.3315511, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 6014\n",
+ "Discriminator Loss: tf.Tensor(1.065976, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.042186644, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 6015\n",
+ "Discriminator Loss: tf.Tensor(0.5566368, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.368972, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 6016\n",
+ "Discriminator Loss: tf.Tensor(0.9403944, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.11332351, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 6017\n",
+ "Discriminator Loss: tf.Tensor(0.61797774, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.3843416, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 6018\n",
+ "Discriminator Loss: tf.Tensor(1.1645408, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.08887419, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 6019\n",
+ "Discriminator Loss: tf.Tensor(0.3181111, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.6365986, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 6020\n",
+ "Discriminator Loss: tf.Tensor(0.9853287, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.09696243, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 6021\n",
+ "Discriminator Loss: tf.Tensor(0.9212761, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.0275478, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 6022\n",
+ "Discriminator Loss: tf.Tensor(1.3177838, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.11885051, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 6023\n",
+ "Discriminator Loss: tf.Tensor(0.8623441, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.3863912, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 6024\n",
+ "Discriminator Loss: tf.Tensor(1.190465, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.16032846, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 6025\n",
+ "Discriminator Loss: tf.Tensor(0.6021917, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.2828537, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 6026\n",
+ "Discriminator Loss: tf.Tensor(0.8826411, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.22043504, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 6027\n",
+ "Discriminator Loss: tf.Tensor(1.0105338, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.7002568, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 6028\n",
+ "Discriminator Loss: tf.Tensor(0.93688345, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.14272304, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 6029\n",
+ "Discriminator Loss: tf.Tensor(0.7087623, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.6821084, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 6030\n",
+ "Discriminator Loss: tf.Tensor(0.6780495, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.55402535, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 6031\n",
+ "Discriminator Loss: tf.Tensor(0.5602325, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.7663437, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 6032\n",
+ "Discriminator Loss: tf.Tensor(0.9249115, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.12037269, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 6033\n",
+ "Discriminator Loss: tf.Tensor(0.71244574, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.8908917, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 6034\n",
+ "Discriminator Loss: tf.Tensor(0.58380395, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.5423263, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 6035\n",
+ "Discriminator Loss: tf.Tensor(1.0212234, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.344994, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 6036\n",
+ "Discriminator Loss: tf.Tensor(0.68347347, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.43598476, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 6037\n",
+ "Discriminator Loss: tf.Tensor(0.78904194, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.9288658, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 6038\n",
+ "Discriminator Loss: tf.Tensor(0.7363436, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.37988877, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 6039\n",
+ "Discriminator Loss: tf.Tensor(0.42715174, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.293085, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 6040\n",
+ "Discriminator Loss: tf.Tensor(0.78172714, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.3168572, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 6041\n",
+ "Discriminator Loss: tf.Tensor(0.9740552, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.7456741, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 6042\n",
+ "Discriminator Loss: tf.Tensor(0.78093773, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.40342, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 6043\n",
+ "Discriminator Loss: tf.Tensor(0.6239296, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.6715065, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 6044\n",
+ "Discriminator Loss: tf.Tensor(0.9332888, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.15358828, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 6045\n",
+ "Discriminator Loss: tf.Tensor(0.92920727, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.7374643, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 6046\n",
+ "Discriminator Loss: tf.Tensor(1.1887563, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.14074592, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 6047\n",
+ "Discriminator Loss: tf.Tensor(0.60299015, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.4668684, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 6048\n",
+ "Discriminator Loss: tf.Tensor(1.3866102, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.2770499, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 6049\n",
+ "Discriminator Loss: tf.Tensor(0.8530399, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.4044842, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 6050\n",
+ "Discriminator Loss: tf.Tensor(0.9902951, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.036633644, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 6051\n",
+ "Discriminator Loss: tf.Tensor(0.9436854, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.8753904, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 6052\n",
+ "Discriminator Loss: tf.Tensor(0.53089315, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.5387345, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 6053\n",
+ "Discriminator Loss: tf.Tensor(0.6399773, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.0396056, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 6054\n",
+ "Discriminator Loss: tf.Tensor(0.6828016, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.3647356, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 6055\n",
+ "Discriminator Loss: tf.Tensor(1.3940682, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.9465474, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 6056\n",
+ "Discriminator Loss: tf.Tensor(1.1774932, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.027550206, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 6057\n",
+ "Discriminator Loss: tf.Tensor(0.8050773, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.8268562, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 6058\n",
+ "Discriminator Loss: tf.Tensor(0.75615466, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.303632, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 6059\n",
+ "Discriminator Loss: tf.Tensor(0.68491036, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.35211244, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 6060\n",
+ "Discriminator Loss: tf.Tensor(1.1658143, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.3562427, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 6061\n",
+ "Discriminator Loss: tf.Tensor(0.4834695, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.86288136, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 6062\n",
+ "Discriminator Loss: tf.Tensor(0.54142725, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.6623797, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 6063\n",
+ "Discriminator Loss: tf.Tensor(0.1467685, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.1061066, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 6064\n",
+ "Discriminator Loss: tf.Tensor(1.6231011, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.40578946, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 6065\n",
+ "Discriminator Loss: tf.Tensor(1.8572687, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.1840029, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 6066\n",
+ "Discriminator Loss: tf.Tensor(1.4334047, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.10039365, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 6067\n",
+ "Discriminator Loss: tf.Tensor(0.65903217, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.1558458, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 6068\n",
+ "Discriminator Loss: tf.Tensor(1.6880738, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.43548322, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 6069\n",
+ "Discriminator Loss: tf.Tensor(0.54098487, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.3006543, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 6070\n",
+ "Discriminator Loss: tf.Tensor(0.8763946, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.26845905, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 6071\n",
+ "Discriminator Loss: tf.Tensor(0.89120555, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.5761371, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 6072\n",
+ "Discriminator Loss: tf.Tensor(0.93707275, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.108237095, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 6073\n",
+ "Discriminator Loss: tf.Tensor(0.8442173, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.2459265, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 6074\n",
+ "Discriminator Loss: tf.Tensor(0.8595151, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.2679912, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 6075\n",
+ "Discriminator Loss: tf.Tensor(0.9339608, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.0900474, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 6076\n",
+ "Discriminator Loss: tf.Tensor(1.4196036, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.2998146, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 6077\n",
+ "Discriminator Loss: tf.Tensor(0.4668218, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.9385665, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 6078\n",
+ "Discriminator Loss: tf.Tensor(1.4123861, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.2440789, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 6079\n",
+ "Discriminator Loss: tf.Tensor(1.3456898, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.19827075, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 6080\n",
+ "Discriminator Loss: tf.Tensor(0.77610373, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.1860847, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 6081\n",
+ "Discriminator Loss: tf.Tensor(1.2653409, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.1565909, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 6082\n",
+ "Discriminator Loss: tf.Tensor(0.3909873, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.98797184, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 6083\n",
+ "Discriminator Loss: tf.Tensor(0.7518699, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.4744219, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 6084\n",
+ "Discriminator Loss: tf.Tensor(0.944367, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.08976212, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 6085\n",
+ "Discriminator Loss: tf.Tensor(0.8236729, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.6883911, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 6086\n",
+ "Discriminator Loss: tf.Tensor(0.87523615, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.17698063, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 6087\n",
+ "Discriminator Loss: tf.Tensor(0.8952676, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.9601789, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 6088\n",
+ "Discriminator Loss: tf.Tensor(0.63320553, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.4620249, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 6089\n",
+ "Discriminator Loss: tf.Tensor(0.7008734, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.9488201, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 6090\n",
+ "Discriminator Loss: tf.Tensor(0.620162, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.41244507, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 6091\n",
+ "Discriminator Loss: tf.Tensor(0.71098804, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.9265066, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 6092\n",
+ "Discriminator Loss: tf.Tensor(0.9233117, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.34390584, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 6093\n",
+ "Discriminator Loss: tf.Tensor(0.91443837, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.7072414, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 6094\n",
+ "Discriminator Loss: tf.Tensor(0.8938416, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.26687083, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 6095\n",
+ "Discriminator Loss: tf.Tensor(0.82491016, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.514203, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 6096\n",
+ "Discriminator Loss: tf.Tensor(0.93765056, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.14028785, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 6097\n",
+ "Discriminator Loss: tf.Tensor(0.7329222, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.8354516, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 6098\n",
+ "Discriminator Loss: tf.Tensor(0.4222146, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.7202802, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 6099\n",
+ "Discriminator Loss: tf.Tensor(0.5922286, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.4238741, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 6100\n",
+ "Discriminator Loss: tf.Tensor(0.56458193, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.73445576, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 6101\n",
+ "Discriminator Loss: tf.Tensor(1.0032058, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.219704, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 6102\n",
+ "Discriminator Loss: tf.Tensor(0.6319355, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.48169914, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 6103\n",
+ "Discriminator Loss: tf.Tensor(0.92003953, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.1825037, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 6104\n",
+ "Discriminator Loss: tf.Tensor(0.5012495, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.63282377, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 6105\n",
+ "Discriminator Loss: tf.Tensor(0.68252254, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.2452116, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 6106\n",
+ "Discriminator Loss: tf.Tensor(0.45238224, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.90027636, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 6107\n",
+ "Discriminator Loss: tf.Tensor(0.75230384, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.7277462, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 6108\n",
+ "Discriminator Loss: tf.Tensor(0.1941778, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.0223602, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 6109\n",
+ "Discriminator Loss: tf.Tensor(1.0821655, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.0054740165, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 6110\n",
+ "Discriminator Loss: tf.Tensor(1.31023, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(3.6210382, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 6111\n",
+ "Discriminator Loss: tf.Tensor(0.40940005, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.9863506, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 6112\n",
+ "Discriminator Loss: tf.Tensor(0.86001134, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.2672606, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 6113\n",
+ "Discriminator Loss: tf.Tensor(0.67209053, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.47980443, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 6114\n",
+ "Discriminator Loss: tf.Tensor(0.72776717, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.3889558, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 6115\n",
+ "Discriminator Loss: tf.Tensor(0.28932536, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.83859044, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 6116\n",
+ "Discriminator Loss: tf.Tensor(0.7763465, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.59848, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 6117\n",
+ "Discriminator Loss: tf.Tensor(0.5976869, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.69967395, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 6118\n",
+ "Discriminator Loss: tf.Tensor(1.093068, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.2997923, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 6119\n",
+ "Discriminator Loss: tf.Tensor(0.7127564, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.33534837, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 6120\n",
+ "Discriminator Loss: tf.Tensor(0.91652787, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.3927, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 6121\n",
+ "Discriminator Loss: tf.Tensor(0.4281577, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.66467065, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 6122\n",
+ "Discriminator Loss: tf.Tensor(0.67533445, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.1116877, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 6123\n",
+ "Discriminator Loss: tf.Tensor(0.8175853, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.2561462, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 6124\n",
+ "Discriminator Loss: tf.Tensor(1.1159759, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.187482, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 6125\n",
+ "Discriminator Loss: tf.Tensor(0.82808214, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.28024948, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 6126\n",
+ "Discriminator Loss: tf.Tensor(0.41261894, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.0023146, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 6127\n",
+ "Discriminator Loss: tf.Tensor(0.63034105, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.48782936, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 6128\n",
+ "Discriminator Loss: tf.Tensor(1.3268721, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.8771708, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 6129\n",
+ "Discriminator Loss: tf.Tensor(1.0414038, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.054893512, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 6130\n",
+ "Discriminator Loss: tf.Tensor(0.4123991, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.7420826, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 6131\n",
+ "Discriminator Loss: tf.Tensor(0.48345047, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.625321, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 6132\n",
+ "Discriminator Loss: tf.Tensor(1.257072, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.8023894, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 6133\n",
+ "Discriminator Loss: tf.Tensor(0.66616803, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.48379502, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 6134\n",
+ "Discriminator Loss: tf.Tensor(0.8058733, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.6961946, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 6135\n",
+ "Discriminator Loss: tf.Tensor(1.1584706, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.13491341, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 6136\n",
+ "Discriminator Loss: tf.Tensor(0.9623617, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.6357006, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 6137\n",
+ "Discriminator Loss: tf.Tensor(1.1395336, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.11322767, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 6138\n",
+ "Discriminator Loss: tf.Tensor(1.0147069, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.8443083, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 6139\n",
+ "Discriminator Loss: tf.Tensor(1.2739683, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.05431032, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 6140\n",
+ "Discriminator Loss: tf.Tensor(0.3897255, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.5470358, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 6141\n",
+ "Discriminator Loss: tf.Tensor(0.4754901, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.63001496, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 6142\n",
+ "Discriminator Loss: tf.Tensor(0.88471735, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.3889806, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 6143\n",
+ "Discriminator Loss: tf.Tensor(0.3366245, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.7203644, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 6144\n",
+ "Discriminator Loss: tf.Tensor(0.7480608, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.5991418, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 6145\n",
+ "Discriminator Loss: tf.Tensor(0.55633205, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.0437778, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 6146\n",
+ "Discriminator Loss: tf.Tensor(0.8416462, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.27507758, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 6147\n",
+ "Discriminator Loss: tf.Tensor(0.65278137, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.052046, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 6148\n",
+ "Discriminator Loss: tf.Tensor(0.66916656, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.4061599, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 6149\n",
+ "Discriminator Loss: tf.Tensor(1.0520732, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.526986, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 6150\n",
+ "Discriminator Loss: tf.Tensor(0.5401912, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.6380382, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 6151\n",
+ "Discriminator Loss: tf.Tensor(0.78023684, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.323624, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 6152\n",
+ "Discriminator Loss: tf.Tensor(0.85519, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.2978289, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 6153\n",
+ "Discriminator Loss: tf.Tensor(0.7272091, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.8865579, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 6154\n",
+ "Discriminator Loss: tf.Tensor(1.5143437, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.4472994, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 6155\n",
+ "Discriminator Loss: tf.Tensor(0.65569603, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.6950496, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 6156\n",
+ "Discriminator Loss: tf.Tensor(0.97952914, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.06867335, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 6157\n",
+ "Discriminator Loss: tf.Tensor(0.38865376, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.6208456, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 6158\n",
+ "Discriminator Loss: tf.Tensor(0.31180063, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.3502502, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 6159\n",
+ "Discriminator Loss: tf.Tensor(0.9128698, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.1504323, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 6160\n",
+ "Discriminator Loss: tf.Tensor(1.426992, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.7492402, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 6161\n",
+ "Discriminator Loss: tf.Tensor(0.5543717, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.5266262, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 6162\n",
+ "Discriminator Loss: tf.Tensor(0.56878847, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.379093, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 6163\n",
+ "Discriminator Loss: tf.Tensor(0.4270866, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.0592843, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 6164\n",
+ "Discriminator Loss: tf.Tensor(1.3145316, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.27118385, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 6165\n",
+ "Discriminator Loss: tf.Tensor(0.5492289, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.381002, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 6166\n",
+ "Discriminator Loss: tf.Tensor(0.41557658, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.400767, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 6167\n",
+ "Discriminator Loss: tf.Tensor(0.88951236, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.29308507, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 6168\n",
+ "Discriminator Loss: tf.Tensor(0.90170395, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.5624702, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 6169\n",
+ "Discriminator Loss: tf.Tensor(0.48400056, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.77013063, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 6170\n",
+ "Discriminator Loss: tf.Tensor(0.99635255, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.662657, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 6171\n",
+ "Discriminator Loss: tf.Tensor(0.6658749, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.5932125, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 6172\n",
+ "Discriminator Loss: tf.Tensor(0.6423057, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.30838, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 6173\n",
+ "Discriminator Loss: tf.Tensor(0.5019117, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.1378175, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 6174\n",
+ "Discriminator Loss: tf.Tensor(0.8631853, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.16902928, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 6175\n",
+ "Discriminator Loss: tf.Tensor(0.91860926, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.8887477, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 6176\n",
+ "Discriminator Loss: tf.Tensor(1.3289524, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.23159282, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 6177\n",
+ "Discriminator Loss: tf.Tensor(0.7830751, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.4420303, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 6178\n",
+ "Discriminator Loss: tf.Tensor(1.889193, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.8593629, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 6179\n",
+ "Discriminator Loss: tf.Tensor(0.9966004, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.6484388, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 6180\n",
+ "Discriminator Loss: tf.Tensor(1.0404956, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.016144114, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 6181\n",
+ "Discriminator Loss: tf.Tensor(0.6562141, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.763421, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 6182\n",
+ "Discriminator Loss: tf.Tensor(0.80188805, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.25321984, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 6183\n",
+ "Discriminator Loss: tf.Tensor(0.50310785, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.6688051, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 6184\n",
+ "Discriminator Loss: tf.Tensor(1.1722031, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.10674185, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 6185\n",
+ "Discriminator Loss: tf.Tensor(1.0011948, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.7983618, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 6186\n",
+ "Discriminator Loss: tf.Tensor(0.8129038, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.21272747, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 6187\n",
+ "Discriminator Loss: tf.Tensor(0.48621666, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.7180958, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 6188\n",
+ "Discriminator Loss: tf.Tensor(0.6925049, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.61518764, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 6189\n",
+ "Discriminator Loss: tf.Tensor(0.6240015, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.0823095, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 6190\n",
+ "Discriminator Loss: tf.Tensor(0.86652887, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.414718, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 6191\n",
+ "Discriminator Loss: tf.Tensor(0.7239443, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.0131075, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 6192\n",
+ "Discriminator Loss: tf.Tensor(0.6259878, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.7278927, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 6193\n",
+ "Discriminator Loss: tf.Tensor(1.1516287, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.9451976, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 6194\n",
+ "Discriminator Loss: tf.Tensor(0.5308991, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.55880433, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 6195\n",
+ "Discriminator Loss: tf.Tensor(1.0479048, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.0364764, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 6196\n",
+ "Discriminator Loss: tf.Tensor(0.3593944, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.8286169, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 6197\n",
+ "Discriminator Loss: tf.Tensor(0.62779844, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.9963069, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 6198\n",
+ "Discriminator Loss: tf.Tensor(0.3388435, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.78806233, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 6199\n",
+ "Discriminator Loss: tf.Tensor(1.6703564, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.5413902, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 6200\n",
+ "Discriminator Loss: tf.Tensor(0.41476703, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.75607824, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 6201\n",
+ "Discriminator Loss: tf.Tensor(0.54780805, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.9997011, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 6202\n",
+ "Discriminator Loss: tf.Tensor(0.491363, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.819537, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 6203\n",
+ "Discriminator Loss: tf.Tensor(1.7134428, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.7493153, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 6204\n",
+ "Discriminator Loss: tf.Tensor(0.32006544, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.72956425, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 6205\n",
+ "Discriminator Loss: tf.Tensor(0.75143844, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.4616268, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 6206\n",
+ "Discriminator Loss: tf.Tensor(0.39916795, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.8190856, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 6207\n",
+ "Discriminator Loss: tf.Tensor(0.9228873, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.404093, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 6208\n",
+ "Discriminator Loss: tf.Tensor(0.32914257, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.0409769, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 6209\n",
+ "Discriminator Loss: tf.Tensor(1.1236984, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.32578555, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 6210\n",
+ "Discriminator Loss: tf.Tensor(0.26063442, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.9185263, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 6211\n",
+ "Discriminator Loss: tf.Tensor(0.70113474, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.5156434, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 6212\n",
+ "Discriminator Loss: tf.Tensor(1.3001271, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.7919617, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 6213\n",
+ "Discriminator Loss: tf.Tensor(0.5393146, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.5497281, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 6214\n",
+ "Discriminator Loss: tf.Tensor(1.1160617, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.4417422, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 6215\n",
+ "Discriminator Loss: tf.Tensor(0.3720104, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.7083239, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 6216\n",
+ "Discriminator Loss: tf.Tensor(1.1525897, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.308247, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 6217\n",
+ "Discriminator Loss: tf.Tensor(0.49402297, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.7784026, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 6218\n",
+ "Discriminator Loss: tf.Tensor(0.61826205, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.0577257, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 6219\n",
+ "Discriminator Loss: tf.Tensor(0.4708225, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.78836465, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 6220\n",
+ "Discriminator Loss: tf.Tensor(1.2249517, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.9856586, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 6221\n",
+ "Discriminator Loss: tf.Tensor(1.3685858, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.097729474, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 6222\n",
+ "Discriminator Loss: tf.Tensor(0.9886582, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.8542514, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 6223\n",
+ "Discriminator Loss: tf.Tensor(1.0695268, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.18226947, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 6224\n",
+ "Discriminator Loss: tf.Tensor(0.9615066, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.7168881, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 6225\n",
+ "Discriminator Loss: tf.Tensor(0.7498365, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.48612627, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 6226\n",
+ "Discriminator Loss: tf.Tensor(0.6998624, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.6035084, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 6227\n",
+ "Discriminator Loss: tf.Tensor(0.84158707, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.30661035, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 6228\n",
+ "Discriminator Loss: tf.Tensor(0.52706915, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.8158935, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 6229\n",
+ "Discriminator Loss: tf.Tensor(0.89812165, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.5835964, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 6230\n",
+ "Discriminator Loss: tf.Tensor(0.74201614, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.1967587, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 6231\n",
+ "Discriminator Loss: tf.Tensor(1.248659, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.09189344, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 6232\n",
+ "Discriminator Loss: tf.Tensor(0.95483714, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.646895, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 6233\n",
+ "Discriminator Loss: tf.Tensor(0.58149385, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.5632906, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 6234\n",
+ "Discriminator Loss: tf.Tensor(0.84266293, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.0020535, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 6235\n",
+ "Discriminator Loss: tf.Tensor(0.443984, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.737871, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 6236\n",
+ "Discriminator Loss: tf.Tensor(0.4097274, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.0224822, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 6237\n",
+ "Discriminator Loss: tf.Tensor(0.25666302, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.8505473, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 6238\n",
+ "Discriminator Loss: tf.Tensor(0.923114, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(3.0783665, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 6239\n",
+ "Discriminator Loss: tf.Tensor(0.15695044, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.2215842, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 6240\n",
+ "Discriminator Loss: tf.Tensor(0.25899473, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.8688402, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 6241\n",
+ "Discriminator Loss: tf.Tensor(0.6766844, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.1581273, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 6242\n",
+ "Discriminator Loss: tf.Tensor(0.22805145, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.0207446, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 6243\n",
+ "Discriminator Loss: tf.Tensor(0.1576685, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.8812725, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 6244\n",
+ "Discriminator Loss: tf.Tensor(1.03599, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(3.7747562, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 6245\n",
+ "Discriminator Loss: tf.Tensor(0.25966746, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.0264927, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 6246\n",
+ "Discriminator Loss: tf.Tensor(0.6858292, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.681873, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 6247\n",
+ "Discriminator Loss: tf.Tensor(2.563951, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(4.1697373, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 6248\n",
+ "Discriminator Loss: tf.Tensor(0.73513436, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.53027874, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 6249\n",
+ "Discriminator Loss: tf.Tensor(1.0199267, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.6446552, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 6250\n",
+ "Discriminator Loss: tf.Tensor(0.937304, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.18433438, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 6251\n",
+ "Discriminator Loss: tf.Tensor(1.0400858, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.9030491, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 6252\n",
+ "Discriminator Loss: tf.Tensor(0.9904912, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.039852887, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 6253\n",
+ "Discriminator Loss: tf.Tensor(0.63413143, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.9433327, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 6254\n",
+ "Discriminator Loss: tf.Tensor(0.48530826, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.5868443, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 6255\n",
+ "Discriminator Loss: tf.Tensor(0.9431101, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.0602908, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 6256\n",
+ "Discriminator Loss: tf.Tensor(0.79242915, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.23816259, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 6257\n",
+ "Discriminator Loss: tf.Tensor(0.56681144, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.0762472, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 6258\n",
+ "Discriminator Loss: tf.Tensor(0.36302695, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.68669695, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 6259\n",
+ "Discriminator Loss: tf.Tensor(1.2421402, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.3279555, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 6260\n",
+ "Discriminator Loss: tf.Tensor(1.7118518, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.5619425, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 6261\n",
+ "Discriminator Loss: tf.Tensor(0.66463673, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.218403, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 6262\n",
+ "Discriminator Loss: tf.Tensor(0.87860566, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.14117527, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 6263\n",
+ "Discriminator Loss: tf.Tensor(0.54071045, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.9260079, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 6264\n",
+ "Discriminator Loss: tf.Tensor(0.826638, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.19856662, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 6265\n",
+ "Discriminator Loss: tf.Tensor(1.1059589, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.401998, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 6266\n",
+ "Discriminator Loss: tf.Tensor(0.5774037, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.44669333, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 6267\n",
+ "Discriminator Loss: tf.Tensor(0.5807705, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.9741088, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 6268\n",
+ "Discriminator Loss: tf.Tensor(0.27733114, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.90528035, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 6269\n",
+ "Discriminator Loss: tf.Tensor(1.1226426, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.9401672, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 6270\n",
+ "Discriminator Loss: tf.Tensor(0.4659717, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.6433788, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 6271\n",
+ "Discriminator Loss: tf.Tensor(1.5665267, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.6382117, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 6272\n",
+ "Discriminator Loss: tf.Tensor(0.42254865, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.70111805, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 6273\n",
+ "Discriminator Loss: tf.Tensor(0.7709322, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.2494485, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 6274\n",
+ "Discriminator Loss: tf.Tensor(0.576349, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.60454035, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 6275\n",
+ "Discriminator Loss: tf.Tensor(1.244405, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.3948038, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 6276\n",
+ "Discriminator Loss: tf.Tensor(0.56217176, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.8222124, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 6277\n",
+ "Discriminator Loss: tf.Tensor(0.66494894, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.0235035, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 6278\n",
+ "Discriminator Loss: tf.Tensor(1.242907, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.12416334, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 6279\n",
+ "Discriminator Loss: tf.Tensor(1.1415871, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.0845988, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 6280\n",
+ "Discriminator Loss: tf.Tensor(1.1510552, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.17220712, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 6281\n",
+ "Discriminator Loss: tf.Tensor(0.92046034, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.4128144, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 6282\n",
+ "Discriminator Loss: tf.Tensor(0.9263965, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.13026628, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 6283\n",
+ "Discriminator Loss: tf.Tensor(0.878831, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.413906, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 6284\n",
+ "Discriminator Loss: tf.Tensor(0.6491941, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.525312, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 6285\n",
+ "Discriminator Loss: tf.Tensor(0.7985233, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.9843931, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 6286\n",
+ "Discriminator Loss: tf.Tensor(0.9777331, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.14242207, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 6287\n",
+ "Discriminator Loss: tf.Tensor(0.7519821, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.2649038, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 6288\n",
+ "Discriminator Loss: tf.Tensor(0.2767082, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.88120896, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 6289\n",
+ "Discriminator Loss: tf.Tensor(0.8288399, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.697569, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 6290\n",
+ "Discriminator Loss: tf.Tensor(0.36190847, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.6682175, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 6291\n",
+ "Discriminator Loss: tf.Tensor(0.8128282, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(3.1679478, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 6292\n",
+ "Discriminator Loss: tf.Tensor(0.14639935, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.197514, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 6293\n",
+ "Discriminator Loss: tf.Tensor(0.779875, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.2842916, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 6294\n",
+ "Discriminator Loss: tf.Tensor(1.9450272, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(3.2954204, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 6295\n",
+ "Discriminator Loss: tf.Tensor(0.34277323, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.8340399, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 6296\n",
+ "Discriminator Loss: tf.Tensor(0.32113028, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.3173544, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 6297\n",
+ "Discriminator Loss: tf.Tensor(0.4415751, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.6233114, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 6298\n",
+ "Discriminator Loss: tf.Tensor(0.46638143, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.5794664, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 6299\n",
+ "Discriminator Loss: tf.Tensor(1.40235, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.6522799, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 6300\n",
+ "Discriminator Loss: tf.Tensor(0.8004284, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.30820397, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 6301\n",
+ "Discriminator Loss: tf.Tensor(1.028654, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.1685617, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 6302\n",
+ "Discriminator Loss: tf.Tensor(0.7268409, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.3023726, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 6303\n",
+ "Discriminator Loss: tf.Tensor(0.70697117, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.9616972, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 6304\n",
+ "Discriminator Loss: tf.Tensor(1.1302756, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.14846809, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 6305\n",
+ "Discriminator Loss: tf.Tensor(0.8556582, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.9352436, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 6306\n",
+ "Discriminator Loss: tf.Tensor(0.4872596, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.624031, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 6307\n",
+ "Discriminator Loss: tf.Tensor(0.8431084, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.7789572, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 6308\n",
+ "Discriminator Loss: tf.Tensor(1.0267498, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.12257314, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 6309\n",
+ "Discriminator Loss: tf.Tensor(0.93770087, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.0323455, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 6310\n",
+ "Discriminator Loss: tf.Tensor(1.1812543, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.10467282, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 6311\n",
+ "Discriminator Loss: tf.Tensor(0.9063805, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.6510954, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 6312\n",
+ "Discriminator Loss: tf.Tensor(0.8230483, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.20809989, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 6313\n",
+ "Discriminator Loss: tf.Tensor(1.0545272, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.8213722, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 6314\n",
+ "Discriminator Loss: tf.Tensor(0.6582748, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.40097928, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 6315\n",
+ "Discriminator Loss: tf.Tensor(0.78127205, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.6999222, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 6316\n",
+ "Discriminator Loss: tf.Tensor(0.6493366, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.42702493, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 6317\n",
+ "Discriminator Loss: tf.Tensor(1.033944, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.0603797, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 6318\n",
+ "Discriminator Loss: tf.Tensor(0.22276443, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.99783593, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 6319\n",
+ "Discriminator Loss: tf.Tensor(0.51356745, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.5953344, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 6320\n",
+ "Discriminator Loss: tf.Tensor(0.87018317, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.17833455, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 6321\n",
+ "Discriminator Loss: tf.Tensor(1.1582065, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.9393042, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 6322\n",
+ "Discriminator Loss: tf.Tensor(1.7597443, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.33963123, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 6323\n",
+ "Discriminator Loss: tf.Tensor(0.74459267, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.454134, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 6324\n",
+ "Discriminator Loss: tf.Tensor(0.97810614, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.043842882, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 6325\n",
+ "Discriminator Loss: tf.Tensor(0.5611111, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.3273096, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 6326\n",
+ "Discriminator Loss: tf.Tensor(0.24962991, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.83892685, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 6327\n",
+ "Discriminator Loss: tf.Tensor(1.2080721, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(3.3747787, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 6328\n",
+ "Discriminator Loss: tf.Tensor(0.7740026, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.6944289, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 6329\n",
+ "Discriminator Loss: tf.Tensor(0.65850604, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.9768276, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 6330\n",
+ "Discriminator Loss: tf.Tensor(1.057396, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.10085031, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 6331\n",
+ "Discriminator Loss: tf.Tensor(1.1320906, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.2230022, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 6332\n",
+ "Discriminator Loss: tf.Tensor(0.4384811, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.7134759, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 6333\n",
+ "Discriminator Loss: tf.Tensor(0.91614896, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.1379225, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 6334\n",
+ "Discriminator Loss: tf.Tensor(0.9140537, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.13505761, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 6335\n",
+ "Discriminator Loss: tf.Tensor(0.8272263, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.7088475, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 6336\n",
+ "Discriminator Loss: tf.Tensor(0.70197, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.44943988, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 6337\n",
+ "Discriminator Loss: tf.Tensor(1.2097157, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.4156468, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 6338\n",
+ "Discriminator Loss: tf.Tensor(0.93251455, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.21505289, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 6339\n",
+ "Discriminator Loss: tf.Tensor(0.71738124, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.849693, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 6340\n",
+ "Discriminator Loss: tf.Tensor(0.8639252, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.46840635, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 6341\n",
+ "Discriminator Loss: tf.Tensor(0.28898734, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.1079826, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 6342\n",
+ "Discriminator Loss: tf.Tensor(0.44952738, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.9668028, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 6343\n",
+ "Discriminator Loss: tf.Tensor(1.0595868, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.81661, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 6344\n",
+ "Discriminator Loss: tf.Tensor(0.54917717, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.50557023, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 6345\n",
+ "Discriminator Loss: tf.Tensor(1.1767629, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.093742, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 6346\n",
+ "Discriminator Loss: tf.Tensor(0.8389401, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.19401167, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 6347\n",
+ "Discriminator Loss: tf.Tensor(0.655831, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.4854996, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 6348\n",
+ "Discriminator Loss: tf.Tensor(0.45680964, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.6276196, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 6349\n",
+ "Discriminator Loss: tf.Tensor(1.2010407, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.382901, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 6350\n",
+ "Discriminator Loss: tf.Tensor(1.0402379, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.02727888, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 6351\n",
+ "Discriminator Loss: tf.Tensor(0.28123006, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.7054485, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 6352\n",
+ "Discriminator Loss: tf.Tensor(0.30210486, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.7340083, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 6353\n",
+ "Discriminator Loss: tf.Tensor(1.0728114, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.9575036, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 6354\n",
+ "Discriminator Loss: tf.Tensor(0.6424822, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.49770603, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 6355\n",
+ "Discriminator Loss: tf.Tensor(0.8561346, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.5947886, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 6356\n",
+ "Discriminator Loss: tf.Tensor(0.3553586, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.77678657, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 6357\n",
+ "Discriminator Loss: tf.Tensor(2.1604385, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.8079426, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 6358\n",
+ "Discriminator Loss: tf.Tensor(1.4855535, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.46653032, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 6359\n",
+ "Discriminator Loss: tf.Tensor(0.8298669, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.3012978, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 6360\n",
+ "Discriminator Loss: tf.Tensor(1.674923, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.5511675, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 6361\n",
+ "Discriminator Loss: tf.Tensor(0.7417878, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.2570013, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 6362\n",
+ "Discriminator Loss: tf.Tensor(1.2466416, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.07962601, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 6363\n",
+ "Discriminator Loss: tf.Tensor(0.7578114, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.4423003, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 6364\n",
+ "Discriminator Loss: tf.Tensor(0.96324205, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.1761874, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 6365\n",
+ "Discriminator Loss: tf.Tensor(0.6082543, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.5519695, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 6366\n",
+ "Discriminator Loss: tf.Tensor(1.1843542, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.13952236, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 6367\n",
+ "Discriminator Loss: tf.Tensor(0.78370845, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.7384146, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 6368\n",
+ "Discriminator Loss: tf.Tensor(0.91369045, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.54153246, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 6369\n",
+ "Discriminator Loss: tf.Tensor(0.63575524, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.4753737, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 6370\n",
+ "Discriminator Loss: tf.Tensor(1.8835132, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.8536441, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 6371\n",
+ "Discriminator Loss: tf.Tensor(1.1455045, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.7188421, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 6372\n",
+ "Discriminator Loss: tf.Tensor(1.2356241, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.07600145, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 6373\n",
+ "Discriminator Loss: tf.Tensor(0.6617947, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.9357672, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 6374\n",
+ "Discriminator Loss: tf.Tensor(1.2359371, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.12923215, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 6375\n",
+ "Discriminator Loss: tf.Tensor(0.9596859, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.8306004, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 6376\n",
+ "Discriminator Loss: tf.Tensor(1.5614834, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.47394967, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 6377\n",
+ "Discriminator Loss: tf.Tensor(0.8299665, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.80187625, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 6378\n",
+ "Discriminator Loss: tf.Tensor(0.56918496, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.4108248, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 6379\n",
+ "Discriminator Loss: tf.Tensor(1.5481923, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.30385798, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 6380\n",
+ "Discriminator Loss: tf.Tensor(0.93820953, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.2972248, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 6381\n",
+ "Discriminator Loss: tf.Tensor(0.92600435, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.17418313, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 6382\n",
+ "Discriminator Loss: tf.Tensor(0.6318401, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.0449262, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 6383\n",
+ "Discriminator Loss: tf.Tensor(0.8944603, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.21061726, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 6384\n",
+ "Discriminator Loss: tf.Tensor(0.97343713, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.813842, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 6385\n",
+ "Discriminator Loss: tf.Tensor(0.63880444, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.43862566, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 6386\n",
+ "Discriminator Loss: tf.Tensor(0.59759164, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.729039, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 6387\n",
+ "Discriminator Loss: tf.Tensor(0.7735516, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.45325065, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 6388\n",
+ "Discriminator Loss: tf.Tensor(0.648644, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(3.404482, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 6389\n",
+ "Discriminator Loss: tf.Tensor(0.82283807, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.42676497, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 6390\n",
+ "Discriminator Loss: tf.Tensor(1.5736274, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.7268155, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 6391\n",
+ "Discriminator Loss: tf.Tensor(0.92459285, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.37792718, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 6392\n",
+ "Discriminator Loss: tf.Tensor(0.5412952, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.7619952, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 6393\n",
+ "Discriminator Loss: tf.Tensor(0.5547242, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.6219998, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 6394\n",
+ "Discriminator Loss: tf.Tensor(0.43767884, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.7793567, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 6395\n",
+ "Discriminator Loss: tf.Tensor(0.28398883, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.1110923, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 6396\n",
+ "Discriminator Loss: tf.Tensor(0.6316742, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.4066874, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 6397\n",
+ "Discriminator Loss: tf.Tensor(1.8737004, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.8115666, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 6398\n",
+ "Discriminator Loss: tf.Tensor(0.48103213, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.7770355, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 6399\n",
+ "Discriminator Loss: tf.Tensor(0.63872385, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.1518853, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 6400\n",
+ "Discriminator Loss: tf.Tensor(0.13033023, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.946644, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 6401\n",
+ "Discriminator Loss: tf.Tensor(1.6275512, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.354833, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 6402\n",
+ "Discriminator Loss: tf.Tensor(0.75850123, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.50055546, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 6403\n",
+ "Discriminator Loss: tf.Tensor(1.0984733, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.9574713, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 6404\n",
+ "Discriminator Loss: tf.Tensor(0.89688694, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.3287259, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 6405\n",
+ "Discriminator Loss: tf.Tensor(0.9033564, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.9890164, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 6406\n",
+ "Discriminator Loss: tf.Tensor(1.179428, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.0853237, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 6407\n",
+ "Discriminator Loss: tf.Tensor(0.7550359, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.3539606, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 6408\n",
+ "Discriminator Loss: tf.Tensor(1.4295064, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.026130376, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 6409\n",
+ "Discriminator Loss: tf.Tensor(0.816944, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.3335171, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 6410\n",
+ "Discriminator Loss: tf.Tensor(1.2672662, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.1983238, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 6411\n",
+ "Discriminator Loss: tf.Tensor(1.043998, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.3482791, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 6412\n",
+ "Discriminator Loss: tf.Tensor(1.2059704, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.16708095, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 6413\n",
+ "Discriminator Loss: tf.Tensor(0.760425, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.0851771, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 6414\n",
+ "Discriminator Loss: tf.Tensor(1.1794637, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.12958135, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 6415\n",
+ "Discriminator Loss: tf.Tensor(0.46652228, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.2253736, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 6416\n",
+ "Discriminator Loss: tf.Tensor(0.8996306, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.4561205, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 6417\n",
+ "Discriminator Loss: tf.Tensor(0.4048632, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.4632044, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 6418\n",
+ "Discriminator Loss: tf.Tensor(0.8605666, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.34962037, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 6419\n",
+ "Discriminator Loss: tf.Tensor(1.1183546, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.340497, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 6420\n",
+ "Discriminator Loss: tf.Tensor(0.69635236, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.4685433, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 6421\n",
+ "Discriminator Loss: tf.Tensor(0.40023345, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.5801386, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 6422\n",
+ "Discriminator Loss: tf.Tensor(1.0069089, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.024772646, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 6423\n",
+ "Discriminator Loss: tf.Tensor(1.3295976, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.5351496, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 6424\n",
+ "Discriminator Loss: tf.Tensor(0.59499264, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.46509698, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 6425\n",
+ "Discriminator Loss: tf.Tensor(0.7103201, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.9994506, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 6426\n",
+ "Discriminator Loss: tf.Tensor(0.4898987, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.5477095, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 6427\n",
+ "Discriminator Loss: tf.Tensor(1.103611, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.016986, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 6428\n",
+ "Discriminator Loss: tf.Tensor(0.96811044, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.28719997, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 6429\n",
+ "Discriminator Loss: tf.Tensor(0.40873992, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.7348863, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 6430\n",
+ "Discriminator Loss: tf.Tensor(0.70200473, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.58260024, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 6431\n",
+ "Discriminator Loss: tf.Tensor(0.84078944, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.250759, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 6432\n",
+ "Discriminator Loss: tf.Tensor(0.8705861, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.19927867, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 6433\n",
+ "Discriminator Loss: tf.Tensor(1.1276984, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.2372713, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 6434\n",
+ "Discriminator Loss: tf.Tensor(0.42906812, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.648795, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 6435\n",
+ "Discriminator Loss: tf.Tensor(1.0001031, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.2479935, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 6436\n",
+ "Discriminator Loss: tf.Tensor(0.38376662, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.6662021, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 6437\n",
+ "Discriminator Loss: tf.Tensor(0.78603536, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.4222353, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 6438\n",
+ "Discriminator Loss: tf.Tensor(0.16784456, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.181126, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 6439\n",
+ "Discriminator Loss: tf.Tensor(1.1092827, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.15867867, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 6440\n",
+ "Discriminator Loss: tf.Tensor(0.49267697, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.3725245, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 6441\n",
+ "Discriminator Loss: tf.Tensor(0.45533532, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.7507059, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 6442\n",
+ "Discriminator Loss: tf.Tensor(1.9583414, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(3.6188736, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 6443\n",
+ "Discriminator Loss: tf.Tensor(0.37932456, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.7484303, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 6444\n",
+ "Discriminator Loss: tf.Tensor(0.37483898, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.6316563, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 6445\n",
+ "Discriminator Loss: tf.Tensor(0.12133169, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.1305313, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 6446\n",
+ "Discriminator Loss: tf.Tensor(110.415985, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.1105952, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 6447\n",
+ "Discriminator Loss: tf.Tensor(51.2044, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.5321576, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 6448\n",
+ "Discriminator Loss: tf.Tensor(13.463627, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.037767876, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 6449\n",
+ "Discriminator Loss: tf.Tensor(5.6679325, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.0047663744, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 6450\n",
+ "Discriminator Loss: tf.Tensor(4.0276184, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.036360215, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 6451\n",
+ "Discriminator Loss: tf.Tensor(3.2998152, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.061445024, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 6452\n",
+ "Discriminator Loss: tf.Tensor(3.0372348, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.08484763, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 6453\n",
+ "Discriminator Loss: tf.Tensor(2.8688526, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.09678527, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 6454\n",
+ "Discriminator Loss: tf.Tensor(2.6136577, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.11775229, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 6455\n",
+ "Discriminator Loss: tf.Tensor(2.575014, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.12454752, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 6456\n",
+ "Discriminator Loss: tf.Tensor(2.4275267, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.12564631, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 6457\n",
+ "Discriminator Loss: tf.Tensor(2.3668103, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.14690827, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 6458\n",
+ "Discriminator Loss: tf.Tensor(2.2992377, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.15733811, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 6459\n",
+ "Discriminator Loss: tf.Tensor(2.1911697, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.1742901, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 6460\n",
+ "Discriminator Loss: tf.Tensor(2.1596403, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.19252817, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 6461\n",
+ "Discriminator Loss: tf.Tensor(2.0805576, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.20471959, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 6462\n",
+ "Discriminator Loss: tf.Tensor(2.0509331, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.22072566, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 6463\n",
+ "Discriminator Loss: tf.Tensor(2.0187616, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.23232353, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 6464\n",
+ "Discriminator Loss: tf.Tensor(2.0293188, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.2447505, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 6465\n",
+ "Discriminator Loss: tf.Tensor(1.9934086, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.25185338, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 6466\n",
+ "Discriminator Loss: tf.Tensor(1.9570237, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.25929418, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 6467\n",
+ "Discriminator Loss: tf.Tensor(2.0082629, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.26643315, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 6468\n",
+ "Discriminator Loss: tf.Tensor(1.951261, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.25957647, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 6469\n",
+ "Discriminator Loss: tf.Tensor(1.9672773, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.26060262, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 6470\n",
+ "Discriminator Loss: tf.Tensor(1.9623995, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.26085553, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 6471\n",
+ "Discriminator Loss: tf.Tensor(1.991209, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.2662675, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 6472\n",
+ "Discriminator Loss: tf.Tensor(1.967304, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.2679954, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 6473\n",
+ "Discriminator Loss: tf.Tensor(1.9300107, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.28094628, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 6474\n",
+ "Discriminator Loss: tf.Tensor(1.8780354, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.302768, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 6475\n",
+ "Discriminator Loss: tf.Tensor(1.9232725, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.31288096, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 6476\n",
+ "Discriminator Loss: tf.Tensor(1.8616573, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.3306158, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 6477\n",
+ "Discriminator Loss: tf.Tensor(1.874987, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.35473895, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 6478\n",
+ "Discriminator Loss: tf.Tensor(1.870718, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.38061437, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 6479\n",
+ "Discriminator Loss: tf.Tensor(1.8660284, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.3950038, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 6480\n",
+ "Discriminator Loss: tf.Tensor(1.8476831, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.4243814, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 6481\n",
+ "Discriminator Loss: tf.Tensor(1.8311778, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.46425977, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 6482\n",
+ "Discriminator Loss: tf.Tensor(1.8333274, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.49100304, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 6483\n",
+ "Discriminator Loss: tf.Tensor(1.9206127, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.46949944, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 6484\n",
+ "Discriminator Loss: tf.Tensor(1.8615401, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.42757782, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 6485\n",
+ "Discriminator Loss: tf.Tensor(1.8889308, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.4328002, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 6486\n",
+ "Discriminator Loss: tf.Tensor(1.9025491, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.41928545, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 6487\n",
+ "Discriminator Loss: tf.Tensor(1.8778619, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.45589456, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 6488\n",
+ "Discriminator Loss: tf.Tensor(1.8875432, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.48925507, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 6489\n",
+ "Discriminator Loss: tf.Tensor(1.7782013, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.5768377, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 6490\n",
+ "Discriminator Loss: tf.Tensor(1.6441888, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.7986825, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 6491\n",
+ "Discriminator Loss: tf.Tensor(1.5804511, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.8695722, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 6492\n",
+ "Discriminator Loss: tf.Tensor(1.624257, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.76057553, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 6493\n",
+ "Discriminator Loss: tf.Tensor(1.5411265, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.9467077, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 6494\n",
+ "Discriminator Loss: tf.Tensor(1.8799521, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.3714018, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 6495\n",
+ "Discriminator Loss: tf.Tensor(1.9928797, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.6196759, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 6496\n",
+ "Discriminator Loss: tf.Tensor(1.6914189, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.22026686, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 6497\n",
+ "Discriminator Loss: tf.Tensor(1.7226468, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.16030455, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 6498\n",
+ "Discriminator Loss: tf.Tensor(1.6824474, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.07051369, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 6499\n",
+ "Discriminator Loss: tf.Tensor(1.7692695, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.043489832, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 6500\n",
+ "Discriminator Loss: tf.Tensor(1.608697, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.3592011, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 6501\n",
+ "Discriminator Loss: tf.Tensor(1.3364097, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.6490235, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 6502\n",
+ "Discriminator Loss: tf.Tensor(1.231311, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.0161283, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 6503\n",
+ "Discriminator Loss: tf.Tensor(1.7909484, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.7373338, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 6504\n",
+ "Discriminator Loss: tf.Tensor(1.5652, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.16773169, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 6505\n",
+ "Discriminator Loss: tf.Tensor(1.4133159, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.2902339, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 6506\n",
+ "Discriminator Loss: tf.Tensor(1.2293518, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.56132954, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 6507\n",
+ "Discriminator Loss: tf.Tensor(0.96370643, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.86147255, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 6508\n",
+ "Discriminator Loss: tf.Tensor(1.2478852, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.3794659, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 6509\n",
+ "Discriminator Loss: tf.Tensor(1.89957, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.8522785, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 6510\n",
+ "Discriminator Loss: tf.Tensor(1.4290426, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.17824447, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 6511\n",
+ "Discriminator Loss: tf.Tensor(0.97039646, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.57323164, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 6512\n",
+ "Discriminator Loss: tf.Tensor(0.70840675, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.0893904, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 6513\n",
+ "Discriminator Loss: tf.Tensor(1.7291379, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.6893625, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 6514\n",
+ "Discriminator Loss: tf.Tensor(0.7785288, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.8119641, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 6515\n",
+ "Discriminator Loss: tf.Tensor(0.36279905, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.3487886, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 6516\n",
+ "Discriminator Loss: tf.Tensor(1.6558703, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.60044485, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 6517\n",
+ "Discriminator Loss: tf.Tensor(0.7199409, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.7690475, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 6518\n",
+ "Discriminator Loss: tf.Tensor(0.91126716, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.2731993, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 6519\n",
+ "Discriminator Loss: tf.Tensor(1.7704669, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.7177224, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 6520\n",
+ "Discriminator Loss: tf.Tensor(1.0116209, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.95556897, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 6521\n",
+ "Discriminator Loss: tf.Tensor(0.79453164, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.4537137, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 6522\n",
+ "Discriminator Loss: tf.Tensor(1.5259049, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.4319123, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 6523\n",
+ "Discriminator Loss: tf.Tensor(0.67550397, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.0789238, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 6524\n",
+ "Discriminator Loss: tf.Tensor(1.6200008, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.4646608, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 6525\n",
+ "Discriminator Loss: tf.Tensor(0.7722312, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.99973583, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 6526\n",
+ "Discriminator Loss: tf.Tensor(0.443825, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.8449631, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 6527\n",
+ "Discriminator Loss: tf.Tensor(1.881012, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(3.636821, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 6528\n",
+ "Discriminator Loss: tf.Tensor(0.7934267, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.25328097, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 6529\n",
+ "Discriminator Loss: tf.Tensor(0.4148388, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.2846812, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 6530\n",
+ "Discriminator Loss: tf.Tensor(0.73642933, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.42167506, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 6531\n",
+ "Discriminator Loss: tf.Tensor(1.3598579, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.4447918, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 6532\n",
+ "Discriminator Loss: tf.Tensor(1.0462946, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.022798717, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 6533\n",
+ "Discriminator Loss: tf.Tensor(0.6311853, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.8496904, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 6534\n",
+ "Discriminator Loss: tf.Tensor(0.85416234, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.2957385, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 6535\n",
+ "Discriminator Loss: tf.Tensor(0.537551, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.433896, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 6536\n",
+ "Discriminator Loss: tf.Tensor(0.57225925, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.55838096, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 6537\n",
+ "Discriminator Loss: tf.Tensor(0.9260627, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.9139032, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 6538\n",
+ "Discriminator Loss: tf.Tensor(0.21543562, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.0848733, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 6539\n",
+ "Discriminator Loss: tf.Tensor(1.6608012, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.55744356, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 6540\n",
+ "Discriminator Loss: tf.Tensor(0.43124884, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.1937622, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 6541\n",
+ "Discriminator Loss: tf.Tensor(1.1397554, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.0065959194, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 6542\n",
+ "Discriminator Loss: tf.Tensor(0.6718738, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.9370867, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 6543\n",
+ "Discriminator Loss: tf.Tensor(1.1690279, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.0107381195, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 6544\n",
+ "Discriminator Loss: tf.Tensor(0.892386, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.1084082, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 6545\n",
+ "Discriminator Loss: tf.Tensor(1.103207, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.074401185, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 6546\n",
+ "Discriminator Loss: tf.Tensor(0.54323167, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.7737473, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 6547\n",
+ "Discriminator Loss: tf.Tensor(0.79660493, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.2733062, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 6548\n",
+ "Discriminator Loss: tf.Tensor(0.7751168, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.448795, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 6549\n",
+ "Discriminator Loss: tf.Tensor(1.0112525, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.03577772, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 6550\n",
+ "Discriminator Loss: tf.Tensor(0.9013522, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.4366196, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 6551\n",
+ "Discriminator Loss: tf.Tensor(1.8284503, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.7112153, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 6552\n",
+ "Discriminator Loss: tf.Tensor(1.0289099, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.7323194, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 6553\n",
+ "Discriminator Loss: tf.Tensor(0.9651165, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.524439, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 6554\n",
+ "Discriminator Loss: tf.Tensor(0.88557965, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.13463227, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 6555\n",
+ "Discriminator Loss: tf.Tensor(0.88672674, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.9023827, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 6556\n",
+ "Discriminator Loss: tf.Tensor(0.784305, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.24889858, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 6557\n",
+ "Discriminator Loss: tf.Tensor(0.99142456, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.9248515, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 6558\n",
+ "Discriminator Loss: tf.Tensor(1.0494226, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.02186655, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 6559\n",
+ "Discriminator Loss: tf.Tensor(1.0461107, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.6222558, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 6560\n",
+ "Discriminator Loss: tf.Tensor(0.86420476, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.22239454, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 6561\n",
+ "Discriminator Loss: tf.Tensor(0.28183183, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.6825811, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 6562\n",
+ "Discriminator Loss: tf.Tensor(0.29222113, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.8953318, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 6563\n",
+ "Discriminator Loss: tf.Tensor(1.2251382, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(4.5532966, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 6564\n",
+ "Discriminator Loss: tf.Tensor(0.34159154, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.9347555, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 6565\n",
+ "Discriminator Loss: tf.Tensor(0.56169116, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.9691398, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 6566\n",
+ "Discriminator Loss: tf.Tensor(0.6139375, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.5990335, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 6567\n",
+ "Discriminator Loss: tf.Tensor(2.0524907, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(4.280688, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 6568\n",
+ "Discriminator Loss: tf.Tensor(0.80120295, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.41665515, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 6569\n",
+ "Discriminator Loss: tf.Tensor(0.72482103, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.8781143, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 6570\n",
+ "Discriminator Loss: tf.Tensor(0.9403375, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.29243106, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 6571\n",
+ "Discriminator Loss: tf.Tensor(0.7886164, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.8697287, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 6572\n",
+ "Discriminator Loss: tf.Tensor(0.67005515, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.41283962, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 6573\n",
+ "Discriminator Loss: tf.Tensor(1.2038392, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.1708925, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 6574\n",
+ "Discriminator Loss: tf.Tensor(0.9328198, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.31684497, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 6575\n",
+ "Discriminator Loss: tf.Tensor(0.3010216, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.0520744, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 6576\n",
+ "Discriminator Loss: tf.Tensor(0.14031188, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.0474712, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 6577\n",
+ "Discriminator Loss: tf.Tensor(0.7722822, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.5697904, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 6578\n",
+ "Discriminator Loss: tf.Tensor(1.9669776, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.9993656, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 6579\n",
+ "Discriminator Loss: tf.Tensor(1.0227823, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.21392266, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 6580\n",
+ "Discriminator Loss: tf.Tensor(0.75990546, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.2653855, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 6581\n",
+ "Discriminator Loss: tf.Tensor(1.2523133, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.11087451, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 6582\n",
+ "Discriminator Loss: tf.Tensor(1.0318538, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.4640379, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 6583\n",
+ "Discriminator Loss: tf.Tensor(1.37358, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.15681641, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 6584\n",
+ "Discriminator Loss: tf.Tensor(0.8931011, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.87375575, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 6585\n",
+ "Discriminator Loss: tf.Tensor(1.1874557, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.0268157, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 6586\n",
+ "Discriminator Loss: tf.Tensor(1.3232704, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.26439524, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 6587\n",
+ "Discriminator Loss: tf.Tensor(0.69326526, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.296307, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 6588\n",
+ "Discriminator Loss: tf.Tensor(1.1987119, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.057095736, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 6589\n",
+ "Discriminator Loss: tf.Tensor(0.6663865, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.5304893, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 6590\n",
+ "Discriminator Loss: tf.Tensor(0.9658375, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.08651773, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 6591\n",
+ "Discriminator Loss: tf.Tensor(0.99142885, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.7810873, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 6592\n",
+ "Discriminator Loss: tf.Tensor(1.3060437, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.166656, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 6593\n",
+ "Discriminator Loss: tf.Tensor(0.7658617, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.9812835, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 6594\n",
+ "Discriminator Loss: tf.Tensor(0.5714092, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.2909325, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 6595\n",
+ "Discriminator Loss: tf.Tensor(1.4908397, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.39261976, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 6596\n",
+ "Discriminator Loss: tf.Tensor(0.65490144, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.3650116, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 6597\n",
+ "Discriminator Loss: tf.Tensor(0.9995909, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.13369489, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 6598\n",
+ "Discriminator Loss: tf.Tensor(0.84276986, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.5754334, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 6599\n",
+ "Discriminator Loss: tf.Tensor(1.5753196, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.5481677, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 6600\n",
+ "Discriminator Loss: tf.Tensor(0.44373828, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.0066013, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 6601\n",
+ "Discriminator Loss: tf.Tensor(0.30522025, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.262012, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 6602\n",
+ "Discriminator Loss: tf.Tensor(0.9697083, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.13308217, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 6603\n",
+ "Discriminator Loss: tf.Tensor(1.1147275, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.416498, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 6604\n",
+ "Discriminator Loss: tf.Tensor(0.8041958, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.2997297, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 6605\n",
+ "Discriminator Loss: tf.Tensor(0.44219577, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.5190682, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 6606\n",
+ "Discriminator Loss: tf.Tensor(0.45466885, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.7855973, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 6607\n",
+ "Discriminator Loss: tf.Tensor(1.2770786, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.0843284, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 6608\n",
+ "Discriminator Loss: tf.Tensor(1.3676203, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.21359241, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 6609\n",
+ "Discriminator Loss: tf.Tensor(1.0155444, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.5751619, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 6610\n",
+ "Discriminator Loss: tf.Tensor(1.1238217, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.0085219825, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 6611\n",
+ "Discriminator Loss: tf.Tensor(0.362757, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.6840562, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 6612\n",
+ "Discriminator Loss: tf.Tensor(0.82119244, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.30808228, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 6613\n",
+ "Discriminator Loss: tf.Tensor(1.3554343, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.5470216, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 6614\n",
+ "Discriminator Loss: tf.Tensor(0.92260504, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.17302132, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 6615\n",
+ "Discriminator Loss: tf.Tensor(0.38009614, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.7386799, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 6616\n",
+ "Discriminator Loss: tf.Tensor(1.007689, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.019696336, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 6617\n",
+ "Discriminator Loss: tf.Tensor(0.82687557, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.5331478, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 6618\n",
+ "Discriminator Loss: tf.Tensor(1.0459354, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.021590553, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 6619\n",
+ "Discriminator Loss: tf.Tensor(0.66254663, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.5806308, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 6620\n",
+ "Discriminator Loss: tf.Tensor(0.67768097, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.4613104, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 6621\n",
+ "Discriminator Loss: tf.Tensor(1.2217433, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(3.1491945, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 6622\n",
+ "Discriminator Loss: tf.Tensor(0.93779826, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.08486786, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 6623\n",
+ "Discriminator Loss: tf.Tensor(0.74285936, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.6295213, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 6624\n",
+ "Discriminator Loss: tf.Tensor(1.043557, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.07555849, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 6625\n",
+ "Discriminator Loss: tf.Tensor(0.8285144, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.196359, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 6626\n",
+ "Discriminator Loss: tf.Tensor(0.70427746, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.31436273, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 6627\n",
+ "Discriminator Loss: tf.Tensor(0.64312637, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.2472923, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 6628\n",
+ "Discriminator Loss: tf.Tensor(0.66718036, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.37173727, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 6629\n",
+ "Discriminator Loss: tf.Tensor(0.9541958, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.7534053, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 6630\n",
+ "Discriminator Loss: tf.Tensor(0.7470572, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.27766648, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 6631\n",
+ "Discriminator Loss: tf.Tensor(0.81632924, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.7863827, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 6632\n",
+ "Discriminator Loss: tf.Tensor(0.55636835, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.5779193, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 6633\n",
+ "Discriminator Loss: tf.Tensor(0.68812394, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.7967613, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 6634\n",
+ "Discriminator Loss: tf.Tensor(0.26191503, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.9737535, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 6635\n",
+ "Discriminator Loss: tf.Tensor(0.87173647, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.3199608, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 6636\n",
+ "Discriminator Loss: tf.Tensor(0.9906268, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.16245042, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 6637\n",
+ "Discriminator Loss: tf.Tensor(2.1686075, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.8599176, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 6638\n",
+ "Discriminator Loss: tf.Tensor(0.7159273, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.34447348, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 6639\n",
+ "Discriminator Loss: tf.Tensor(0.44167924, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.4069772, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 6640\n",
+ "Discriminator Loss: tf.Tensor(0.73247623, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.2984081, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 6641\n",
+ "Discriminator Loss: tf.Tensor(1.2692755, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.405124, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 6642\n",
+ "Discriminator Loss: tf.Tensor(0.9073625, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.20295839, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 6643\n",
+ "Discriminator Loss: tf.Tensor(0.6175972, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.8132042, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 6644\n",
+ "Discriminator Loss: tf.Tensor(0.6002867, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.4797124, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 6645\n",
+ "Discriminator Loss: tf.Tensor(1.4600954, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.4916296, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 6646\n",
+ "Discriminator Loss: tf.Tensor(0.71794134, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.32089064, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 6647\n",
+ "Discriminator Loss: tf.Tensor(0.80426776, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.9177275, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 6648\n",
+ "Discriminator Loss: tf.Tensor(1.0701274, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.2527145, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 6649\n",
+ "Discriminator Loss: tf.Tensor(0.5457462, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.571271, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 6650\n",
+ "Discriminator Loss: tf.Tensor(1.2356848, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.104142435, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 6651\n",
+ "Discriminator Loss: tf.Tensor(0.43581134, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.8971549, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 6652\n",
+ "Discriminator Loss: tf.Tensor(0.87255955, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.472957, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 6653\n",
+ "Discriminator Loss: tf.Tensor(1.1472256, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.1514504, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 6654\n",
+ "Discriminator Loss: tf.Tensor(1.2885598, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.2112381, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 6655\n",
+ "Discriminator Loss: tf.Tensor(0.7293663, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.5622014, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 6656\n",
+ "Discriminator Loss: tf.Tensor(1.1863446, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.04691304, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 6657\n",
+ "Discriminator Loss: tf.Tensor(0.5649694, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.4358206, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 6658\n",
+ "Discriminator Loss: tf.Tensor(1.4111558, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.23608442, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 6659\n",
+ "Discriminator Loss: tf.Tensor(0.74354535, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.4369097, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 6660\n",
+ "Discriminator Loss: tf.Tensor(1.060549, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.09124777, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 6661\n",
+ "Discriminator Loss: tf.Tensor(0.47447646, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.5674311, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 6662\n",
+ "Discriminator Loss: tf.Tensor(0.80657953, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.39425302, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 6663\n",
+ "Discriminator Loss: tf.Tensor(0.67375964, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.6736737, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 6664\n",
+ "Discriminator Loss: tf.Tensor(0.6117052, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.71595, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 6665\n",
+ "Discriminator Loss: tf.Tensor(1.2289066, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.416691, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 6666\n",
+ "Discriminator Loss: tf.Tensor(0.9508023, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.14679651, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 6667\n",
+ "Discriminator Loss: tf.Tensor(0.6070902, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.6976634, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 6668\n",
+ "Discriminator Loss: tf.Tensor(0.82234436, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.25559422, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 6669\n",
+ "Discriminator Loss: tf.Tensor(0.80193555, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.5456452, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 6670\n",
+ "Discriminator Loss: tf.Tensor(0.8766562, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.21571095, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 6671\n",
+ "Discriminator Loss: tf.Tensor(0.9403229, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.0000613, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 6672\n",
+ "Discriminator Loss: tf.Tensor(0.9259639, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.21068375, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 6673\n",
+ "Discriminator Loss: tf.Tensor(0.5464488, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.5922956, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 6674\n",
+ "Discriminator Loss: tf.Tensor(1.0885367, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.0028102065, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 6675\n",
+ "Discriminator Loss: tf.Tensor(0.42914072, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.0809798, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 6676\n",
+ "Discriminator Loss: tf.Tensor(0.10560973, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.9714593, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 6677\n",
+ "Discriminator Loss: tf.Tensor(0.4524374, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(3.0705721, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 6678\n",
+ "Discriminator Loss: tf.Tensor(0.20765936, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.1654038, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 6679\n",
+ "Discriminator Loss: tf.Tensor(1.3706825, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.11002005, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 6680\n",
+ "Discriminator Loss: tf.Tensor(0.80395967, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(3.7215223, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 6681\n",
+ "Discriminator Loss: tf.Tensor(0.1359469, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.2148246, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 6682\n",
+ "Discriminator Loss: tf.Tensor(0.45282203, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.7068339, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 6683\n",
+ "Discriminator Loss: tf.Tensor(0.45109946, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.9070578, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 6684\n",
+ "Discriminator Loss: tf.Tensor(0.38341218, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.6234655, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 6685\n",
+ "Discriminator Loss: tf.Tensor(0.88780916, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.20610225, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 6686\n",
+ "Discriminator Loss: tf.Tensor(1.6474031, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(3.0288544, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 6687\n",
+ "Discriminator Loss: tf.Tensor(0.44414842, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.63640064, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 6688\n",
+ "Discriminator Loss: tf.Tensor(0.6176484, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.1024806, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 6689\n",
+ "Discriminator Loss: tf.Tensor(1.0643532, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.0309764, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 6690\n",
+ "Discriminator Loss: tf.Tensor(1.6590397, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.392147, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 6691\n",
+ "Discriminator Loss: tf.Tensor(1.0892485, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.09184334, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 6692\n",
+ "Discriminator Loss: tf.Tensor(0.9754411, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.6314903, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 6693\n",
+ "Discriminator Loss: tf.Tensor(1.1745129, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.04809332, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 6694\n",
+ "Discriminator Loss: tf.Tensor(0.6188201, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.2790318, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 6695\n",
+ "Discriminator Loss: tf.Tensor(1.0619628, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.11301937, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 6696\n",
+ "Discriminator Loss: tf.Tensor(1.05663, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.4447538, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 6697\n",
+ "Discriminator Loss: tf.Tensor(1.5433973, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.44922295, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 6698\n",
+ "Discriminator Loss: tf.Tensor(0.6357964, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.9792176, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 6699\n",
+ "Discriminator Loss: tf.Tensor(0.976743, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.7894274, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 6700\n",
+ "Discriminator Loss: tf.Tensor(1.261448, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.087886356, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 6701\n",
+ "Discriminator Loss: tf.Tensor(0.38950092, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.1914276, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 6702\n",
+ "Discriminator Loss: tf.Tensor(1.1503941, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.12414188, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 6703\n",
+ "Discriminator Loss: tf.Tensor(1.2980701, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.9361572, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 6704\n",
+ "Discriminator Loss: tf.Tensor(0.9915868, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.1771731, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 6705\n",
+ "Discriminator Loss: tf.Tensor(0.5370576, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.6488534, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 6706\n",
+ "Discriminator Loss: tf.Tensor(1.0993509, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.31271276, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 6707\n",
+ "Discriminator Loss: tf.Tensor(0.45982718, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.6770301, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 6708\n",
+ "Discriminator Loss: tf.Tensor(1.5660927, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.41468087, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 6709\n",
+ "Discriminator Loss: tf.Tensor(0.62293535, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.4487296, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 6710\n",
+ "Discriminator Loss: tf.Tensor(1.6740186, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.42620897, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 6711\n",
+ "Discriminator Loss: tf.Tensor(0.6690006, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.4636256, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 6712\n",
+ "Discriminator Loss: tf.Tensor(1.1929059, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.07532895, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 6713\n",
+ "Discriminator Loss: tf.Tensor(0.6436366, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.7141876, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 6714\n",
+ "Discriminator Loss: tf.Tensor(0.8926147, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.29561427, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 6715\n",
+ "Discriminator Loss: tf.Tensor(1.2056339, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.3012574, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 6716\n",
+ "Discriminator Loss: tf.Tensor(0.7676016, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.490527, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 6717\n",
+ "Discriminator Loss: tf.Tensor(0.91464424, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.7267075, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 6718\n",
+ "Discriminator Loss: tf.Tensor(1.2847453, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.22167909, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 6719\n",
+ "Discriminator Loss: tf.Tensor(1.0513344, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.6915327, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 6720\n",
+ "Discriminator Loss: tf.Tensor(0.9305524, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.13959646, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 6721\n",
+ "Discriminator Loss: tf.Tensor(0.5513277, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.7742583, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 6722\n",
+ "Discriminator Loss: tf.Tensor(0.7102173, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.34846818, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 6723\n",
+ "Discriminator Loss: tf.Tensor(0.5837159, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.2817698, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 6724\n",
+ "Discriminator Loss: tf.Tensor(0.6949494, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.55051804, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 6725\n",
+ "Discriminator Loss: tf.Tensor(1.1543206, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.423771, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 6726\n",
+ "Discriminator Loss: tf.Tensor(0.6351521, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.51456887, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 6727\n",
+ "Discriminator Loss: tf.Tensor(0.64497805, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.8505377, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 6728\n",
+ "Discriminator Loss: tf.Tensor(0.7903355, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.29665002, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 6729\n",
+ "Discriminator Loss: tf.Tensor(0.97840524, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.168004, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 6730\n",
+ "Discriminator Loss: tf.Tensor(0.5669901, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.46000686, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 6731\n",
+ "Discriminator Loss: tf.Tensor(0.6036378, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.4327898, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 6732\n",
+ "Discriminator Loss: tf.Tensor(0.2500895, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.85185534, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 6733\n",
+ "Discriminator Loss: tf.Tensor(0.5117537, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(3.139087, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 6734\n",
+ "Discriminator Loss: tf.Tensor(0.33020625, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.87888044, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 6735\n",
+ "Discriminator Loss: tf.Tensor(1.3104411, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(3.9796493, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 6736\n",
+ "Discriminator Loss: tf.Tensor(0.44771245, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.5902275, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 6737\n",
+ "Discriminator Loss: tf.Tensor(0.71724176, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(3.0873938, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 6738\n",
+ "Discriminator Loss: tf.Tensor(0.036852375, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.0724763, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 6739\n",
+ "Discriminator Loss: tf.Tensor(1.9244316, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.82810956, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 6740\n",
+ "Discriminator Loss: tf.Tensor(5.1916156, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(3.119709, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 6741\n",
+ "Discriminator Loss: tf.Tensor(1.6906135, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.5175084, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 6742\n",
+ "Discriminator Loss: tf.Tensor(1.4394073, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.9294159, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 6743\n",
+ "Discriminator Loss: tf.Tensor(1.3427545, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.0799276, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 6744\n",
+ "Discriminator Loss: tf.Tensor(1.1765084, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.1936651, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 6745\n",
+ "Discriminator Loss: tf.Tensor(1.0313939, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.77700394, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 6746\n",
+ "Discriminator Loss: tf.Tensor(1.079531, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.0758972, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 6747\n",
+ "Discriminator Loss: tf.Tensor(1.5075461, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.30034867, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 6748\n",
+ "Discriminator Loss: tf.Tensor(1.1337758, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.67487913, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 6749\n",
+ "Discriminator Loss: tf.Tensor(1.0509341, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.8731726, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 6750\n",
+ "Discriminator Loss: tf.Tensor(0.98244834, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.1657097, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 6751\n",
+ "Discriminator Loss: tf.Tensor(1.4307115, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.22970557, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 6752\n",
+ "Discriminator Loss: tf.Tensor(0.87212175, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.7498184, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 6753\n",
+ "Discriminator Loss: tf.Tensor(1.2251186, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.3237122, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 6754\n",
+ "Discriminator Loss: tf.Tensor(1.8986166, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.6901102, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 6755\n",
+ "Discriminator Loss: tf.Tensor(1.2213247, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.3169, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 6756\n",
+ "Discriminator Loss: tf.Tensor(0.89592916, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.8002109, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 6757\n",
+ "Discriminator Loss: tf.Tensor(1.1936119, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.5745579, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 6758\n",
+ "Discriminator Loss: tf.Tensor(1.7816142, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.47583985, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 6759\n",
+ "Discriminator Loss: tf.Tensor(0.5894948, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.96926, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 6760\n",
+ "Discriminator Loss: tf.Tensor(0.5347527, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.7463943, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 6761\n",
+ "Discriminator Loss: tf.Tensor(1.0395628, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.06452298, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 6762\n",
+ "Discriminator Loss: tf.Tensor(0.9994656, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.5740528, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 6763\n",
+ "Discriminator Loss: tf.Tensor(1.4443151, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.28313467, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 6764\n",
+ "Discriminator Loss: tf.Tensor(0.6799637, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.9572217, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 6765\n",
+ "Discriminator Loss: tf.Tensor(0.8305539, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.8740646, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 6766\n",
+ "Discriminator Loss: tf.Tensor(0.90824634, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.32037085, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 6767\n",
+ "Discriminator Loss: tf.Tensor(0.71088254, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.437586, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 6768\n",
+ "Discriminator Loss: tf.Tensor(0.7721771, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.645364, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 6769\n",
+ "Discriminator Loss: tf.Tensor(0.48939848, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.197879, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 6770\n",
+ "Discriminator Loss: tf.Tensor(0.5855534, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.064519, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 6771\n",
+ "Discriminator Loss: tf.Tensor(1.4522306, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.3727435, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 6772\n",
+ "Discriminator Loss: tf.Tensor(0.31002933, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.1768633, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 6773\n",
+ "Discriminator Loss: tf.Tensor(0.7280375, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.37908697, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 6774\n",
+ "Discriminator Loss: tf.Tensor(1.0873656, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.3724291, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 6775\n",
+ "Discriminator Loss: tf.Tensor(1.0142623, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.042875003, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 6776\n",
+ "Discriminator Loss: tf.Tensor(0.7347611, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.4098591, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 6777\n",
+ "Discriminator Loss: tf.Tensor(0.69764805, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.44723925, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 6778\n",
+ "Discriminator Loss: tf.Tensor(0.7180476, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.0796325, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 6779\n",
+ "Discriminator Loss: tf.Tensor(1.4462707, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.32112452, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 6780\n",
+ "Discriminator Loss: tf.Tensor(0.8694499, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.8137544, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 6781\n",
+ "Discriminator Loss: tf.Tensor(0.56436133, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.6061948, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 6782\n",
+ "Discriminator Loss: tf.Tensor(0.1567579, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.3642428, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 6783\n",
+ "Discriminator Loss: tf.Tensor(0.6856071, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.2436938, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 6784\n",
+ "Discriminator Loss: tf.Tensor(1.5994496, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.50126404, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 6785\n",
+ "Discriminator Loss: tf.Tensor(0.7370531, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.3721962, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 6786\n",
+ "Discriminator Loss: tf.Tensor(1.8903356, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.51167995, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 6787\n",
+ "Discriminator Loss: tf.Tensor(0.47142994, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.0658455, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 6788\n",
+ "Discriminator Loss: tf.Tensor(1.5934694, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.08304708, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 6789\n",
+ "Discriminator Loss: tf.Tensor(0.7240484, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.2481871, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 6790\n",
+ "Discriminator Loss: tf.Tensor(1.6282895, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.5401154, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 6791\n",
+ "Discriminator Loss: tf.Tensor(0.7505193, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.9585317, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 6792\n",
+ "Discriminator Loss: tf.Tensor(0.4102632, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.9055167, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 6793\n",
+ "Discriminator Loss: tf.Tensor(1.159487, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.112318456, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 6794\n",
+ "Discriminator Loss: tf.Tensor(1.0812571, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.9421654, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 6795\n",
+ "Discriminator Loss: tf.Tensor(0.9263711, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.14112513, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 6796\n",
+ "Discriminator Loss: tf.Tensor(0.9930564, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.0263839, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 6797\n",
+ "Discriminator Loss: tf.Tensor(0.76620907, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.30722898, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 6798\n",
+ "Discriminator Loss: tf.Tensor(0.9339067, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.8624545, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 6799\n",
+ "Discriminator Loss: tf.Tensor(0.82066905, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.23047133, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 6800\n",
+ "Discriminator Loss: tf.Tensor(0.5662583, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.8774089, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 6801\n",
+ "Discriminator Loss: tf.Tensor(0.31003648, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.9515941, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 6802\n",
+ "Discriminator Loss: tf.Tensor(0.56567025, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.454237, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 6803\n",
+ "Discriminator Loss: tf.Tensor(0.3233928, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.8498618, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 6804\n",
+ "Discriminator Loss: tf.Tensor(2.3359127, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(3.2291403, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 6805\n",
+ "Discriminator Loss: tf.Tensor(1.3636011, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.16417748, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 6806\n",
+ "Discriminator Loss: tf.Tensor(0.65807307, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.59645826, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 6807\n",
+ "Discriminator Loss: tf.Tensor(1.4277567, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(3.2402961, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 6808\n",
+ "Discriminator Loss: tf.Tensor(0.54497427, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.49376643, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 6809\n",
+ "Discriminator Loss: tf.Tensor(0.38104963, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.6967735, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 6810\n",
+ "Discriminator Loss: tf.Tensor(0.06641847, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.1675876, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 6811\n",
+ "Discriminator Loss: tf.Tensor(64.58829, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.65387994, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 6812\n",
+ "Discriminator Loss: tf.Tensor(29.160322, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.36306262, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 6813\n",
+ "Discriminator Loss: tf.Tensor(6.727868, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.04882446, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 6814\n",
+ "Discriminator Loss: tf.Tensor(3.4495444, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.035999347, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 6815\n",
+ "Discriminator Loss: tf.Tensor(2.732929, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.021961277, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 6816\n",
+ "Discriminator Loss: tf.Tensor(2.601216, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.031742003, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 6817\n",
+ "Discriminator Loss: tf.Tensor(2.4919834, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.03976256, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 6818\n",
+ "Discriminator Loss: tf.Tensor(2.3322768, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.036742896, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 6819\n",
+ "Discriminator Loss: tf.Tensor(2.3047366, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.028217405, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 6820\n",
+ "Discriminator Loss: tf.Tensor(2.184196, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.03129951, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 6821\n",
+ "Discriminator Loss: tf.Tensor(2.153997, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.043224026, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 6822\n",
+ "Discriminator Loss: tf.Tensor(2.160315, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.046182733, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 6823\n",
+ "Discriminator Loss: tf.Tensor(2.1330614, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.046095178, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 6824\n",
+ "Discriminator Loss: tf.Tensor(2.070149, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.047074813, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 6825\n",
+ "Discriminator Loss: tf.Tensor(2.0429063, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.04563426, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 6826\n",
+ "Discriminator Loss: tf.Tensor(2.077055, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.04827143, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 6827\n",
+ "Discriminator Loss: tf.Tensor(2.0248547, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.049019467, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 6828\n",
+ "Discriminator Loss: tf.Tensor(1.9872423, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.05397133, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 6829\n",
+ "Discriminator Loss: tf.Tensor(1.9790632, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.059191924, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 6830\n",
+ "Discriminator Loss: tf.Tensor(1.9577988, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.062961064, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 6831\n",
+ "Discriminator Loss: tf.Tensor(1.9717091, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.07043782, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 6832\n",
+ "Discriminator Loss: tf.Tensor(1.9592091, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.07174287, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 6833\n",
+ "Discriminator Loss: tf.Tensor(1.9475487, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.071979254, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 6834\n",
+ "Discriminator Loss: tf.Tensor(1.9242526, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.07761755, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 6835\n",
+ "Discriminator Loss: tf.Tensor(1.9267286, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.08282525, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 6836\n",
+ "Discriminator Loss: tf.Tensor(1.9068183, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.08487993, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 6837\n",
+ "Discriminator Loss: tf.Tensor(1.890841, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.08942159, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 6838\n",
+ "Discriminator Loss: tf.Tensor(1.8853322, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.08815634, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 6839\n",
+ "Discriminator Loss: tf.Tensor(1.9196024, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.096288614, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 6840\n",
+ "Discriminator Loss: tf.Tensor(1.8684182, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.10984081, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 6841\n",
+ "Discriminator Loss: tf.Tensor(1.8749666, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.12801538, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 6842\n",
+ "Discriminator Loss: tf.Tensor(1.8209444, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.14401333, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 6843\n",
+ "Discriminator Loss: tf.Tensor(1.7558259, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.15869696, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 6844\n",
+ "Discriminator Loss: tf.Tensor(1.8286597, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.16659534, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 6845\n",
+ "Discriminator Loss: tf.Tensor(1.7661115, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.10697941, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 6846\n",
+ "Discriminator Loss: tf.Tensor(1.9848521, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.059939396, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 6847\n",
+ "Discriminator Loss: tf.Tensor(1.915457, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.16205834, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 6848\n",
+ "Discriminator Loss: tf.Tensor(1.8520024, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.20025128, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 6849\n",
+ "Discriminator Loss: tf.Tensor(1.900044, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.24473977, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 6850\n",
+ "Discriminator Loss: tf.Tensor(1.7319446, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.3126998, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 6851\n",
+ "Discriminator Loss: tf.Tensor(1.6095393, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.61107475, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 6852\n",
+ "Discriminator Loss: tf.Tensor(1.5914323, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.79310894, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 6853\n",
+ "Discriminator Loss: tf.Tensor(1.7365369, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.7843182, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 6854\n",
+ "Discriminator Loss: tf.Tensor(1.7899457, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.6402374, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 6855\n",
+ "Discriminator Loss: tf.Tensor(1.7623607, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.4818778, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 6856\n",
+ "Discriminator Loss: tf.Tensor(1.8309301, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.41667473, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 6857\n",
+ "Discriminator Loss: tf.Tensor(1.9385482, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.32943752, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 6858\n",
+ "Discriminator Loss: tf.Tensor(1.5074086, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.78439385, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 6859\n",
+ "Discriminator Loss: tf.Tensor(1.6999366, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.3515881, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 6860\n",
+ "Discriminator Loss: tf.Tensor(2.0550902, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.97461027, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 6861\n",
+ "Discriminator Loss: tf.Tensor(1.7805437, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.059117038, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 6862\n",
+ "Discriminator Loss: tf.Tensor(1.5534317, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.006486598, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 6863\n",
+ "Discriminator Loss: tf.Tensor(1.4656173, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.023978258, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 6864\n",
+ "Discriminator Loss: tf.Tensor(1.4643898, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.056432765, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 6865\n",
+ "Discriminator Loss: tf.Tensor(1.3500166, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.46058527, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 6866\n",
+ "Discriminator Loss: tf.Tensor(1.5017493, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.21525645, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 6867\n",
+ "Discriminator Loss: tf.Tensor(1.4451483, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.7620898, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 6868\n",
+ "Discriminator Loss: tf.Tensor(1.3496921, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.77421975, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 6869\n",
+ "Discriminator Loss: tf.Tensor(1.6794808, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.7505239, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 6870\n",
+ "Discriminator Loss: tf.Tensor(1.6911019, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.60443836, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 6871\n",
+ "Discriminator Loss: tf.Tensor(1.3668005, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.33896855, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 6872\n",
+ "Discriminator Loss: tf.Tensor(0.968086, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.53860164, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 6873\n",
+ "Discriminator Loss: tf.Tensor(0.8429041, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.94903475, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 6874\n",
+ "Discriminator Loss: tf.Tensor(1.2378991, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.4171472, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 6875\n",
+ "Discriminator Loss: tf.Tensor(1.344589, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.3506045, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 6876\n",
+ "Discriminator Loss: tf.Tensor(1.983662, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.93381786, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 6877\n",
+ "Discriminator Loss: tf.Tensor(0.9745095, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.584433, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 6878\n",
+ "Discriminator Loss: tf.Tensor(0.5975134, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.4738573, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 6879\n",
+ "Discriminator Loss: tf.Tensor(1.2557489, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.14686392, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 6880\n",
+ "Discriminator Loss: tf.Tensor(0.6701505, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.0669206, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 6881\n",
+ "Discriminator Loss: tf.Tensor(0.91056305, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.30215988, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 6882\n",
+ "Discriminator Loss: tf.Tensor(0.51419586, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.3814979, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 6883\n",
+ "Discriminator Loss: tf.Tensor(0.57599247, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.48930952, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 6884\n",
+ "Discriminator Loss: tf.Tensor(1.0739073, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.793952, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 6885\n",
+ "Discriminator Loss: tf.Tensor(0.77532905, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.3038766, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 6886\n",
+ "Discriminator Loss: tf.Tensor(0.5838368, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.6663545, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 6887\n",
+ "Discriminator Loss: tf.Tensor(1.0152918, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.014621814, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 6888\n",
+ "Discriminator Loss: tf.Tensor(0.9028722, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.0076462, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 6889\n",
+ "Discriminator Loss: tf.Tensor(0.53350276, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.6526399, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 6890\n",
+ "Discriminator Loss: tf.Tensor(1.8524414, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(3.3537493, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 6891\n",
+ "Discriminator Loss: tf.Tensor(0.68585217, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.5322514, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 6892\n",
+ "Discriminator Loss: tf.Tensor(0.64691126, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.602469, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 6893\n",
+ "Discriminator Loss: tf.Tensor(0.9310759, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.11238533, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 6894\n",
+ "Discriminator Loss: tf.Tensor(0.8651643, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.6482458, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 6895\n",
+ "Discriminator Loss: tf.Tensor(0.26344502, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.7488858, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 6896\n",
+ "Discriminator Loss: tf.Tensor(0.7766765, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.3224986, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 6897\n",
+ "Discriminator Loss: tf.Tensor(0.3910026, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.6277296, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 6898\n",
+ "Discriminator Loss: tf.Tensor(1.3397734, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.3727858, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 6899\n",
+ "Discriminator Loss: tf.Tensor(0.16175768, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.8792448, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 6900\n",
+ "Discriminator Loss: tf.Tensor(1.0710405, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(3.0564861, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 6901\n",
+ "Discriminator Loss: tf.Tensor(0.08775006, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.1689885, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 6902\n",
+ "Discriminator Loss: tf.Tensor(1.004426, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.14592288, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 6903\n",
+ "Discriminator Loss: tf.Tensor(0.6480114, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.7262137, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 6904\n",
+ "Discriminator Loss: tf.Tensor(0.25177628, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.0230623, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 6905\n",
+ "Discriminator Loss: tf.Tensor(1.217332, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.68164563, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 6906\n",
+ "Discriminator Loss: tf.Tensor(1.3465015, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.1406085, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 6907\n",
+ "Discriminator Loss: tf.Tensor(1.6004964, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.5723483, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 6908\n",
+ "Discriminator Loss: tf.Tensor(0.7382953, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.99007696, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 6909\n",
+ "Discriminator Loss: tf.Tensor(0.7663108, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.483449, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 6910\n",
+ "Discriminator Loss: tf.Tensor(1.4026594, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.35934064, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 6911\n",
+ "Discriminator Loss: tf.Tensor(0.42414957, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.3887262, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 6912\n",
+ "Discriminator Loss: tf.Tensor(0.79217064, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.27388594, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 6913\n",
+ "Discriminator Loss: tf.Tensor(1.2229337, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.55041, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 6914\n",
+ "Discriminator Loss: tf.Tensor(1.0250366, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.12372426, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 6915\n",
+ "Discriminator Loss: tf.Tensor(0.5735487, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.524455, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 6916\n",
+ "Discriminator Loss: tf.Tensor(0.86946326, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.3309408, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 6917\n",
+ "Discriminator Loss: tf.Tensor(0.71367216, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.3207911, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 6918\n",
+ "Discriminator Loss: tf.Tensor(1.9127872, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.8275935, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 6919\n",
+ "Discriminator Loss: tf.Tensor(0.8749066, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.4857363, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 6920\n",
+ "Discriminator Loss: tf.Tensor(1.0150377, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.08438497, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 6921\n",
+ "Discriminator Loss: tf.Tensor(0.76569307, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.1510947, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 6922\n",
+ "Discriminator Loss: tf.Tensor(0.81129265, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.30087408, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 6923\n",
+ "Discriminator Loss: tf.Tensor(0.75894356, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.373431, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 6924\n",
+ "Discriminator Loss: tf.Tensor(0.6189814, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.63986987, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 6925\n",
+ "Discriminator Loss: tf.Tensor(0.71167076, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.321719, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 6926\n",
+ "Discriminator Loss: tf.Tensor(1.1461082, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.105259456, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 6927\n",
+ "Discriminator Loss: tf.Tensor(1.016433, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.789381, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 6928\n",
+ "Discriminator Loss: tf.Tensor(1.0717065, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.062835604, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 6929\n",
+ "Discriminator Loss: tf.Tensor(0.39092943, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.2944326, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 6930\n",
+ "Discriminator Loss: tf.Tensor(0.83862823, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.19146605, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 6931\n",
+ "Discriminator Loss: tf.Tensor(0.7795366, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.9787432, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 6932\n",
+ "Discriminator Loss: tf.Tensor(0.6516131, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.69633436, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 6933\n",
+ "Discriminator Loss: tf.Tensor(0.7052324, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.9380089, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 6934\n",
+ "Discriminator Loss: tf.Tensor(0.42046028, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.7196216, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 6935\n",
+ "Discriminator Loss: tf.Tensor(1.5670656, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.4519742, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 6936\n",
+ "Discriminator Loss: tf.Tensor(0.7515595, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.36590895, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 6937\n",
+ "Discriminator Loss: tf.Tensor(0.74850464, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.6533815, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 6938\n",
+ "Discriminator Loss: tf.Tensor(0.79024947, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.33144602, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 6939\n",
+ "Discriminator Loss: tf.Tensor(0.4515042, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.0799463, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 6940\n",
+ "Discriminator Loss: tf.Tensor(0.50930864, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.1943527, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 6941\n",
+ "Discriminator Loss: tf.Tensor(1.6422154, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.47389662, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 6942\n",
+ "Discriminator Loss: tf.Tensor(0.8404703, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.4244285, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 6943\n",
+ "Discriminator Loss: tf.Tensor(1.2078196, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.16194163, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 6944\n",
+ "Discriminator Loss: tf.Tensor(0.47049576, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.5016242, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 6945\n",
+ "Discriminator Loss: tf.Tensor(0.9077718, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.41363204, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 6946\n",
+ "Discriminator Loss: tf.Tensor(0.69139296, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.7219113, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 6947\n",
+ "Discriminator Loss: tf.Tensor(2.2707179, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-1.1756593, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 6948\n",
+ "Discriminator Loss: tf.Tensor(1.0363055, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.9477909, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 6949\n",
+ "Discriminator Loss: tf.Tensor(0.81004286, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.6966028, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 6950\n",
+ "Discriminator Loss: tf.Tensor(1.6753668, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.63522947, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 6951\n",
+ "Discriminator Loss: tf.Tensor(0.47996587, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.4002861, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 6952\n",
+ "Discriminator Loss: tf.Tensor(1.687113, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.595059, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 6953\n",
+ "Discriminator Loss: tf.Tensor(0.9071139, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.5567697, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 6954\n",
+ "Discriminator Loss: tf.Tensor(1.8402619, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.8246668, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 6955\n",
+ "Discriminator Loss: tf.Tensor(0.6477397, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.3859177, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 6956\n",
+ "Discriminator Loss: tf.Tensor(0.9542843, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.11203293, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 6957\n",
+ "Discriminator Loss: tf.Tensor(0.86857367, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.1303785, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 6958\n",
+ "Discriminator Loss: tf.Tensor(1.4487143, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.34791294, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 6959\n",
+ "Discriminator Loss: tf.Tensor(0.725557, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.2386088, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 6960\n",
+ "Discriminator Loss: tf.Tensor(1.0746794, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.024064109, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 6961\n",
+ "Discriminator Loss: tf.Tensor(0.62929785, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.6714983, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 6962\n",
+ "Discriminator Loss: tf.Tensor(0.96011436, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.07024736, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 6963\n",
+ "Discriminator Loss: tf.Tensor(0.87171125, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.964712, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 6964\n",
+ "Discriminator Loss: tf.Tensor(0.5662967, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.49745616, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 6965\n",
+ "Discriminator Loss: tf.Tensor(0.5760615, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.2031581, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 6966\n",
+ "Discriminator Loss: tf.Tensor(0.3075148, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.7524781, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 6967\n",
+ "Discriminator Loss: tf.Tensor(0.9375459, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.7952564, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 6968\n",
+ "Discriminator Loss: tf.Tensor(0.8123028, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.23689365, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 6969\n",
+ "Discriminator Loss: tf.Tensor(0.6066239, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.3253543, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 6970\n",
+ "Discriminator Loss: tf.Tensor(0.47807968, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.5779478, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 6971\n",
+ "Discriminator Loss: tf.Tensor(1.2015353, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(3.0011559, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 6972\n",
+ "Discriminator Loss: tf.Tensor(0.85545486, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.4235588, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 6973\n",
+ "Discriminator Loss: tf.Tensor(0.77352935, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.7178779, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 6974\n",
+ "Discriminator Loss: tf.Tensor(1.4055605, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.36457345, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 6975\n",
+ "Discriminator Loss: tf.Tensor(0.7064266, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.1386263, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 6976\n",
+ "Discriminator Loss: tf.Tensor(0.8085386, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.28822374, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 6977\n",
+ "Discriminator Loss: tf.Tensor(1.0704063, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.2347865, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 6978\n",
+ "Discriminator Loss: tf.Tensor(1.0591693, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.013849035, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 6979\n",
+ "Discriminator Loss: tf.Tensor(0.6889328, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.079177, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 6980\n",
+ "Discriminator Loss: tf.Tensor(0.29610828, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.75351477, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 6981\n",
+ "Discriminator Loss: tf.Tensor(1.3564855, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.8617852, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 6982\n",
+ "Discriminator Loss: tf.Tensor(1.1335185, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.04909576, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 6983\n",
+ "Discriminator Loss: tf.Tensor(0.43662173, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.716095, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 6984\n",
+ "Discriminator Loss: tf.Tensor(0.50137836, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.53247875, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 6985\n",
+ "Discriminator Loss: tf.Tensor(0.85761213, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.8388646, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 6986\n",
+ "Discriminator Loss: tf.Tensor(0.32434717, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.76438135, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 6987\n",
+ "Discriminator Loss: tf.Tensor(1.2178322, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.5458586, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 6988\n",
+ "Discriminator Loss: tf.Tensor(0.62313265, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.4964211, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 6989\n",
+ "Discriminator Loss: tf.Tensor(1.1296186, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.3106174, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 6990\n",
+ "Discriminator Loss: tf.Tensor(0.74990225, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.4337312, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 6991\n",
+ "Discriminator Loss: tf.Tensor(0.6578046, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.2218509, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 6992\n",
+ "Discriminator Loss: tf.Tensor(0.32053393, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.7724077, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 6993\n",
+ "Discriminator Loss: tf.Tensor(1.0263989, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.8238983, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 6994\n",
+ "Discriminator Loss: tf.Tensor(0.13169695, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.9211323, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 6995\n",
+ "Discriminator Loss: tf.Tensor(1.3966355, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.9564564, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 6996\n",
+ "Discriminator Loss: tf.Tensor(0.7139225, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.46758905, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 6997\n",
+ "Discriminator Loss: tf.Tensor(0.9903226, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.1882906, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 6998\n",
+ "Discriminator Loss: tf.Tensor(0.3259569, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.711477, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 6999\n",
+ "Discriminator Loss: tf.Tensor(0.7195771, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.7050114, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 7000\n",
+ "Discriminator Loss: tf.Tensor(0.49040046, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.8820045, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 7001\n",
+ "Discriminator Loss: tf.Tensor(0.957304, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.724326, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 7002\n",
+ "Discriminator Loss: tf.Tensor(1.2050161, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.26980415, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 7003\n",
+ "Discriminator Loss: tf.Tensor(0.77557707, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.9815598, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 7004\n",
+ "Discriminator Loss: tf.Tensor(0.8156806, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.23065984, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 7005\n",
+ "Discriminator Loss: tf.Tensor(1.0220972, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.9630712, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 7006\n",
+ "Discriminator Loss: tf.Tensor(1.3582174, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.25123158, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 7007\n",
+ "Discriminator Loss: tf.Tensor(1.2192001, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.6384152, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 7008\n",
+ "Discriminator Loss: tf.Tensor(1.3157064, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.15630521, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 7009\n",
+ "Discriminator Loss: tf.Tensor(0.7227287, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.29049, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 7010\n",
+ "Discriminator Loss: tf.Tensor(1.3906249, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.35989165, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 7011\n",
+ "Discriminator Loss: tf.Tensor(0.59168774, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.3149487, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 7012\n",
+ "Discriminator Loss: tf.Tensor(0.83650684, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.32647768, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 7013\n",
+ "Discriminator Loss: tf.Tensor(0.585215, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.9026238, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 7014\n",
+ "Discriminator Loss: tf.Tensor(0.36994898, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.86056423, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 7015\n",
+ "Discriminator Loss: tf.Tensor(0.53034526, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.5994022, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 7016\n",
+ "Discriminator Loss: tf.Tensor(1.011819, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.114006974, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 7017\n",
+ "Discriminator Loss: tf.Tensor(1.6792574, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(3.5732844, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 7018\n",
+ "Discriminator Loss: tf.Tensor(0.27948856, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.0180007, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 7019\n",
+ "Discriminator Loss: tf.Tensor(0.8357224, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.42289343, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 7020\n",
+ "Discriminator Loss: tf.Tensor(0.51130116, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.1424286, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 7021\n",
+ "Discriminator Loss: tf.Tensor(0.6848886, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.49734983, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 7022\n",
+ "Discriminator Loss: tf.Tensor(1.398898, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.5337975, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 7023\n",
+ "Discriminator Loss: tf.Tensor(0.53250724, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.6336283, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 7024\n",
+ "Discriminator Loss: tf.Tensor(0.7313152, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.124553, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 7025\n",
+ "Discriminator Loss: tf.Tensor(0.42165995, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.8136019, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 7026\n",
+ "Discriminator Loss: tf.Tensor(1.1786761, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.6473026, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 7027\n",
+ "Discriminator Loss: tf.Tensor(0.34830448, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.80971223, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 7028\n",
+ "Discriminator Loss: tf.Tensor(0.79309225, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.8559895, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 7029\n",
+ "Discriminator Loss: tf.Tensor(0.26595604, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.3396245, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 7030\n",
+ "Discriminator Loss: tf.Tensor(1.5050206, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.38565525, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 7031\n",
+ "Discriminator Loss: tf.Tensor(0.7599416, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.2922137, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 7032\n",
+ "Discriminator Loss: tf.Tensor(0.4057545, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.64024955, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 7033\n",
+ "Discriminator Loss: tf.Tensor(0.58477855, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.4212658, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 7034\n",
+ "Discriminator Loss: tf.Tensor(0.18731403, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.88944703, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 7035\n",
+ "Discriminator Loss: tf.Tensor(0.65103745, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.555892, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 7036\n",
+ "Discriminator Loss: tf.Tensor(1.0402755, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.3134454, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 7037\n",
+ "Discriminator Loss: tf.Tensor(0.6841992, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.7918221, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 7038\n",
+ "Discriminator Loss: tf.Tensor(1.1721432, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.13724117, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 7039\n",
+ "Discriminator Loss: tf.Tensor(1.5059514, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.9267437, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 7040\n",
+ "Discriminator Loss: tf.Tensor(0.63501203, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.54699236, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 7041\n",
+ "Discriminator Loss: tf.Tensor(0.8721875, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.0875862, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 7042\n",
+ "Discriminator Loss: tf.Tensor(1.2647502, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.059845965, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 7043\n",
+ "Discriminator Loss: tf.Tensor(0.8580028, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.586995, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 7044\n",
+ "Discriminator Loss: tf.Tensor(0.41318262, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.64982814, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 7045\n",
+ "Discriminator Loss: tf.Tensor(0.7111733, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.9116402, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 7046\n",
+ "Discriminator Loss: tf.Tensor(0.6447139, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.4970545, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 7047\n",
+ "Discriminator Loss: tf.Tensor(1.4916683, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(3.1358976, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 7048\n",
+ "Discriminator Loss: tf.Tensor(0.9953542, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.10079914, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 7049\n",
+ "Discriminator Loss: tf.Tensor(0.6298754, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.1095743, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 7050\n",
+ "Discriminator Loss: tf.Tensor(1.0710304, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.04828387, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 7051\n",
+ "Discriminator Loss: tf.Tensor(1.3247515, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.3623378, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 7052\n",
+ "Discriminator Loss: tf.Tensor(0.95047265, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.15069629, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 7053\n",
+ "Discriminator Loss: tf.Tensor(0.8389989, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.7387267, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 7054\n",
+ "Discriminator Loss: tf.Tensor(1.0105035, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.04361478, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 7055\n",
+ "Discriminator Loss: tf.Tensor(0.99967146, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.3201807, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 7056\n",
+ "Discriminator Loss: tf.Tensor(0.5448161, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.64056164, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 7057\n",
+ "Discriminator Loss: tf.Tensor(0.6796946, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.5985043, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 7058\n",
+ "Discriminator Loss: tf.Tensor(0.31840256, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.76537675, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 7059\n",
+ "Discriminator Loss: tf.Tensor(0.5205624, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.6896245, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 7060\n",
+ "Discriminator Loss: tf.Tensor(0.65713763, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.71463233, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 7061\n",
+ "Discriminator Loss: tf.Tensor(1.2703853, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(3.2898142, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 7062\n",
+ "Discriminator Loss: tf.Tensor(1.656364, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.6160235, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 7063\n",
+ "Discriminator Loss: tf.Tensor(0.6769048, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.7156426, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 7064\n",
+ "Discriminator Loss: tf.Tensor(1.0060704, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.22306752, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 7065\n",
+ "Discriminator Loss: tf.Tensor(1.0339609, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.7985653, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 7066\n",
+ "Discriminator Loss: tf.Tensor(0.8072381, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.31910583, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 7067\n",
+ "Discriminator Loss: tf.Tensor(0.67387855, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.0882041, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 7068\n",
+ "Discriminator Loss: tf.Tensor(0.2630112, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.88944525, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 7069\n",
+ "Discriminator Loss: tf.Tensor(0.63364226, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.4348004, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 7070\n",
+ "Discriminator Loss: tf.Tensor(0.26170734, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.0099219, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 7071\n",
+ "Discriminator Loss: tf.Tensor(1.1441463, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.3651894, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 7072\n",
+ "Discriminator Loss: tf.Tensor(2.443836, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-1.3499972, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 7073\n",
+ "Discriminator Loss: tf.Tensor(0.80920106, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.9269969, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 7074\n",
+ "Discriminator Loss: tf.Tensor(0.7791487, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.1658015, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 7075\n",
+ "Discriminator Loss: tf.Tensor(0.63531697, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.7123832, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 7076\n",
+ "Discriminator Loss: tf.Tensor(1.5709145, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.2145782, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 7077\n",
+ "Discriminator Loss: tf.Tensor(1.0318476, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.2689813, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 7078\n",
+ "Discriminator Loss: tf.Tensor(0.6621194, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.2107496, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 7079\n",
+ "Discriminator Loss: tf.Tensor(1.1991411, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.10534497, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 7080\n",
+ "Discriminator Loss: tf.Tensor(0.9680497, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.7522994, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 7081\n",
+ "Discriminator Loss: tf.Tensor(1.1564218, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.011348031, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 7082\n",
+ "Discriminator Loss: tf.Tensor(0.8883053, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.684528, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 7083\n",
+ "Discriminator Loss: tf.Tensor(1.2166581, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.008405309, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 7084\n",
+ "Discriminator Loss: tf.Tensor(0.79320395, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.4110771, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 7085\n",
+ "Discriminator Loss: tf.Tensor(0.9153596, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.40137938, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 7086\n",
+ "Discriminator Loss: tf.Tensor(0.6161529, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.7878786, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 7087\n",
+ "Discriminator Loss: tf.Tensor(0.726733, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.4381905, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 7088\n",
+ "Discriminator Loss: tf.Tensor(1.0129298, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.8414059, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 7089\n",
+ "Discriminator Loss: tf.Tensor(0.77874315, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.39530432, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 7090\n",
+ "Discriminator Loss: tf.Tensor(1.0532537, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.869443, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 7091\n",
+ "Discriminator Loss: tf.Tensor(0.9667934, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.13505687, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 7092\n",
+ "Discriminator Loss: tf.Tensor(0.5388363, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.6673933, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 7093\n",
+ "Discriminator Loss: tf.Tensor(1.0888948, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.09050304, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 7094\n",
+ "Discriminator Loss: tf.Tensor(0.38448218, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.9619299, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 7095\n",
+ "Discriminator Loss: tf.Tensor(0.38708735, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.8410432, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 7096\n",
+ "Discriminator Loss: tf.Tensor(1.1349672, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.4072924, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 7097\n",
+ "Discriminator Loss: tf.Tensor(0.5414094, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.6821422, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 7098\n",
+ "Discriminator Loss: tf.Tensor(0.61587507, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.0789716, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 7099\n",
+ "Discriminator Loss: tf.Tensor(0.6534917, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.44281712, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 7100\n",
+ "Discriminator Loss: tf.Tensor(0.6521778, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.1474426, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 7101\n",
+ "Discriminator Loss: tf.Tensor(0.3665826, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.85307217, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 7102\n",
+ "Discriminator Loss: tf.Tensor(0.46704853, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.6186342, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 7103\n",
+ "Discriminator Loss: tf.Tensor(0.22154944, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.3151644, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 7104\n",
+ "Discriminator Loss: tf.Tensor(0.8861991, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.5239257, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 7105\n",
+ "Discriminator Loss: tf.Tensor(0.7207452, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.6613321, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 7106\n",
+ "Discriminator Loss: tf.Tensor(0.21455711, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.1121682, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 7107\n",
+ "Discriminator Loss: tf.Tensor(1.0156057, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.31250164, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 7108\n",
+ "Discriminator Loss: tf.Tensor(0.92109686, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.4773893, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 7109\n",
+ "Discriminator Loss: tf.Tensor(0.609826, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.7139625, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 7110\n",
+ "Discriminator Loss: tf.Tensor(1.5385318, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.3772023, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 7111\n",
+ "Discriminator Loss: tf.Tensor(1.1087065, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.075832985, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 7112\n",
+ "Discriminator Loss: tf.Tensor(0.9001764, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.5540571, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 7113\n",
+ "Discriminator Loss: tf.Tensor(0.954639, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.07985104, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 7114\n",
+ "Discriminator Loss: tf.Tensor(0.20608881, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.746188, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 7115\n",
+ "Discriminator Loss: tf.Tensor(0.57587147, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.384592, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 7116\n",
+ "Discriminator Loss: tf.Tensor(0.9224138, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.2828919, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 7117\n",
+ "Discriminator Loss: tf.Tensor(1.3495545, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.6862938, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 7118\n",
+ "Discriminator Loss: tf.Tensor(1.1559212, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.07511082, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 7119\n",
+ "Discriminator Loss: tf.Tensor(0.9101455, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.5619284, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 7120\n",
+ "Discriminator Loss: tf.Tensor(1.3693959, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.14070688, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 7121\n",
+ "Discriminator Loss: tf.Tensor(0.6473938, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.1671723, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 7122\n",
+ "Discriminator Loss: tf.Tensor(0.9975633, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.11411638, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 7123\n",
+ "Discriminator Loss: tf.Tensor(0.9087298, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.5252362, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 7124\n",
+ "Discriminator Loss: tf.Tensor(0.696295, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.4292555, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 7125\n",
+ "Discriminator Loss: tf.Tensor(0.52070445, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.7412386, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 7126\n",
+ "Discriminator Loss: tf.Tensor(0.44388127, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.7900452, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 7127\n",
+ "Discriminator Loss: tf.Tensor(0.80993474, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.333956, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 7128\n",
+ "Discriminator Loss: tf.Tensor(0.53326386, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.6210688, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 7129\n",
+ "Discriminator Loss: tf.Tensor(0.88203084, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.497658, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 7130\n",
+ "Discriminator Loss: tf.Tensor(0.80536216, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.34434143, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 7131\n",
+ "Discriminator Loss: tf.Tensor(1.0708972, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.2773573, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 7132\n",
+ "Discriminator Loss: tf.Tensor(0.4644341, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.76541406, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 7133\n",
+ "Discriminator Loss: tf.Tensor(0.78256583, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.430242, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 7134\n",
+ "Discriminator Loss: tf.Tensor(0.41092452, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.88188744, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 7135\n",
+ "Discriminator Loss: tf.Tensor(0.6023181, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.1920848, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 7136\n",
+ "Discriminator Loss: tf.Tensor(0.849339, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.4972057, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 7137\n",
+ "Discriminator Loss: tf.Tensor(0.6206174, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.2730358, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 7138\n",
+ "Discriminator Loss: tf.Tensor(0.41810128, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.715992, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 7139\n",
+ "Discriminator Loss: tf.Tensor(0.41903102, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.7849178, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 7140\n",
+ "Discriminator Loss: tf.Tensor(0.26737183, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.0681581, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 7141\n",
+ "Discriminator Loss: tf.Tensor(1.3401546, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.27406302, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 7142\n",
+ "Discriminator Loss: tf.Tensor(0.93131924, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.436786, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 7143\n",
+ "Discriminator Loss: tf.Tensor(0.91213244, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.42338452, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 7144\n",
+ "Discriminator Loss: tf.Tensor(1.3286446, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.4969213, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 7145\n",
+ "Discriminator Loss: tf.Tensor(1.0148348, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.060127985, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 7146\n",
+ "Discriminator Loss: tf.Tensor(0.69147086, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.828384, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 7147\n",
+ "Discriminator Loss: tf.Tensor(0.7461557, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.35580638, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 7148\n",
+ "Discriminator Loss: tf.Tensor(1.292147, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.4256752, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 7149\n",
+ "Discriminator Loss: tf.Tensor(0.7542359, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.3858354, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 7150\n",
+ "Discriminator Loss: tf.Tensor(1.1539333, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.010815, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 7151\n",
+ "Discriminator Loss: tf.Tensor(1.0351284, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.02783213, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 7152\n",
+ "Discriminator Loss: tf.Tensor(0.8471676, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.4043835, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 7153\n",
+ "Discriminator Loss: tf.Tensor(1.2741573, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.21075314, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 7154\n",
+ "Discriminator Loss: tf.Tensor(0.4799164, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.860599, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 7155\n",
+ "Discriminator Loss: tf.Tensor(0.5953842, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.5748607, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 7156\n",
+ "Discriminator Loss: tf.Tensor(0.35714597, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.1308966, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 7157\n",
+ "Discriminator Loss: tf.Tensor(0.90864605, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.5971202, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 7158\n",
+ "Discriminator Loss: tf.Tensor(0.98340833, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.074849695, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 7159\n",
+ "Discriminator Loss: tf.Tensor(0.7078487, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.8852652, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 7160\n",
+ "Discriminator Loss: tf.Tensor(0.7048693, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.46426138, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 7161\n",
+ "Discriminator Loss: tf.Tensor(0.5396868, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.1920702, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 7162\n",
+ "Discriminator Loss: tf.Tensor(0.5434557, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.1523749, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 7163\n",
+ "Discriminator Loss: tf.Tensor(0.7834476, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.27565265, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 7164\n",
+ "Discriminator Loss: tf.Tensor(0.45023873, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.6759186, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 7165\n",
+ "Discriminator Loss: tf.Tensor(0.7053646, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.40625402, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 7166\n",
+ "Discriminator Loss: tf.Tensor(1.1141214, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.3097332, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 7167\n",
+ "Discriminator Loss: tf.Tensor(0.7467114, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.48260364, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 7168\n",
+ "Discriminator Loss: tf.Tensor(0.2635938, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.0536664, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 7169\n",
+ "Discriminator Loss: tf.Tensor(1.0505224, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.5151394, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 7170\n",
+ "Discriminator Loss: tf.Tensor(1.1543031, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.7976902, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 7171\n",
+ "Discriminator Loss: tf.Tensor(0.64802307, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.54633665, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 7172\n",
+ "Discriminator Loss: tf.Tensor(0.71594566, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.246371, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 7173\n",
+ "Discriminator Loss: tf.Tensor(1.0127239, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.036895387, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 7174\n",
+ "Discriminator Loss: tf.Tensor(0.74293363, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.1474056, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 7175\n",
+ "Discriminator Loss: tf.Tensor(1.0734363, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.008221216, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 7176\n",
+ "Discriminator Loss: tf.Tensor(0.48920792, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.5243075, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 7177\n",
+ "Discriminator Loss: tf.Tensor(0.5924901, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.54407936, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 7178\n",
+ "Discriminator Loss: tf.Tensor(0.62453055, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(3.3097508, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 7179\n",
+ "Discriminator Loss: tf.Tensor(0.6815827, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.41042438, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 7180\n",
+ "Discriminator Loss: tf.Tensor(1.258515, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(3.754143, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 7181\n",
+ "Discriminator Loss: tf.Tensor(0.38576883, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.81187564, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 7182\n",
+ "Discriminator Loss: tf.Tensor(0.79232097, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(3.2403996, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 7183\n",
+ "Discriminator Loss: tf.Tensor(0.036864817, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.2363404, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 7184\n",
+ "Discriminator Loss: tf.Tensor(22.926603, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.6982921, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 7185\n",
+ "Discriminator Loss: tf.Tensor(44.04648, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.74852943, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 7186\n",
+ "Discriminator Loss: tf.Tensor(8.814415, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.111295134, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 7187\n",
+ "Discriminator Loss: tf.Tensor(4.820195, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.020603452, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 7188\n",
+ "Discriminator Loss: tf.Tensor(4.0260506, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.21333496, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 7189\n",
+ "Discriminator Loss: tf.Tensor(3.1079354, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.16042548, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 7190\n",
+ "Discriminator Loss: tf.Tensor(2.523816, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.29564342, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 7191\n",
+ "Discriminator Loss: tf.Tensor(2.2898304, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.28903803, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 7192\n",
+ "Discriminator Loss: tf.Tensor(2.257297, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.3270174, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 7193\n",
+ "Discriminator Loss: tf.Tensor(2.133599, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.33685073, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 7194\n",
+ "Discriminator Loss: tf.Tensor(2.0751905, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.3637116, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 7195\n",
+ "Discriminator Loss: tf.Tensor(1.9986321, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.37468544, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 7196\n",
+ "Discriminator Loss: tf.Tensor(2.0027833, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.42048857, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 7197\n",
+ "Discriminator Loss: tf.Tensor(1.9860295, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.4310057, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 7198\n",
+ "Discriminator Loss: tf.Tensor(1.9455986, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.43993327, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 7199\n",
+ "Discriminator Loss: tf.Tensor(1.9932684, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.45034173, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 7200\n",
+ "Discriminator Loss: tf.Tensor(2.0251129, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.4320135, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 7201\n",
+ "Discriminator Loss: tf.Tensor(2.056117, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.41972935, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 7202\n",
+ "Discriminator Loss: tf.Tensor(1.9935887, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.41364357, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 7203\n",
+ "Discriminator Loss: tf.Tensor(1.9899055, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.43109727, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 7204\n",
+ "Discriminator Loss: tf.Tensor(1.9383512, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.4469986, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 7205\n",
+ "Discriminator Loss: tf.Tensor(1.9384773, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.47076997, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 7206\n",
+ "Discriminator Loss: tf.Tensor(1.922032, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.4910709, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 7207\n",
+ "Discriminator Loss: tf.Tensor(1.9050964, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.5143768, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 7208\n",
+ "Discriminator Loss: tf.Tensor(1.9492317, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.5288233, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 7209\n",
+ "Discriminator Loss: tf.Tensor(1.8906693, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.5281927, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 7210\n",
+ "Discriminator Loss: tf.Tensor(1.8727248, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.55253804, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 7211\n",
+ "Discriminator Loss: tf.Tensor(1.8902947, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.5839179, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 7212\n",
+ "Discriminator Loss: tf.Tensor(1.8711617, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.6099046, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 7213\n",
+ "Discriminator Loss: tf.Tensor(1.8721188, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.61192983, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 7214\n",
+ "Discriminator Loss: tf.Tensor(1.8133218, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.69061404, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 7215\n",
+ "Discriminator Loss: tf.Tensor(1.8198156, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.6953247, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 7216\n",
+ "Discriminator Loss: tf.Tensor(1.8020605, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.75685996, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 7217\n",
+ "Discriminator Loss: tf.Tensor(1.8419697, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.764596, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 7218\n",
+ "Discriminator Loss: tf.Tensor(1.8250645, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.7688698, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 7219\n",
+ "Discriminator Loss: tf.Tensor(1.7297469, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.8582337, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 7220\n",
+ "Discriminator Loss: tf.Tensor(1.766553, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.95923823, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 7221\n",
+ "Discriminator Loss: tf.Tensor(1.7685175, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.996548, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 7222\n",
+ "Discriminator Loss: tf.Tensor(1.7736174, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.375749, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 7223\n",
+ "Discriminator Loss: tf.Tensor(1.726908, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.57640064, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 7224\n",
+ "Discriminator Loss: tf.Tensor(1.6112826, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.75383896, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 7225\n",
+ "Discriminator Loss: tf.Tensor(1.4768652, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.8981704, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 7226\n",
+ "Discriminator Loss: tf.Tensor(1.7016385, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.2056944, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 7227\n",
+ "Discriminator Loss: tf.Tensor(1.866451, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.33230093, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 7228\n",
+ "Discriminator Loss: tf.Tensor(1.839714, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.04728351, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 7229\n",
+ "Discriminator Loss: tf.Tensor(1.5993239, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.15391462, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 7230\n",
+ "Discriminator Loss: tf.Tensor(1.5051284, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.17808652, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 7231\n",
+ "Discriminator Loss: tf.Tensor(1.7421858, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.3692917, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 7232\n",
+ "Discriminator Loss: tf.Tensor(1.4628013, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.30407134, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 7233\n",
+ "Discriminator Loss: tf.Tensor(1.3874488, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.6294767, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 7234\n",
+ "Discriminator Loss: tf.Tensor(1.06194, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.7529257, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 7235\n",
+ "Discriminator Loss: tf.Tensor(1.284501, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.0031344, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 7236\n",
+ "Discriminator Loss: tf.Tensor(1.4524784, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.25721034, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 7237\n",
+ "Discriminator Loss: tf.Tensor(1.6179273, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.3559157, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 7238\n",
+ "Discriminator Loss: tf.Tensor(1.5809056, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.22009361, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 7239\n",
+ "Discriminator Loss: tf.Tensor(1.195374, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.29645148, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 7240\n",
+ "Discriminator Loss: tf.Tensor(1.1102399, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.1428185, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 7241\n",
+ "Discriminator Loss: tf.Tensor(1.6569946, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.5138424, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 7242\n",
+ "Discriminator Loss: tf.Tensor(1.2098285, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.35827348, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 7243\n",
+ "Discriminator Loss: tf.Tensor(1.0912056, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.86528486, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 7244\n",
+ "Discriminator Loss: tf.Tensor(0.8816738, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.3483473, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 7245\n",
+ "Discriminator Loss: tf.Tensor(1.8528838, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.77233535, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 7246\n",
+ "Discriminator Loss: tf.Tensor(0.8782816, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.9189295, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 7247\n",
+ "Discriminator Loss: tf.Tensor(0.64246273, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.3008527, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 7248\n",
+ "Discriminator Loss: tf.Tensor(1.3617038, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.27711007, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 7249\n",
+ "Discriminator Loss: tf.Tensor(1.0305798, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.2263614, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 7250\n",
+ "Discriminator Loss: tf.Tensor(1.323827, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.29394224, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 7251\n",
+ "Discriminator Loss: tf.Tensor(0.87538725, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.8844674, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 7252\n",
+ "Discriminator Loss: tf.Tensor(0.40163362, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.5049225, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 7253\n",
+ "Discriminator Loss: tf.Tensor(1.3305482, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.23577327, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 7254\n",
+ "Discriminator Loss: tf.Tensor(1.0504348, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.5286835, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 7255\n",
+ "Discriminator Loss: tf.Tensor(0.9448665, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.116399385, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 7256\n",
+ "Discriminator Loss: tf.Tensor(0.34808868, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.3057083, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 7257\n",
+ "Discriminator Loss: tf.Tensor(0.79049236, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.4160932, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 7258\n",
+ "Discriminator Loss: tf.Tensor(0.7063019, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.0889263, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 7259\n",
+ "Discriminator Loss: tf.Tensor(0.9554588, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.116431475, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 7260\n",
+ "Discriminator Loss: tf.Tensor(0.82691044, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.8861252, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 7261\n",
+ "Discriminator Loss: tf.Tensor(0.6641367, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.38531375, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 7262\n",
+ "Discriminator Loss: tf.Tensor(0.59954756, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.201538, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 7263\n",
+ "Discriminator Loss: tf.Tensor(0.7212511, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.47411966, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 7264\n",
+ "Discriminator Loss: tf.Tensor(0.9950671, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.1190233, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 7265\n",
+ "Discriminator Loss: tf.Tensor(1.6130515, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.22500277, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 7266\n",
+ "Discriminator Loss: tf.Tensor(0.6062764, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.2308385, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 7267\n",
+ "Discriminator Loss: tf.Tensor(1.3284414, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.25877067, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 7268\n",
+ "Discriminator Loss: tf.Tensor(0.81331724, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.6115786, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 7269\n",
+ "Discriminator Loss: tf.Tensor(1.1314956, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.010508053, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 7270\n",
+ "Discriminator Loss: tf.Tensor(0.39166167, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.6429752, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 7271\n",
+ "Discriminator Loss: tf.Tensor(1.0406597, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.17593086, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 7272\n",
+ "Discriminator Loss: tf.Tensor(0.66386414, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.9695309, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 7273\n",
+ "Discriminator Loss: tf.Tensor(0.90428346, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.41151023, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 7274\n",
+ "Discriminator Loss: tf.Tensor(0.6382555, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.305484, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 7275\n",
+ "Discriminator Loss: tf.Tensor(0.45804527, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.7008486, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 7276\n",
+ "Discriminator Loss: tf.Tensor(0.8908343, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.669903, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 7277\n",
+ "Discriminator Loss: tf.Tensor(0.39124152, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.82569814, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 7278\n",
+ "Discriminator Loss: tf.Tensor(0.44368652, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.609008, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 7279\n",
+ "Discriminator Loss: tf.Tensor(0.30805808, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.985528, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 7280\n",
+ "Discriminator Loss: tf.Tensor(0.7357544, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.8871124, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 7281\n",
+ "Discriminator Loss: tf.Tensor(0.62841535, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.44833946, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 7282\n",
+ "Discriminator Loss: tf.Tensor(1.4458011, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(3.4306157, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 7283\n",
+ "Discriminator Loss: tf.Tensor(0.21557577, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.0653384, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 7284\n",
+ "Discriminator Loss: tf.Tensor(1.2625998, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.19361144, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 7285\n",
+ "Discriminator Loss: tf.Tensor(0.60303843, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.8968316, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 7286\n",
+ "Discriminator Loss: tf.Tensor(1.135548, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.013043083, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 7287\n",
+ "Discriminator Loss: tf.Tensor(1.3440552, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.1135004, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 7288\n",
+ "Discriminator Loss: tf.Tensor(1.0505645, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.037870027, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 7289\n",
+ "Discriminator Loss: tf.Tensor(0.62218964, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.5638739, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 7290\n",
+ "Discriminator Loss: tf.Tensor(1.2903025, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.23613739, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 7291\n",
+ "Discriminator Loss: tf.Tensor(0.36796924, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.2443085, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 7292\n",
+ "Discriminator Loss: tf.Tensor(0.3196026, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.70248246, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 7293\n",
+ "Discriminator Loss: tf.Tensor(1.1729174, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(3.6471646, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 7294\n",
+ "Discriminator Loss: tf.Tensor(0.8353193, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.18898517, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 7295\n",
+ "Discriminator Loss: tf.Tensor(0.60551846, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.4503434, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 7296\n",
+ "Discriminator Loss: tf.Tensor(0.49424183, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.5480085, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 7297\n",
+ "Discriminator Loss: tf.Tensor(0.57724917, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(4.142426, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 7298\n",
+ "Discriminator Loss: tf.Tensor(0.11791159, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.0041232, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 7299\n",
+ "Discriminator Loss: tf.Tensor(0.37475914, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.4707935, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 7300\n",
+ "Discriminator Loss: tf.Tensor(0.75957423, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.5118277, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 7301\n",
+ "Discriminator Loss: tf.Tensor(2.9923112, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(4.689505, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 7302\n",
+ "Discriminator Loss: tf.Tensor(0.22867829, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.83616143, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 7303\n",
+ "Discriminator Loss: tf.Tensor(1.0649146, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.7770004, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 7304\n",
+ "Discriminator Loss: tf.Tensor(0.18901214, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.169339, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 7305\n",
+ "Discriminator Loss: tf.Tensor(0.8150689, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.2277341, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 7306\n",
+ "Discriminator Loss: tf.Tensor(0.89275014, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.3943238, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 7307\n",
+ "Discriminator Loss: tf.Tensor(0.48961765, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.6624836, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 7308\n",
+ "Discriminator Loss: tf.Tensor(0.6615291, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.2802262, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 7309\n",
+ "Discriminator Loss: tf.Tensor(1.8737962, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.7445466, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 7310\n",
+ "Discriminator Loss: tf.Tensor(1.5689532, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.44128, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 7311\n",
+ "Discriminator Loss: tf.Tensor(1.6970987, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.31535715, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 7312\n",
+ "Discriminator Loss: tf.Tensor(0.57356143, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.1327624, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 7313\n",
+ "Discriminator Loss: tf.Tensor(1.3415363, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.16710041, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 7314\n",
+ "Discriminator Loss: tf.Tensor(0.785978, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.9792919, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 7315\n",
+ "Discriminator Loss: tf.Tensor(0.77980316, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.4714501, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 7316\n",
+ "Discriminator Loss: tf.Tensor(0.7538897, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.758576, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 7317\n",
+ "Discriminator Loss: tf.Tensor(1.1659003, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.12359556, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 7318\n",
+ "Discriminator Loss: tf.Tensor(0.6362353, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.5403124, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 7319\n",
+ "Discriminator Loss: tf.Tensor(0.44667804, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.86119646, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 7320\n",
+ "Discriminator Loss: tf.Tensor(0.6259904, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.1517308, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 7321\n",
+ "Discriminator Loss: tf.Tensor(0.41070727, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.0227973, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 7322\n",
+ "Discriminator Loss: tf.Tensor(0.4704597, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.3537946, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 7323\n",
+ "Discriminator Loss: tf.Tensor(1.4959173, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.45300773, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 7324\n",
+ "Discriminator Loss: tf.Tensor(1.3562671, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.2239468, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 7325\n",
+ "Discriminator Loss: tf.Tensor(0.9035748, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.31634226, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 7326\n",
+ "Discriminator Loss: tf.Tensor(0.5760763, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.5266796, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 7327\n",
+ "Discriminator Loss: tf.Tensor(1.2250814, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.0807681, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 7328\n",
+ "Discriminator Loss: tf.Tensor(0.7454838, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.3392926, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 7329\n",
+ "Discriminator Loss: tf.Tensor(2.2363853, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.87014437, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 7330\n",
+ "Discriminator Loss: tf.Tensor(0.6455815, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.1959338, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 7331\n",
+ "Discriminator Loss: tf.Tensor(1.4697856, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.3242168, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 7332\n",
+ "Discriminator Loss: tf.Tensor(0.48339835, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.6652932, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 7333\n",
+ "Discriminator Loss: tf.Tensor(1.3701985, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.18056963, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 7334\n",
+ "Discriminator Loss: tf.Tensor(0.6578792, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.6742611, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 7335\n",
+ "Discriminator Loss: tf.Tensor(0.67113173, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.35827282, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 7336\n",
+ "Discriminator Loss: tf.Tensor(0.6389234, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.2222736, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 7337\n",
+ "Discriminator Loss: tf.Tensor(0.59304386, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.7439913, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 7338\n",
+ "Discriminator Loss: tf.Tensor(0.6565654, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.4584205, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 7339\n",
+ "Discriminator Loss: tf.Tensor(0.7698045, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.28730014, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 7340\n",
+ "Discriminator Loss: tf.Tensor(0.34175897, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.4617398, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 7341\n",
+ "Discriminator Loss: tf.Tensor(0.2391616, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.2710844, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 7342\n",
+ "Discriminator Loss: tf.Tensor(0.6804161, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.39135978, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 7343\n",
+ "Discriminator Loss: tf.Tensor(1.733089, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(3.375796, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 7344\n",
+ "Discriminator Loss: tf.Tensor(0.8910418, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.20564866, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 7345\n",
+ "Discriminator Loss: tf.Tensor(0.83050287, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.7619534, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 7346\n",
+ "Discriminator Loss: tf.Tensor(0.49634495, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.60577196, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 7347\n",
+ "Discriminator Loss: tf.Tensor(0.66538256, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.601396, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 7348\n",
+ "Discriminator Loss: tf.Tensor(0.40543467, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.98720163, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 7349\n",
+ "Discriminator Loss: tf.Tensor(0.11485185, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.256819, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 7350\n",
+ "Discriminator Loss: tf.Tensor(0.57598364, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.1884668, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 7351\n",
+ "Discriminator Loss: tf.Tensor(0.9980526, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.2363199, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 7352\n",
+ "Discriminator Loss: tf.Tensor(0.3991598, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.7150352, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 7353\n",
+ "Discriminator Loss: tf.Tensor(0.54871774, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.7690465, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 7354\n",
+ "Discriminator Loss: tf.Tensor(2.0910192, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(3.7649946, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 7355\n",
+ "Discriminator Loss: tf.Tensor(0.85882217, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.634355, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 7356\n",
+ "Discriminator Loss: tf.Tensor(0.795444, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.5093722, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 7357\n",
+ "Discriminator Loss: tf.Tensor(1.335362, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.28764936, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 7358\n",
+ "Discriminator Loss: tf.Tensor(0.7984946, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.3245071, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 7359\n",
+ "Discriminator Loss: tf.Tensor(1.4548678, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.109289944, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 7360\n",
+ "Discriminator Loss: tf.Tensor(0.5727061, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.4336725, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 7361\n",
+ "Discriminator Loss: tf.Tensor(1.0100186, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.13141882, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 7362\n",
+ "Discriminator Loss: tf.Tensor(0.5744735, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.9188102, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 7363\n",
+ "Discriminator Loss: tf.Tensor(0.28869075, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.8099802, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 7364\n",
+ "Discriminator Loss: tf.Tensor(0.84725547, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.4927363, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 7365\n",
+ "Discriminator Loss: tf.Tensor(1.1059742, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.051063612, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 7366\n",
+ "Discriminator Loss: tf.Tensor(0.6133549, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.5740271, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 7367\n",
+ "Discriminator Loss: tf.Tensor(1.2410777, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.109437145, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 7368\n",
+ "Discriminator Loss: tf.Tensor(0.55203795, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.8259577, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 7369\n",
+ "Discriminator Loss: tf.Tensor(1.1882915, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.03091973, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 7370\n",
+ "Discriminator Loss: tf.Tensor(0.84687555, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.8572956, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 7371\n",
+ "Discriminator Loss: tf.Tensor(1.6799922, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.47634944, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 7372\n",
+ "Discriminator Loss: tf.Tensor(0.72014606, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.2643623, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 7373\n",
+ "Discriminator Loss: tf.Tensor(0.92235094, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.19102018, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 7374\n",
+ "Discriminator Loss: tf.Tensor(0.29805574, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.8576363, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 7375\n",
+ "Discriminator Loss: tf.Tensor(1.1036361, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.07011851, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 7376\n",
+ "Discriminator Loss: tf.Tensor(1.0682609, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.9565985, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 7377\n",
+ "Discriminator Loss: tf.Tensor(1.7776415, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.5670117, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 7378\n",
+ "Discriminator Loss: tf.Tensor(0.60057646, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.4992346, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 7379\n",
+ "Discriminator Loss: tf.Tensor(0.80861974, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.2819799, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 7380\n",
+ "Discriminator Loss: tf.Tensor(0.5501867, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.2473857, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 7381\n",
+ "Discriminator Loss: tf.Tensor(0.31638402, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.91055584, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 7382\n",
+ "Discriminator Loss: tf.Tensor(0.96186066, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(3.4336185, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 7383\n",
+ "Discriminator Loss: tf.Tensor(0.83459985, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.21776502, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 7384\n",
+ "Discriminator Loss: tf.Tensor(0.45232663, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.5118544, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 7385\n",
+ "Discriminator Loss: tf.Tensor(0.11259677, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.4432303, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 7386\n",
+ "Discriminator Loss: tf.Tensor(0.4103479, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.75898534, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 7387\n",
+ "Discriminator Loss: tf.Tensor(1.977294, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(3.4196062, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 7388\n",
+ "Discriminator Loss: tf.Tensor(1.1237605, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.083716415, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 7389\n",
+ "Discriminator Loss: tf.Tensor(0.6204057, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.5044221, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 7390\n",
+ "Discriminator Loss: tf.Tensor(1.2318481, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.12738925, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 7391\n",
+ "Discriminator Loss: tf.Tensor(1.1524249, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.0317457, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 7392\n",
+ "Discriminator Loss: tf.Tensor(1.019501, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.11697463, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 7393\n",
+ "Discriminator Loss: tf.Tensor(0.5871897, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.7824396, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 7394\n",
+ "Discriminator Loss: tf.Tensor(0.6941362, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.47469363, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 7395\n",
+ "Discriminator Loss: tf.Tensor(1.1891346, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.309541, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 7396\n",
+ "Discriminator Loss: tf.Tensor(0.47745433, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.66060793, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 7397\n",
+ "Discriminator Loss: tf.Tensor(0.57611084, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.2244132, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 7398\n",
+ "Discriminator Loss: tf.Tensor(0.32745597, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.0639211, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 7399\n",
+ "Discriminator Loss: tf.Tensor(1.1668304, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.12187617, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 7400\n",
+ "Discriminator Loss: tf.Tensor(0.5649587, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.7258905, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 7401\n",
+ "Discriminator Loss: tf.Tensor(0.4257795, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.69709444, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 7402\n",
+ "Discriminator Loss: tf.Tensor(0.83045745, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.839695, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 7403\n",
+ "Discriminator Loss: tf.Tensor(0.7037203, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.39642882, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 7404\n",
+ "Discriminator Loss: tf.Tensor(0.4483117, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.888506, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 7405\n",
+ "Discriminator Loss: tf.Tensor(0.12791148, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.7633343, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 7406\n",
+ "Discriminator Loss: tf.Tensor(0.18209745, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.89790684, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 7407\n",
+ "Discriminator Loss: tf.Tensor(0.8970486, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(3.4515955, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 7408\n",
+ "Discriminator Loss: tf.Tensor(0.46993697, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.5697616, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 7409\n",
+ "Discriminator Loss: tf.Tensor(1.7502205, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(4.295982, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 7410\n",
+ "Discriminator Loss: tf.Tensor(0.03802541, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.1429799, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 7411\n",
+ "Discriminator Loss: tf.Tensor(0.73554873, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.3692644, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 7412\n",
+ "Discriminator Loss: tf.Tensor(0.812637, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.7525616, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 7413\n",
+ "Discriminator Loss: tf.Tensor(0.13259707, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.099357, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 7414\n",
+ "Discriminator Loss: tf.Tensor(0.8413074, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.62806237, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 7415\n",
+ "Discriminator Loss: tf.Tensor(2.5615492, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(3.54187, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 7416\n",
+ "Discriminator Loss: tf.Tensor(0.5858355, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.7908799, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 7417\n",
+ "Discriminator Loss: tf.Tensor(0.8361953, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.848405, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 7418\n",
+ "Discriminator Loss: tf.Tensor(0.64971143, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.55372685, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 7419\n",
+ "Discriminator Loss: tf.Tensor(0.91251314, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.834354, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 7420\n",
+ "Discriminator Loss: tf.Tensor(0.61368424, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.5856474, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 7421\n",
+ "Discriminator Loss: tf.Tensor(0.9849663, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.9238132, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 7422\n",
+ "Discriminator Loss: tf.Tensor(0.8699712, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.24174275, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 7423\n",
+ "Discriminator Loss: tf.Tensor(0.6900177, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.4550766, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 7424\n",
+ "Discriminator Loss: tf.Tensor(0.88602567, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.42141628, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 7425\n",
+ "Discriminator Loss: tf.Tensor(0.6340761, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.5184088, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 7426\n",
+ "Discriminator Loss: tf.Tensor(1.0513943, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.12604916, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 7427\n",
+ "Discriminator Loss: tf.Tensor(1.2800958, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.93575, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 7428\n",
+ "Discriminator Loss: tf.Tensor(0.79072255, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.2934263, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 7429\n",
+ "Discriminator Loss: tf.Tensor(0.5795083, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.4345552, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 7430\n",
+ "Discriminator Loss: tf.Tensor(0.9114279, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.4050984, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 7431\n",
+ "Discriminator Loss: tf.Tensor(0.8049892, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.9528613, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 7432\n",
+ "Discriminator Loss: tf.Tensor(0.7079933, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.3578917, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 7433\n",
+ "Discriminator Loss: tf.Tensor(1.3897338, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.1637926, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 7434\n",
+ "Discriminator Loss: tf.Tensor(0.8423352, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.42948103, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 7435\n",
+ "Discriminator Loss: tf.Tensor(0.760558, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.7136236, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 7436\n",
+ "Discriminator Loss: tf.Tensor(0.71274674, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.3348674, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 7437\n",
+ "Discriminator Loss: tf.Tensor(0.9339987, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.047057, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 7438\n",
+ "Discriminator Loss: tf.Tensor(0.89764124, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.31741172, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 7439\n",
+ "Discriminator Loss: tf.Tensor(0.87071013, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.9479839, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 7440\n",
+ "Discriminator Loss: tf.Tensor(1.1376919, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.05186194, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 7441\n",
+ "Discriminator Loss: tf.Tensor(0.5653216, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.5865163, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 7442\n",
+ "Discriminator Loss: tf.Tensor(0.7335581, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.48576662, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 7443\n",
+ "Discriminator Loss: tf.Tensor(0.66325176, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.088864, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 7444\n",
+ "Discriminator Loss: tf.Tensor(0.6873522, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.3634437, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 7445\n",
+ "Discriminator Loss: tf.Tensor(0.65551126, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.2412312, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 7446\n",
+ "Discriminator Loss: tf.Tensor(0.47297034, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.3676634, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 7447\n",
+ "Discriminator Loss: tf.Tensor(1.3631495, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.26160195, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 7448\n",
+ "Discriminator Loss: tf.Tensor(0.26794627, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.234634, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 7449\n",
+ "Discriminator Loss: tf.Tensor(1.5037459, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.3062254, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 7450\n",
+ "Discriminator Loss: tf.Tensor(0.8676779, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.5473125, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 7451\n",
+ "Discriminator Loss: tf.Tensor(0.7032821, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.526527, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 7452\n",
+ "Discriminator Loss: tf.Tensor(0.3950141, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.9152989, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 7453\n",
+ "Discriminator Loss: tf.Tensor(1.6458223, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.37223172, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 7454\n",
+ "Discriminator Loss: tf.Tensor(1.0367482, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.7862495, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 7455\n",
+ "Discriminator Loss: tf.Tensor(1.6251427, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.5554952, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 7456\n",
+ "Discriminator Loss: tf.Tensor(0.6854007, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.585769, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 7457\n",
+ "Discriminator Loss: tf.Tensor(0.9124508, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.10838324, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 7458\n",
+ "Discriminator Loss: tf.Tensor(0.7521773, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.3284752, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 7459\n",
+ "Discriminator Loss: tf.Tensor(0.511534, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.5105843, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 7460\n",
+ "Discriminator Loss: tf.Tensor(0.95796096, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.6568983, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 7461\n",
+ "Discriminator Loss: tf.Tensor(0.82745093, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.22260714, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 7462\n",
+ "Discriminator Loss: tf.Tensor(1.0428172, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.240158, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 7463\n",
+ "Discriminator Loss: tf.Tensor(1.5091115, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.48070323, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 7464\n",
+ "Discriminator Loss: tf.Tensor(0.4717812, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.6282037, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 7465\n",
+ "Discriminator Loss: tf.Tensor(0.96233416, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.06604979, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 7466\n",
+ "Discriminator Loss: tf.Tensor(0.9031807, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.7847452, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 7467\n",
+ "Discriminator Loss: tf.Tensor(0.17111377, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.90030307, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 7468\n",
+ "Discriminator Loss: tf.Tensor(1.1364588, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.641403, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 7469\n",
+ "Discriminator Loss: tf.Tensor(0.33139133, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.798861, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 7470\n",
+ "Discriminator Loss: tf.Tensor(1.5357095, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.546569, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 7471\n",
+ "Discriminator Loss: tf.Tensor(0.24243274, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.8329106, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 7472\n",
+ "Discriminator Loss: tf.Tensor(1.055703, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.3098438, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 7473\n",
+ "Discriminator Loss: tf.Tensor(0.3335546, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.7807172, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 7474\n",
+ "Discriminator Loss: tf.Tensor(1.6041706, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.728176, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 7475\n",
+ "Discriminator Loss: tf.Tensor(0.44114232, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.64927137, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 7476\n",
+ "Discriminator Loss: tf.Tensor(0.91460437, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.1654398, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 7477\n",
+ "Discriminator Loss: tf.Tensor(0.36139357, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.67852116, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 7478\n",
+ "Discriminator Loss: tf.Tensor(0.74489594, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.5750396, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 7479\n",
+ "Discriminator Loss: tf.Tensor(0.48585907, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.5278672, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 7480\n",
+ "Discriminator Loss: tf.Tensor(0.6179296, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.4433454, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 7481\n",
+ "Discriminator Loss: tf.Tensor(0.79250425, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.1742394, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 7482\n",
+ "Discriminator Loss: tf.Tensor(0.6127796, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.6345333, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 7483\n",
+ "Discriminator Loss: tf.Tensor(0.85454285, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.653022, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 7484\n",
+ "Discriminator Loss: tf.Tensor(0.7293151, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.6282265, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 7485\n",
+ "Discriminator Loss: tf.Tensor(1.1173368, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.476275, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 7486\n",
+ "Discriminator Loss: tf.Tensor(0.79733896, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.27329558, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 7487\n",
+ "Discriminator Loss: tf.Tensor(0.89335704, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.4105313, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 7488\n",
+ "Discriminator Loss: tf.Tensor(0.69167674, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.7732639, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 7489\n",
+ "Discriminator Loss: tf.Tensor(0.6930098, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.4366932, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 7490\n",
+ "Discriminator Loss: tf.Tensor(0.735853, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.2689352, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 7491\n",
+ "Discriminator Loss: tf.Tensor(1.0209768, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.039587934, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 7492\n",
+ "Discriminator Loss: tf.Tensor(0.6706116, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.7881621, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 7493\n",
+ "Discriminator Loss: tf.Tensor(0.6394111, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.876833, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 7494\n",
+ "Discriminator Loss: tf.Tensor(0.34335878, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.1975307, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 7495\n",
+ "Discriminator Loss: tf.Tensor(0.67123765, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.6219077, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 7496\n",
+ "Discriminator Loss: tf.Tensor(1.1883594, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.9889352, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 7497\n",
+ "Discriminator Loss: tf.Tensor(0.31370062, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.9990608, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 7498\n",
+ "Discriminator Loss: tf.Tensor(0.51853466, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.6990947, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 7499\n",
+ "Discriminator Loss: tf.Tensor(0.50505334, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.8527413, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 7500\n",
+ "Discriminator Loss: tf.Tensor(1.0669916, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.7386572, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 7501\n",
+ "Discriminator Loss: tf.Tensor(1.3123119, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.15103917, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 7502\n",
+ "Discriminator Loss: tf.Tensor(0.7754046, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.7571584, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 7503\n",
+ "Discriminator Loss: tf.Tensor(1.9326403, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.5345183, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 7504\n",
+ "Discriminator Loss: tf.Tensor(0.6223307, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.45293, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 7505\n",
+ "Discriminator Loss: tf.Tensor(1.3532089, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.10359659, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 7506\n",
+ "Discriminator Loss: tf.Tensor(0.57426596, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.6150831, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 7507\n",
+ "Discriminator Loss: tf.Tensor(1.4335481, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.09223312, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 7508\n",
+ "Discriminator Loss: tf.Tensor(0.74561125, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.0509422, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 7509\n",
+ "Discriminator Loss: tf.Tensor(0.5111775, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.5495513, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 7510\n",
+ "Discriminator Loss: tf.Tensor(0.7383308, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.4856083, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 7511\n",
+ "Discriminator Loss: tf.Tensor(0.78775233, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.23863201, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 7512\n",
+ "Discriminator Loss: tf.Tensor(0.8274412, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.2254035, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 7513\n",
+ "Discriminator Loss: tf.Tensor(0.46677634, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.60931015, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 7514\n",
+ "Discriminator Loss: tf.Tensor(0.68477917, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.9091022, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 7515\n",
+ "Discriminator Loss: tf.Tensor(0.36039442, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.0370771, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 7516\n",
+ "Discriminator Loss: tf.Tensor(1.1989168, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.16647974, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 7517\n",
+ "Discriminator Loss: tf.Tensor(0.5074355, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.0329607, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 7518\n",
+ "Discriminator Loss: tf.Tensor(0.52348256, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.8343881, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 7519\n",
+ "Discriminator Loss: tf.Tensor(0.55526006, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.9256608, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 7520\n",
+ "Discriminator Loss: tf.Tensor(0.040713307, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.2911917, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 7521\n",
+ "Discriminator Loss: tf.Tensor(17.773678, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.96530104, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 7522\n",
+ "Discriminator Loss: tf.Tensor(95.47538, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.8295496, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 7523\n",
+ "Discriminator Loss: tf.Tensor(87.33176, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.9386184, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 7524\n",
+ "Discriminator Loss: tf.Tensor(13.318681, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.34601203, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 7525\n",
+ "Discriminator Loss: tf.Tensor(5.659192, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.20226824, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 7526\n",
+ "Discriminator Loss: tf.Tensor(4.5128016, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.16893704, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 7527\n",
+ "Discriminator Loss: tf.Tensor(4.089574, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.1391089, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 7528\n",
+ "Discriminator Loss: tf.Tensor(3.5421953, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.13103952, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 7529\n",
+ "Discriminator Loss: tf.Tensor(3.257217, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.12542571, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 7530\n",
+ "Discriminator Loss: tf.Tensor(2.9370089, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.13523632, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 7531\n",
+ "Discriminator Loss: tf.Tensor(2.745122, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.15322876, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 7532\n",
+ "Discriminator Loss: tf.Tensor(2.595281, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.16907652, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 7533\n",
+ "Discriminator Loss: tf.Tensor(2.4793262, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.18405901, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 7534\n",
+ "Discriminator Loss: tf.Tensor(2.447679, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.19896837, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 7535\n",
+ "Discriminator Loss: tf.Tensor(2.354208, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.21331918, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 7536\n",
+ "Discriminator Loss: tf.Tensor(2.3869908, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.23395525, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 7537\n",
+ "Discriminator Loss: tf.Tensor(2.2607365, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.2540346, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 7538\n",
+ "Discriminator Loss: tf.Tensor(2.2080963, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.27943504, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 7539\n",
+ "Discriminator Loss: tf.Tensor(2.2187648, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.29625714, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 7540\n",
+ "Discriminator Loss: tf.Tensor(2.1529896, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.3286475, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 7541\n",
+ "Discriminator Loss: tf.Tensor(2.147485, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.3536301, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 7542\n",
+ "Discriminator Loss: tf.Tensor(2.0921085, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.37299833, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 7543\n",
+ "Discriminator Loss: tf.Tensor(2.079705, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.39867663, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 7544\n",
+ "Discriminator Loss: tf.Tensor(2.0038097, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.4294221, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 7545\n",
+ "Discriminator Loss: tf.Tensor(2.050869, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.4653152, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 7546\n",
+ "Discriminator Loss: tf.Tensor(2.0191329, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.48381877, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 7547\n",
+ "Discriminator Loss: tf.Tensor(2.007785, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.50385255, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 7548\n",
+ "Discriminator Loss: tf.Tensor(1.9716938, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.54472804, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 7549\n",
+ "Discriminator Loss: tf.Tensor(1.909482, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.61561936, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 7550\n",
+ "Discriminator Loss: tf.Tensor(1.8786291, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.6167956, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 7551\n",
+ "Discriminator Loss: tf.Tensor(1.8509285, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.6776872, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 7552\n",
+ "Discriminator Loss: tf.Tensor(1.8412653, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.73411685, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 7553\n",
+ "Discriminator Loss: tf.Tensor(1.8913321, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.73511535, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 7554\n",
+ "Discriminator Loss: tf.Tensor(1.8016639, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.78352433, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 7555\n",
+ "Discriminator Loss: tf.Tensor(1.8258649, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.78870296, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 7556\n",
+ "Discriminator Loss: tf.Tensor(1.8957304, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.73220176, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 7557\n",
+ "Discriminator Loss: tf.Tensor(1.8184936, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.6923869, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 7558\n",
+ "Discriminator Loss: tf.Tensor(1.8271645, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.74049497, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 7559\n",
+ "Discriminator Loss: tf.Tensor(1.773984, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.8890235, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 7560\n",
+ "Discriminator Loss: tf.Tensor(1.8785393, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.0700582, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 7561\n",
+ "Discriminator Loss: tf.Tensor(1.9911743, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.080822475, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 7562\n",
+ "Discriminator Loss: tf.Tensor(1.9082341, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.18708289, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 7563\n",
+ "Discriminator Loss: tf.Tensor(1.9032263, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.20042486, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 7564\n",
+ "Discriminator Loss: tf.Tensor(1.918978, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.24743082, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 7565\n",
+ "Discriminator Loss: tf.Tensor(1.840265, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.26975584, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 7566\n",
+ "Discriminator Loss: tf.Tensor(1.8236908, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.33037108, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 7567\n",
+ "Discriminator Loss: tf.Tensor(1.7530438, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.39580718, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 7568\n",
+ "Discriminator Loss: tf.Tensor(1.603754, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.48488176, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 7569\n",
+ "Discriminator Loss: tf.Tensor(1.4414843, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.6021183, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 7570\n",
+ "Discriminator Loss: tf.Tensor(1.6001401, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.6765957, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 7571\n",
+ "Discriminator Loss: tf.Tensor(1.6871082, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.46019554, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 7572\n",
+ "Discriminator Loss: tf.Tensor(1.8937006, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.49037024, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 7573\n",
+ "Discriminator Loss: tf.Tensor(1.618807, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.7560525, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 7574\n",
+ "Discriminator Loss: tf.Tensor(1.659644, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.8311234, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 7575\n",
+ "Discriminator Loss: tf.Tensor(1.6514654, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.0845746, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 7576\n",
+ "Discriminator Loss: tf.Tensor(1.947379, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.27829984, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 7577\n",
+ "Discriminator Loss: tf.Tensor(1.7255821, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.11843694, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 7578\n",
+ "Discriminator Loss: tf.Tensor(1.4220524, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.30445746, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 7579\n",
+ "Discriminator Loss: tf.Tensor(1.6521525, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.4689144, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 7580\n",
+ "Discriminator Loss: tf.Tensor(1.5911996, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.49454987, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 7581\n",
+ "Discriminator Loss: tf.Tensor(1.4562068, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.53568274, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 7582\n",
+ "Discriminator Loss: tf.Tensor(1.490271, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.6901972, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 7583\n",
+ "Discriminator Loss: tf.Tensor(1.2575607, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.993201, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 7584\n",
+ "Discriminator Loss: tf.Tensor(1.0021331, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.7846649, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 7585\n",
+ "Discriminator Loss: tf.Tensor(1.4032967, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.7420009, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 7586\n",
+ "Discriminator Loss: tf.Tensor(1.1598225, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.0994313, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 7587\n",
+ "Discriminator Loss: tf.Tensor(0.957749, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.38187, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 7588\n",
+ "Discriminator Loss: tf.Tensor(0.5212492, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.9402382, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 7589\n",
+ "Discriminator Loss: tf.Tensor(0.36334682, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.2716169, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 7590\n",
+ "Discriminator Loss: tf.Tensor(1.1745493, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.028707087, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 7591\n",
+ "Discriminator Loss: tf.Tensor(0.74707115, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.0373032, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 7592\n",
+ "Discriminator Loss: tf.Tensor(0.5496869, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.5517509, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 7593\n",
+ "Discriminator Loss: tf.Tensor(0.66725415, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.0364792, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 7594\n",
+ "Discriminator Loss: tf.Tensor(0.50625646, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.5279298, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 7595\n",
+ "Discriminator Loss: tf.Tensor(0.63911355, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.9428964, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 7596\n",
+ "Discriminator Loss: tf.Tensor(0.92840713, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.12692235, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 7597\n",
+ "Discriminator Loss: tf.Tensor(1.0653522, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.61061, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 7598\n",
+ "Discriminator Loss: tf.Tensor(1.4624139, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.25627443, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 7599\n",
+ "Discriminator Loss: tf.Tensor(0.71508825, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.5655832, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 7600\n",
+ "Discriminator Loss: tf.Tensor(0.98850965, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.07407553, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 7601\n",
+ "Discriminator Loss: tf.Tensor(0.5811856, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.3130399, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 7602\n",
+ "Discriminator Loss: tf.Tensor(0.95150673, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.07993484, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 7603\n",
+ "Discriminator Loss: tf.Tensor(0.5153569, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.5112871, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 7604\n",
+ "Discriminator Loss: tf.Tensor(1.2365459, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.16175479, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 7605\n",
+ "Discriminator Loss: tf.Tensor(0.67731106, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.7471857, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 7606\n",
+ "Discriminator Loss: tf.Tensor(1.2883087, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.23107548, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 7607\n",
+ "Discriminator Loss: tf.Tensor(0.6821713, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.3532181, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 7608\n",
+ "Discriminator Loss: tf.Tensor(1.2328045, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.18031336, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 7609\n",
+ "Discriminator Loss: tf.Tensor(0.42834982, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.4048868, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 7610\n",
+ "Discriminator Loss: tf.Tensor(0.86683464, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.38762748, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 7611\n",
+ "Discriminator Loss: tf.Tensor(0.5296038, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.8696836, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 7612\n",
+ "Discriminator Loss: tf.Tensor(0.875469, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.24598615, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 7613\n",
+ "Discriminator Loss: tf.Tensor(0.74005514, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.8116704, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 7614\n",
+ "Discriminator Loss: tf.Tensor(1.2266464, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.1803238, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 7615\n",
+ "Discriminator Loss: tf.Tensor(0.6268651, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.4939053, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 7616\n",
+ "Discriminator Loss: tf.Tensor(0.4129109, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.80650085, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 7617\n",
+ "Discriminator Loss: tf.Tensor(0.7122203, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.8703575, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 7618\n",
+ "Discriminator Loss: tf.Tensor(0.24169233, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.8568945, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 7619\n",
+ "Discriminator Loss: tf.Tensor(1.4206525, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(3.3081014, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 7620\n",
+ "Discriminator Loss: tf.Tensor(0.8950109, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.21149628, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 7621\n",
+ "Discriminator Loss: tf.Tensor(0.74537176, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.7315569, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 7622\n",
+ "Discriminator Loss: tf.Tensor(1.0230445, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.32125422, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 7623\n",
+ "Discriminator Loss: tf.Tensor(0.54697585, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.226937, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 7624\n",
+ "Discriminator Loss: tf.Tensor(0.61619854, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.41698575, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 7625\n",
+ "Discriminator Loss: tf.Tensor(0.8842386, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(3.3335173, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 7626\n",
+ "Discriminator Loss: tf.Tensor(0.05083721, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.3018241, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 7627\n",
+ "Discriminator Loss: tf.Tensor(0.2475553, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.8413243, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 7628\n",
+ "Discriminator Loss: tf.Tensor(2.6698685, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(3.7296362, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 7629\n",
+ "Discriminator Loss: tf.Tensor(0.71186435, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.6293261, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 7630\n",
+ "Discriminator Loss: tf.Tensor(1.2538317, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.7850727, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 7631\n",
+ "Discriminator Loss: tf.Tensor(0.95319825, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.16072123, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 7632\n",
+ "Discriminator Loss: tf.Tensor(0.48449457, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.0284624, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 7633\n",
+ "Discriminator Loss: tf.Tensor(1.3302407, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.1058597, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 7634\n",
+ "Discriminator Loss: tf.Tensor(1.012676, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.7813231, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 7635\n",
+ "Discriminator Loss: tf.Tensor(1.3020768, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.039384123, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 7636\n",
+ "Discriminator Loss: tf.Tensor(0.91624117, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.6083361, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 7637\n",
+ "Discriminator Loss: tf.Tensor(0.812823, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.21399899, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 7638\n",
+ "Discriminator Loss: tf.Tensor(0.7494658, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.7469295, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 7639\n",
+ "Discriminator Loss: tf.Tensor(0.7365688, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.45906916, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 7640\n",
+ "Discriminator Loss: tf.Tensor(0.72952306, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.7712818, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 7641\n",
+ "Discriminator Loss: tf.Tensor(1.3453875, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.22087477, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 7642\n",
+ "Discriminator Loss: tf.Tensor(0.84530175, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.5892911, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 7643\n",
+ "Discriminator Loss: tf.Tensor(0.95788693, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.09499178, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 7644\n",
+ "Discriminator Loss: tf.Tensor(0.28867808, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.7722024, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 7645\n",
+ "Discriminator Loss: tf.Tensor(0.45891568, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.0372399, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 7646\n",
+ "Discriminator Loss: tf.Tensor(0.9573081, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.2064147, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 7647\n",
+ "Discriminator Loss: tf.Tensor(0.6894043, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.35044, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 7648\n",
+ "Discriminator Loss: tf.Tensor(1.3403019, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.15914263, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 7649\n",
+ "Discriminator Loss: tf.Tensor(0.5531112, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.8639036, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 7650\n",
+ "Discriminator Loss: tf.Tensor(0.6447937, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.47455892, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 7651\n",
+ "Discriminator Loss: tf.Tensor(0.85472745, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.3039925, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 7652\n",
+ "Discriminator Loss: tf.Tensor(0.82340974, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.2106104, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 7653\n",
+ "Discriminator Loss: tf.Tensor(1.2748967, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.3703916, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 7654\n",
+ "Discriminator Loss: tf.Tensor(0.3601234, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.8820885, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 7655\n",
+ "Discriminator Loss: tf.Tensor(0.62739813, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.306089, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 7656\n",
+ "Discriminator Loss: tf.Tensor(1.3300463, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.30558547, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 7657\n",
+ "Discriminator Loss: tf.Tensor(0.76012164, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.0252335, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 7658\n",
+ "Discriminator Loss: tf.Tensor(0.3576736, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.7126493, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 7659\n",
+ "Discriminator Loss: tf.Tensor(0.789919, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.7066162, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 7660\n",
+ "Discriminator Loss: tf.Tensor(1.3735478, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.28796765, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 7661\n",
+ "Discriminator Loss: tf.Tensor(0.6300968, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.111201, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 7662\n",
+ "Discriminator Loss: tf.Tensor(1.0648109, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.04540308, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 7663\n",
+ "Discriminator Loss: tf.Tensor(0.7406312, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.0294862, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 7664\n",
+ "Discriminator Loss: tf.Tensor(0.8206504, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.20797138, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 7665\n",
+ "Discriminator Loss: tf.Tensor(0.30060136, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.215414, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 7666\n",
+ "Discriminator Loss: tf.Tensor(0.08157718, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.0385915, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 7667\n",
+ "Discriminator Loss: tf.Tensor(3.687063, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.224696, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 7668\n",
+ "Discriminator Loss: tf.Tensor(1.7138104, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.24629009, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 7669\n",
+ "Discriminator Loss: tf.Tensor(2.1171496, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.8264354, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 7670\n",
+ "Discriminator Loss: tf.Tensor(1.6738647, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.0575309, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 7671\n",
+ "Discriminator Loss: tf.Tensor(1.9150081, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.5052677, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 7672\n",
+ "Discriminator Loss: tf.Tensor(1.5186695, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.44341102, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 7673\n",
+ "Discriminator Loss: tf.Tensor(1.2626351, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.70418286, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 7674\n",
+ "Discriminator Loss: tf.Tensor(0.9986867, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.0399351, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 7675\n",
+ "Discriminator Loss: tf.Tensor(1.3642601, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.16502969, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 7676\n",
+ "Discriminator Loss: tf.Tensor(0.91602576, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.6593632, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 7677\n",
+ "Discriminator Loss: tf.Tensor(0.65866935, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.1073278, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 7678\n",
+ "Discriminator Loss: tf.Tensor(1.4448822, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.32712868, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 7679\n",
+ "Discriminator Loss: tf.Tensor(0.9440857, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.3167, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 7680\n",
+ "Discriminator Loss: tf.Tensor(0.9772112, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.25097707, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 7681\n",
+ "Discriminator Loss: tf.Tensor(0.63835144, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.0662762, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 7682\n",
+ "Discriminator Loss: tf.Tensor(1.2078185, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.025232017, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 7683\n",
+ "Discriminator Loss: tf.Tensor(0.5878783, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.0899657, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 7684\n",
+ "Discriminator Loss: tf.Tensor(1.1119871, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.19439793, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 7685\n",
+ "Discriminator Loss: tf.Tensor(0.79988366, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.9121048, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 7686\n",
+ "Discriminator Loss: tf.Tensor(0.89017236, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.9601889, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 7687\n",
+ "Discriminator Loss: tf.Tensor(2.1287007, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.68126935, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 7688\n",
+ "Discriminator Loss: tf.Tensor(1.0135572, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.833971, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 7689\n",
+ "Discriminator Loss: tf.Tensor(0.87559694, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.5043122, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 7690\n",
+ "Discriminator Loss: tf.Tensor(1.5104613, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.47022986, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 7691\n",
+ "Discriminator Loss: tf.Tensor(0.48420632, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.96540326, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 7692\n",
+ "Discriminator Loss: tf.Tensor(0.72428286, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.7947645, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 7693\n",
+ "Discriminator Loss: tf.Tensor(1.0792758, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.055561513, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 7694\n",
+ "Discriminator Loss: tf.Tensor(0.79840976, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.5531286, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 7695\n",
+ "Discriminator Loss: tf.Tensor(0.82962316, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.33683565, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 7696\n",
+ "Discriminator Loss: tf.Tensor(0.5627083, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.661026, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 7697\n",
+ "Discriminator Loss: tf.Tensor(1.2433194, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.24138093, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 7698\n",
+ "Discriminator Loss: tf.Tensor(0.617804, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.6273994, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 7699\n",
+ "Discriminator Loss: tf.Tensor(1.8258516, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.67096514, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 7700\n",
+ "Discriminator Loss: tf.Tensor(0.57861114, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.506414, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 7701\n",
+ "Discriminator Loss: tf.Tensor(1.4694155, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.38875058, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 7702\n",
+ "Discriminator Loss: tf.Tensor(0.7857213, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.4127773, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 7703\n",
+ "Discriminator Loss: tf.Tensor(1.2996848, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.22616167, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 7704\n",
+ "Discriminator Loss: tf.Tensor(0.4748389, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.97790575, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 7705\n",
+ "Discriminator Loss: tf.Tensor(1.0896292, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.284297, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 7706\n",
+ "Discriminator Loss: tf.Tensor(0.99969417, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.08790839, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 7707\n",
+ "Discriminator Loss: tf.Tensor(0.63996977, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.696529, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 7708\n",
+ "Discriminator Loss: tf.Tensor(1.314366, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.12346622, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 7709\n",
+ "Discriminator Loss: tf.Tensor(0.2493667, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.5372788, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 7710\n",
+ "Discriminator Loss: tf.Tensor(1.1793232, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.04664095, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 7711\n",
+ "Discriminator Loss: tf.Tensor(0.4769392, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.1396208, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 7712\n",
+ "Discriminator Loss: tf.Tensor(1.1198828, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.12069822, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 7713\n",
+ "Discriminator Loss: tf.Tensor(1.0098834, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.1483216, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 7714\n",
+ "Discriminator Loss: tf.Tensor(0.50350857, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.55999404, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 7715\n",
+ "Discriminator Loss: tf.Tensor(0.7045024, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.9097252, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 7716\n",
+ "Discriminator Loss: tf.Tensor(1.0569403, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.08719995, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 7717\n",
+ "Discriminator Loss: tf.Tensor(0.51827633, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.5789875, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 7718\n",
+ "Discriminator Loss: tf.Tensor(0.6574991, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.45438763, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 7719\n",
+ "Discriminator Loss: tf.Tensor(0.7952665, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.133635, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 7720\n",
+ "Discriminator Loss: tf.Tensor(0.5050877, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.65718204, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 7721\n",
+ "Discriminator Loss: tf.Tensor(1.0521367, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.6482036, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 7722\n",
+ "Discriminator Loss: tf.Tensor(1.8313214, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.70314914, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 7723\n",
+ "Discriminator Loss: tf.Tensor(0.88295007, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.1997762, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 7724\n",
+ "Discriminator Loss: tf.Tensor(1.5022885, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.43713498, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 7725\n",
+ "Discriminator Loss: tf.Tensor(1.0116489, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.5751623, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 7726\n",
+ "Discriminator Loss: tf.Tensor(1.2119664, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.11078617, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 7727\n",
+ "Discriminator Loss: tf.Tensor(0.43821186, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.2590181, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 7728\n",
+ "Discriminator Loss: tf.Tensor(0.61778915, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.46193424, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 7729\n",
+ "Discriminator Loss: tf.Tensor(0.7164906, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.4755037, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 7730\n",
+ "Discriminator Loss: tf.Tensor(0.8276497, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.33744383, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 7731\n",
+ "Discriminator Loss: tf.Tensor(1.0144095, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.3650753, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 7732\n",
+ "Discriminator Loss: tf.Tensor(0.5487981, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.52692026, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 7733\n",
+ "Discriminator Loss: tf.Tensor(1.0060532, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.3831203, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 7734\n",
+ "Discriminator Loss: tf.Tensor(0.8618736, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.37288937, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 7735\n",
+ "Discriminator Loss: tf.Tensor(0.6710587, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.3891098, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 7736\n",
+ "Discriminator Loss: tf.Tensor(1.1312344, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.09087035, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 7737\n",
+ "Discriminator Loss: tf.Tensor(0.75226545, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.5755975, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 7738\n",
+ "Discriminator Loss: tf.Tensor(0.64761245, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.4958513, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 7739\n",
+ "Discriminator Loss: tf.Tensor(0.83518165, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.8700168, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 7740\n",
+ "Discriminator Loss: tf.Tensor(0.3550813, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.917613, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 7741\n",
+ "Discriminator Loss: tf.Tensor(1.3444533, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(3.5988054, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 7742\n",
+ "Discriminator Loss: tf.Tensor(0.7755975, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.26419663, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 7743\n",
+ "Discriminator Loss: tf.Tensor(0.5262964, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.5612257, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 7744\n",
+ "Discriminator Loss: tf.Tensor(0.09146036, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.2914661, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 7745\n",
+ "Discriminator Loss: tf.Tensor(0.1661753, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.92197734, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 7746\n",
+ "Discriminator Loss: tf.Tensor(1.303355, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(3.2302773, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 7747\n",
+ "Discriminator Loss: tf.Tensor(0.31097385, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.0346769, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 7748\n",
+ "Discriminator Loss: tf.Tensor(0.9250234, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.5486339, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 7749\n",
+ "Discriminator Loss: tf.Tensor(1.641933, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.7530477, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 7750\n",
+ "Discriminator Loss: tf.Tensor(0.38672677, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.8710893, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 7751\n",
+ "Discriminator Loss: tf.Tensor(0.7273935, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.052194, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 7752\n",
+ "Discriminator Loss: tf.Tensor(0.45415518, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.7866824, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 7753\n",
+ "Discriminator Loss: tf.Tensor(1.1076674, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.1756713, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 7754\n",
+ "Discriminator Loss: tf.Tensor(0.6325741, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.5210484, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 7755\n",
+ "Discriminator Loss: tf.Tensor(1.2376153, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.1453311, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 7756\n",
+ "Discriminator Loss: tf.Tensor(0.4282136, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.67278004, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 7757\n",
+ "Discriminator Loss: tf.Tensor(0.9572059, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.1582193, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 7758\n",
+ "Discriminator Loss: tf.Tensor(0.73779887, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.38212243, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 7759\n",
+ "Discriminator Loss: tf.Tensor(0.9121871, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.0589883, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 7760\n",
+ "Discriminator Loss: tf.Tensor(0.86023474, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.33780065, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 7761\n",
+ "Discriminator Loss: tf.Tensor(0.73854417, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.8880811, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 7762\n",
+ "Discriminator Loss: tf.Tensor(0.88974625, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.39765298, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 7763\n",
+ "Discriminator Loss: tf.Tensor(0.38630274, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.7647101, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 7764\n",
+ "Discriminator Loss: tf.Tensor(0.44995156, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.6446278, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 7765\n",
+ "Discriminator Loss: tf.Tensor(1.4316946, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.9455445, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 7766\n",
+ "Discriminator Loss: tf.Tensor(0.862749, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.29540277, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 7767\n",
+ "Discriminator Loss: tf.Tensor(0.73471534, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.7189525, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 7768\n",
+ "Discriminator Loss: tf.Tensor(0.7117579, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.33441582, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 7769\n",
+ "Discriminator Loss: tf.Tensor(0.83076316, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.116062, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 7770\n",
+ "Discriminator Loss: tf.Tensor(0.7115285, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.5932422, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 7771\n",
+ "Discriminator Loss: tf.Tensor(1.0057921, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.6108391, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 7772\n",
+ "Discriminator Loss: tf.Tensor(0.7990339, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.33637628, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 7773\n",
+ "Discriminator Loss: tf.Tensor(0.75253725, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(3.26488, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 7774\n",
+ "Discriminator Loss: tf.Tensor(0.3768295, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.73595905, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 7775\n",
+ "Discriminator Loss: tf.Tensor(0.44597936, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(3.2024956, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 7776\n",
+ "Discriminator Loss: tf.Tensor(0.3022567, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.3404268, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 7777\n",
+ "Discriminator Loss: tf.Tensor(1.3574622, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.08395323, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 7778\n",
+ "Discriminator Loss: tf.Tensor(1.2257423, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.469106, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 7779\n",
+ "Discriminator Loss: tf.Tensor(1.0495915, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.05696094, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 7780\n",
+ "Discriminator Loss: tf.Tensor(0.5019223, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.2813103, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 7781\n",
+ "Discriminator Loss: tf.Tensor(0.2156871, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.9160865, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 7782\n",
+ "Discriminator Loss: tf.Tensor(1.4390738, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(4.02142, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 7783\n",
+ "Discriminator Loss: tf.Tensor(0.17709398, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.362754, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 7784\n",
+ "Discriminator Loss: tf.Tensor(1.0553609, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.03004794, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 7785\n",
+ "Discriminator Loss: tf.Tensor(0.6150432, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.3701048, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 7786\n",
+ "Discriminator Loss: tf.Tensor(0.7362536, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.49620438, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 7787\n",
+ "Discriminator Loss: tf.Tensor(0.97257274, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(3.6802447, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 7788\n",
+ "Discriminator Loss: tf.Tensor(0.30568326, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.88765806, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 7789\n",
+ "Discriminator Loss: tf.Tensor(1.5106051, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(3.613491, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 7790\n",
+ "Discriminator Loss: tf.Tensor(0.47604156, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.6406043, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 7791\n",
+ "Discriminator Loss: tf.Tensor(0.58372134, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.6454434, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 7792\n",
+ "Discriminator Loss: tf.Tensor(0.22792104, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.3272067, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 7793\n",
+ "Discriminator Loss: tf.Tensor(0.8031444, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.27535924, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 7794\n",
+ "Discriminator Loss: tf.Tensor(1.9842212, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(3.026766, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 7795\n",
+ "Discriminator Loss: tf.Tensor(0.40539366, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.7889131, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 7796\n",
+ "Discriminator Loss: tf.Tensor(0.7947788, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.2073808, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 7797\n",
+ "Discriminator Loss: tf.Tensor(0.46179858, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.6952164, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 7798\n",
+ "Discriminator Loss: tf.Tensor(1.2811899, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.6179416, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 7799\n",
+ "Discriminator Loss: tf.Tensor(0.22819944, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.859796, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 7800\n",
+ "Discriminator Loss: tf.Tensor(0.87316024, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.8706207, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 7801\n",
+ "Discriminator Loss: tf.Tensor(0.26336825, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.2386471, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 7802\n",
+ "Discriminator Loss: tf.Tensor(0.6281149, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.4314889, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 7803\n",
+ "Discriminator Loss: tf.Tensor(0.9191874, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.37403, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 7804\n",
+ "Discriminator Loss: tf.Tensor(0.08248952, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.0445476, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 7805\n",
+ "Discriminator Loss: tf.Tensor(0.44591787, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.67406344, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 7806\n",
+ "Discriminator Loss: tf.Tensor(1.9180424, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.9507396, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 7807\n",
+ "Discriminator Loss: tf.Tensor(0.6847688, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.4798248, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 7808\n",
+ "Discriminator Loss: tf.Tensor(0.97157156, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.6404728, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 7809\n",
+ "Discriminator Loss: tf.Tensor(0.8321174, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.46498525, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 7810\n",
+ "Discriminator Loss: tf.Tensor(0.801625, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.133371, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 7811\n",
+ "Discriminator Loss: tf.Tensor(0.5839652, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.6101959, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 7812\n",
+ "Discriminator Loss: tf.Tensor(1.2398592, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.553771, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 7813\n",
+ "Discriminator Loss: tf.Tensor(0.07657563, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.0257248, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 7814\n",
+ "Discriminator Loss: tf.Tensor(0.16148777, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.102183, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 7815\n",
+ "Discriminator Loss: tf.Tensor(0.8538953, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.55070543, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 7816\n",
+ "Discriminator Loss: tf.Tensor(1.7226627, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.2934687, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 7817\n",
+ "Discriminator Loss: tf.Tensor(0.9624019, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.9056495, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 7818\n",
+ "Discriminator Loss: tf.Tensor(1.3567144, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.6861591, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 7819\n",
+ "Discriminator Loss: tf.Tensor(1.3206365, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.16953321, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 7820\n",
+ "Discriminator Loss: tf.Tensor(0.638823, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.1422364, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 7821\n",
+ "Discriminator Loss: tf.Tensor(0.99531054, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.26915377, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 7822\n",
+ "Discriminator Loss: tf.Tensor(0.6308786, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.4346018, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 7823\n",
+ "Discriminator Loss: tf.Tensor(1.1773456, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.405589, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 7824\n",
+ "Discriminator Loss: tf.Tensor(0.7911625, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.4551092, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 7825\n",
+ "Discriminator Loss: tf.Tensor(1.1837535, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.0049220123, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 7826\n",
+ "Discriminator Loss: tf.Tensor(0.7227102, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.349966, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 7827\n",
+ "Discriminator Loss: tf.Tensor(0.86550224, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.3480154, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 7828\n",
+ "Discriminator Loss: tf.Tensor(0.8159032, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.3849049, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 7829\n",
+ "Discriminator Loss: tf.Tensor(1.1850929, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.1520883, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 7830\n",
+ "Discriminator Loss: tf.Tensor(0.5168722, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.97501993, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 7831\n",
+ "Discriminator Loss: tf.Tensor(0.84287083, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.9248664, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 7832\n",
+ "Discriminator Loss: tf.Tensor(1.2205634, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.732009, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 7833\n",
+ "Discriminator Loss: tf.Tensor(2.300077, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-1.2358514, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 7834\n",
+ "Discriminator Loss: tf.Tensor(0.88070285, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.3676023, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 7835\n",
+ "Discriminator Loss: tf.Tensor(0.54934967, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.6642823, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 7836\n",
+ "Discriminator Loss: tf.Tensor(0.1546233, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.6400875, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 7837\n",
+ "Discriminator Loss: tf.Tensor(0.32039547, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.8221758, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 7838\n",
+ "Discriminator Loss: tf.Tensor(1.1954968, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.2068305, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 7839\n",
+ "Discriminator Loss: tf.Tensor(1.1621773, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.06986701, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 7840\n",
+ "Discriminator Loss: tf.Tensor(0.7009162, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.4439039, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 7841\n",
+ "Discriminator Loss: tf.Tensor(1.2343408, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.043289185, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 7842\n",
+ "Discriminator Loss: tf.Tensor(0.6665927, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.4360634, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 7843\n",
+ "Discriminator Loss: tf.Tensor(1.4206139, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.3720076, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 7844\n",
+ "Discriminator Loss: tf.Tensor(0.6857351, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.6297547, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 7845\n",
+ "Discriminator Loss: tf.Tensor(0.66463923, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.5048072, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 7846\n",
+ "Discriminator Loss: tf.Tensor(0.6057137, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.146083, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 7847\n",
+ "Discriminator Loss: tf.Tensor(0.9071198, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.39663127, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 7848\n",
+ "Discriminator Loss: tf.Tensor(0.49451187, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.8816301, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 7849\n",
+ "Discriminator Loss: tf.Tensor(1.4920958, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.3672135, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 7850\n",
+ "Discriminator Loss: tf.Tensor(0.7439325, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.8272914, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 7851\n",
+ "Discriminator Loss: tf.Tensor(0.69798255, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.45716763, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 7852\n",
+ "Discriminator Loss: tf.Tensor(1.2035501, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.2636592, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 7853\n",
+ "Discriminator Loss: tf.Tensor(0.765613, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.54996634, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 7854\n",
+ "Discriminator Loss: tf.Tensor(0.46313, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.206624, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 7855\n",
+ "Discriminator Loss: tf.Tensor(0.17270423, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.96727246, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 7856\n",
+ "Discriminator Loss: tf.Tensor(1.4556473, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(3.2090886, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 7857\n",
+ "Discriminator Loss: tf.Tensor(0.24256423, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.1362368, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 7858\n",
+ "Discriminator Loss: tf.Tensor(0.5485499, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.6908515, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 7859\n",
+ "Discriminator Loss: tf.Tensor(0.8765043, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.8733783, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 7860\n",
+ "Discriminator Loss: tf.Tensor(0.76657015, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.2866322, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 7861\n",
+ "Discriminator Loss: tf.Tensor(1.0068412, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.9124026, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 7862\n",
+ "Discriminator Loss: tf.Tensor(0.84450054, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.26870617, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 7863\n",
+ "Discriminator Loss: tf.Tensor(0.61691713, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.3122609, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 7864\n",
+ "Discriminator Loss: tf.Tensor(0.3217116, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.7675564, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 7865\n",
+ "Discriminator Loss: tf.Tensor(1.3067118, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(3.7927926, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 7866\n",
+ "Discriminator Loss: tf.Tensor(0.44662648, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.6967521, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 7867\n",
+ "Discriminator Loss: tf.Tensor(0.67656076, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.9235609, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 7868\n",
+ "Discriminator Loss: tf.Tensor(0.16427892, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.2197686, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 7869\n",
+ "Discriminator Loss: tf.Tensor(1.459398, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.25278357, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 7870\n",
+ "Discriminator Loss: tf.Tensor(0.19636258, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.7688494, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 7871\n",
+ "Discriminator Loss: tf.Tensor(1.1614078, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.004091034, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 7872\n",
+ "Discriminator Loss: tf.Tensor(1.9440916, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.3991597, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 7873\n",
+ "Discriminator Loss: tf.Tensor(0.74015605, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.3379002, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 7874\n",
+ "Discriminator Loss: tf.Tensor(0.6594329, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.4923468, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 7875\n",
+ "Discriminator Loss: tf.Tensor(0.8603983, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.24093847, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 7876\n",
+ "Discriminator Loss: tf.Tensor(0.69435686, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.5272359, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 7877\n",
+ "Discriminator Loss: tf.Tensor(1.5241275, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.27305084, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 7878\n",
+ "Discriminator Loss: tf.Tensor(0.66059095, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.2888647, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 7879\n",
+ "Discriminator Loss: tf.Tensor(1.515675, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.4838687, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 7880\n",
+ "Discriminator Loss: tf.Tensor(0.8925106, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.3712568, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 7881\n",
+ "Discriminator Loss: tf.Tensor(1.4458604, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.060423005, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 7882\n",
+ "Discriminator Loss: tf.Tensor(0.50043774, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.3909086, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 7883\n",
+ "Discriminator Loss: tf.Tensor(0.9764505, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.09198239, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 7884\n",
+ "Discriminator Loss: tf.Tensor(0.8367871, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.9396529, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 7885\n",
+ "Discriminator Loss: tf.Tensor(0.40806746, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.8236646, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 7886\n",
+ "Discriminator Loss: tf.Tensor(0.7760457, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.4028952, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 7887\n",
+ "Discriminator Loss: tf.Tensor(0.9559519, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.20906305, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 7888\n",
+ "Discriminator Loss: tf.Tensor(1.0441633, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.0301163, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 7889\n",
+ "Discriminator Loss: tf.Tensor(1.1081904, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.21662529, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 7890\n",
+ "Discriminator Loss: tf.Tensor(0.42846268, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.430778, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 7891\n",
+ "Discriminator Loss: tf.Tensor(0.8454841, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.22515444, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 7892\n",
+ "Discriminator Loss: tf.Tensor(0.49580467, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.4100256, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 7893\n",
+ "Discriminator Loss: tf.Tensor(0.09744576, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.268817, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 7894\n",
+ "Discriminator Loss: tf.Tensor(0.98256797, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.25158226, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 7895\n",
+ "Discriminator Loss: tf.Tensor(1.8618475, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(3.1196907, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 7896\n",
+ "Discriminator Loss: tf.Tensor(0.3533843, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.8759946, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 7897\n",
+ "Discriminator Loss: tf.Tensor(0.6074667, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.1589706, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 7898\n",
+ "Discriminator Loss: tf.Tensor(0.6436002, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.51182073, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 7899\n",
+ "Discriminator Loss: tf.Tensor(0.99302995, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.4006624, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 7900\n",
+ "Discriminator Loss: tf.Tensor(0.86051273, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.74246526, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 7901\n",
+ "Discriminator Loss: tf.Tensor(0.88189703, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.7311229, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 7902\n",
+ "Discriminator Loss: tf.Tensor(1.0236264, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.1277784, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 7903\n",
+ "Discriminator Loss: tf.Tensor(0.80920374, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.7866157, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 7904\n",
+ "Discriminator Loss: tf.Tensor(0.9462278, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.62295127, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 7905\n",
+ "Discriminator Loss: tf.Tensor(1.0907772, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.9690037, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 7906\n",
+ "Discriminator Loss: tf.Tensor(0.8024063, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.35699716, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 7907\n",
+ "Discriminator Loss: tf.Tensor(0.28514147, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.8274482, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 7908\n",
+ "Discriminator Loss: tf.Tensor(0.29767498, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.9753859, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 7909\n",
+ "Discriminator Loss: tf.Tensor(0.9296346, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.0095456, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 7910\n",
+ "Discriminator Loss: tf.Tensor(0.9284742, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.144441, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 7911\n",
+ "Discriminator Loss: tf.Tensor(0.8803257, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.6229963, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 7912\n",
+ "Discriminator Loss: tf.Tensor(0.9401788, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.23801208, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 7913\n",
+ "Discriminator Loss: tf.Tensor(1.0507594, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.7076811, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 7914\n",
+ "Discriminator Loss: tf.Tensor(0.7840482, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.47761774, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 7915\n",
+ "Discriminator Loss: tf.Tensor(0.30444258, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.7580452, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 7916\n",
+ "Discriminator Loss: tf.Tensor(0.8213196, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.44469312, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 7917\n",
+ "Discriminator Loss: tf.Tensor(0.66770965, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.380314, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 7918\n",
+ "Discriminator Loss: tf.Tensor(0.39617527, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.0517527, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 7919\n",
+ "Discriminator Loss: tf.Tensor(1.4766473, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.2744483, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 7920\n",
+ "Discriminator Loss: tf.Tensor(0.67625344, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.8258377, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 7921\n",
+ "Discriminator Loss: tf.Tensor(1.0179267, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.041475322, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 7922\n",
+ "Discriminator Loss: tf.Tensor(0.43324474, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.8871886, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 7923\n",
+ "Discriminator Loss: tf.Tensor(0.7654556, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.69306415, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 7924\n",
+ "Discriminator Loss: tf.Tensor(0.5427052, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.6437782, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 7925\n",
+ "Discriminator Loss: tf.Tensor(3.2918162, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-2.1326683, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 7926\n",
+ "Discriminator Loss: tf.Tensor(0.8051604, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.784578, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 7927\n",
+ "Discriminator Loss: tf.Tensor(0.99067104, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.23664545, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 7928\n",
+ "Discriminator Loss: tf.Tensor(0.5672353, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.7762376, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 7929\n",
+ "Discriminator Loss: tf.Tensor(1.1539897, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.11678388, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 7930\n",
+ "Discriminator Loss: tf.Tensor(0.7662161, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.2340379, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 7931\n",
+ "Discriminator Loss: tf.Tensor(0.54369444, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.7002979, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 7932\n",
+ "Discriminator Loss: tf.Tensor(1.2128607, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.7788086, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 7933\n",
+ "Discriminator Loss: tf.Tensor(0.434178, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.87233573, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 7934\n",
+ "Discriminator Loss: tf.Tensor(0.4554366, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.3681037, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 7935\n",
+ "Discriminator Loss: tf.Tensor(0.371678, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.874258, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 7936\n",
+ "Discriminator Loss: tf.Tensor(1.2533872, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.7481167, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 7937\n",
+ "Discriminator Loss: tf.Tensor(0.47502327, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.90526277, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 7938\n",
+ "Discriminator Loss: tf.Tensor(1.3173256, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.742875, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 7939\n",
+ "Discriminator Loss: tf.Tensor(1.2266955, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.1849113, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 7940\n",
+ "Discriminator Loss: tf.Tensor(0.3979774, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.1165347, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 7941\n",
+ "Discriminator Loss: tf.Tensor(0.5955436, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.8454979, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 7942\n",
+ "Discriminator Loss: tf.Tensor(0.7802061, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.6021507, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 7943\n",
+ "Discriminator Loss: tf.Tensor(0.31434333, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.1217238, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 7944\n",
+ "Discriminator Loss: tf.Tensor(1.7979567, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.7731323, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 7945\n",
+ "Discriminator Loss: tf.Tensor(0.59975076, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.3707184, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 7946\n",
+ "Discriminator Loss: tf.Tensor(1.5912662, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.3353623, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 7947\n",
+ "Discriminator Loss: tf.Tensor(0.56674844, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.954655, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 7948\n",
+ "Discriminator Loss: tf.Tensor(0.8335329, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.39817762, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 7949\n",
+ "Discriminator Loss: tf.Tensor(0.7531327, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.1803648, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 7950\n",
+ "Discriminator Loss: tf.Tensor(0.5446563, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.7355698, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 7951\n",
+ "Discriminator Loss: tf.Tensor(0.6026813, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.2296932, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 7952\n",
+ "Discriminator Loss: tf.Tensor(0.09899273, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.96793985, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 7953\n",
+ "Discriminator Loss: tf.Tensor(1.0976872, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.8813732, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 7954\n",
+ "Discriminator Loss: tf.Tensor(0.6986205, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.48203373, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 7955\n",
+ "Discriminator Loss: tf.Tensor(1.1951684, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.168558, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 7956\n",
+ "Discriminator Loss: tf.Tensor(1.1088114, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.26014885, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 7957\n",
+ "Discriminator Loss: tf.Tensor(0.922855, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.0544393, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 7958\n",
+ "Discriminator Loss: tf.Tensor(0.9705171, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.10122914, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 7959\n",
+ "Discriminator Loss: tf.Tensor(0.851653, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.3668141, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 7960\n",
+ "Discriminator Loss: tf.Tensor(0.67257154, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.44678426, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 7961\n",
+ "Discriminator Loss: tf.Tensor(1.1004415, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.3043354, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 7962\n",
+ "Discriminator Loss: tf.Tensor(0.5107931, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.71702117, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 7963\n",
+ "Discriminator Loss: tf.Tensor(0.8655837, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.348602, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 7964\n",
+ "Discriminator Loss: tf.Tensor(0.579613, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.58537525, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 7965\n",
+ "Discriminator Loss: tf.Tensor(1.0660336, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.3144515, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 7966\n",
+ "Discriminator Loss: tf.Tensor(1.0400902, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.008512754, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 7967\n",
+ "Discriminator Loss: tf.Tensor(0.4828027, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.9515947, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 7968\n",
+ "Discriminator Loss: tf.Tensor(0.49888718, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.7519517, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 7969\n",
+ "Discriminator Loss: tf.Tensor(1.2625139, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.8976471, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 7970\n",
+ "Discriminator Loss: tf.Tensor(0.829986, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.32350555, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 7971\n",
+ "Discriminator Loss: tf.Tensor(0.73345035, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.1028078, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 7972\n",
+ "Discriminator Loss: tf.Tensor(0.30144897, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.71725845, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 7973\n",
+ "Discriminator Loss: tf.Tensor(0.556774, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.8354893, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 7974\n",
+ "Discriminator Loss: tf.Tensor(0.26590833, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.3172034, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 7975\n",
+ "Discriminator Loss: tf.Tensor(1.0951171, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.06163678, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 7976\n",
+ "Discriminator Loss: tf.Tensor(1.1454048, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.4296005, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 7977\n",
+ "Discriminator Loss: tf.Tensor(1.2873833, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.11492654, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 7978\n",
+ "Discriminator Loss: tf.Tensor(0.6788765, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.2863626, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 7979\n",
+ "Discriminator Loss: tf.Tensor(1.7366551, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.41339865, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 7980\n",
+ "Discriminator Loss: tf.Tensor(0.6986388, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.3159608, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 7981\n",
+ "Discriminator Loss: tf.Tensor(1.5287238, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.475453, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 7982\n",
+ "Discriminator Loss: tf.Tensor(0.74875367, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.59516, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 7983\n",
+ "Discriminator Loss: tf.Tensor(0.73226243, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.581107, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 7984\n",
+ "Discriminator Loss: tf.Tensor(0.7432257, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.9375728, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 7985\n",
+ "Discriminator Loss: tf.Tensor(0.18183738, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.9201563, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 7986\n",
+ "Discriminator Loss: tf.Tensor(1.0064745, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.3733592, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 7987\n",
+ "Discriminator Loss: tf.Tensor(2.0520334, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.6446454, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 7988\n",
+ "Discriminator Loss: tf.Tensor(1.2725009, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.5145075, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 7989\n",
+ "Discriminator Loss: tf.Tensor(0.7640671, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.3503929, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 7990\n",
+ "Discriminator Loss: tf.Tensor(1.1035489, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.0833542, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 7991\n",
+ "Discriminator Loss: tf.Tensor(1.6628253, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.15153955, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 7992\n",
+ "Discriminator Loss: tf.Tensor(0.6854289, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.3817128, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 7993\n",
+ "Discriminator Loss: tf.Tensor(1.350307, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.26946965, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 7994\n",
+ "Discriminator Loss: tf.Tensor(0.42010185, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.8197852, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 7995\n",
+ "Discriminator Loss: tf.Tensor(0.22215065, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.0017184, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 7996\n",
+ "Discriminator Loss: tf.Tensor(0.311227, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.9687301, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 7997\n",
+ "Discriminator Loss: tf.Tensor(0.27185774, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.2213019, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 7998\n",
+ "Discriminator Loss: tf.Tensor(0.9358667, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.12083006, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 7999\n",
+ "Discriminator Loss: tf.Tensor(0.9629251, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.0680587, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 8000\n",
+ "Discriminator Loss: tf.Tensor(0.5049751, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.8905298, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 8001\n",
+ "Discriminator Loss: tf.Tensor(0.989443, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.7701046, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 8002\n",
+ "Discriminator Loss: tf.Tensor(0.71829957, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.36841002, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 8003\n",
+ "Discriminator Loss: tf.Tensor(1.2829077, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.519924, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 8004\n",
+ "Discriminator Loss: tf.Tensor(0.49828246, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.65016276, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 8005\n",
+ "Discriminator Loss: tf.Tensor(1.3928097, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.1842139, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 8006\n",
+ "Discriminator Loss: tf.Tensor(0.71455747, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.39841655, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 8007\n",
+ "Discriminator Loss: tf.Tensor(0.7052761, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.0419242, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 8008\n",
+ "Discriminator Loss: tf.Tensor(0.39165524, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.71960706, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 8009\n",
+ "Discriminator Loss: tf.Tensor(0.9038123, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.7540424, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 8010\n",
+ "Discriminator Loss: tf.Tensor(0.098365255, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.5969292, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 8011\n",
+ "Discriminator Loss: tf.Tensor(0.40898412, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.885714, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 8012\n",
+ "Discriminator Loss: tf.Tensor(0.5287268, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(3.2384937, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 8013\n",
+ "Discriminator Loss: tf.Tensor(0.31277102, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.88892, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 8014\n",
+ "Discriminator Loss: tf.Tensor(1.4052026, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.4426665, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 8015\n",
+ "Discriminator Loss: tf.Tensor(1.257518, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.21686347, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 8016\n",
+ "Discriminator Loss: tf.Tensor(0.4387986, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.2345473, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 8017\n",
+ "Discriminator Loss: tf.Tensor(2.0509367, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.77808946, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 8018\n",
+ "Discriminator Loss: tf.Tensor(0.7402962, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.5466708, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 8019\n",
+ "Discriminator Loss: tf.Tensor(1.381885, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.314487, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 8020\n",
+ "Discriminator Loss: tf.Tensor(0.75369394, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.7448224, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 8021\n",
+ "Discriminator Loss: tf.Tensor(1.4765313, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.41749802, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 8022\n",
+ "Discriminator Loss: tf.Tensor(0.7613554, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.9158725, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 8023\n",
+ "Discriminator Loss: tf.Tensor(0.7254501, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.32481405, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 8024\n",
+ "Discriminator Loss: tf.Tensor(0.53905505, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.232402, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 8025\n",
+ "Discriminator Loss: tf.Tensor(0.26345426, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.0814843, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 8026\n",
+ "Discriminator Loss: tf.Tensor(1.4576522, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.38013268, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 8027\n",
+ "Discriminator Loss: tf.Tensor(0.91796947, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.622992, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 8028\n",
+ "Discriminator Loss: tf.Tensor(0.9921222, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.08652971, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 8029\n",
+ "Discriminator Loss: tf.Tensor(0.8648141, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.0892084, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 8030\n",
+ "Discriminator Loss: tf.Tensor(0.78239733, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.36856484, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 8031\n",
+ "Discriminator Loss: tf.Tensor(1.1488461, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.3695865, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 8032\n",
+ "Discriminator Loss: tf.Tensor(0.6161686, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.469494, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 8033\n",
+ "Discriminator Loss: tf.Tensor(0.8137698, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.3032286, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 8034\n",
+ "Discriminator Loss: tf.Tensor(0.7809972, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.24082007, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 8035\n",
+ "Discriminator Loss: tf.Tensor(0.5661062, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.075387, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 8036\n",
+ "Discriminator Loss: tf.Tensor(0.7664217, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.33289722, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 8037\n",
+ "Discriminator Loss: tf.Tensor(0.9461657, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.7056923, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 8038\n",
+ "Discriminator Loss: tf.Tensor(1.4323422, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.40162495, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 8039\n",
+ "Discriminator Loss: tf.Tensor(1.0404458, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.2266152, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 8040\n",
+ "Discriminator Loss: tf.Tensor(0.9807035, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.11149039, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 8041\n",
+ "Discriminator Loss: tf.Tensor(0.85036385, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.9687554, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 8042\n",
+ "Discriminator Loss: tf.Tensor(0.8605755, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.22071783, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 8043\n",
+ "Discriminator Loss: tf.Tensor(0.6226478, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.8879584, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 8044\n",
+ "Discriminator Loss: tf.Tensor(1.1264944, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.07348364, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 8045\n",
+ "Discriminator Loss: tf.Tensor(1.005005, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.213443, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 8046\n",
+ "Discriminator Loss: tf.Tensor(0.5651554, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.509433, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 8047\n",
+ "Discriminator Loss: tf.Tensor(0.87324965, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.771021, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 8048\n",
+ "Discriminator Loss: tf.Tensor(0.44285932, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.6601209, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 8049\n",
+ "Discriminator Loss: tf.Tensor(1.1353805, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.5662708, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 8050\n",
+ "Discriminator Loss: tf.Tensor(0.77042735, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.8098443, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 8051\n",
+ "Discriminator Loss: tf.Tensor(0.44636542, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.7076768, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 8052\n",
+ "Discriminator Loss: tf.Tensor(1.40308, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.2506079, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 8053\n",
+ "Discriminator Loss: tf.Tensor(0.78260314, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.8551064, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 8054\n",
+ "Discriminator Loss: tf.Tensor(0.87497187, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.3953229, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 8055\n",
+ "Discriminator Loss: tf.Tensor(0.41192445, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.0584087, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 8056\n",
+ "Discriminator Loss: tf.Tensor(1.0081451, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.17352422, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 8057\n",
+ "Discriminator Loss: tf.Tensor(0.78372073, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.5136688, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 8058\n",
+ "Discriminator Loss: tf.Tensor(0.1190146, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.0360473, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 8059\n",
+ "Discriminator Loss: tf.Tensor(0.6149336, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.5105974, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 8060\n",
+ "Discriminator Loss: tf.Tensor(1.2411423, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(3.0660021, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 8061\n",
+ "Discriminator Loss: tf.Tensor(0.6908905, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.6266971, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 8062\n",
+ "Discriminator Loss: tf.Tensor(0.5451512, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.3312013, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 8063\n",
+ "Discriminator Loss: tf.Tensor(0.38530934, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.1384656, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 8064\n",
+ "Discriminator Loss: tf.Tensor(1.1837993, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.015157218, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 8065\n",
+ "Discriminator Loss: tf.Tensor(0.5387645, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.1918106, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 8066\n",
+ "Discriminator Loss: tf.Tensor(0.1389459, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.178675, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 8067\n",
+ "Discriminator Loss: tf.Tensor(1.0192411, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.3618165, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 8068\n",
+ "Discriminator Loss: tf.Tensor(1.4963359, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.2754314, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 8069\n",
+ "Discriminator Loss: tf.Tensor(0.9388704, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.18144931, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 8070\n",
+ "Discriminator Loss: tf.Tensor(0.72085434, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.6598778, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 8071\n",
+ "Discriminator Loss: tf.Tensor(1.3046343, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.2972174, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 8072\n",
+ "Discriminator Loss: tf.Tensor(0.81297064, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.6517814, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 8073\n",
+ "Discriminator Loss: tf.Tensor(1.6051769, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.47683224, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 8074\n",
+ "Discriminator Loss: tf.Tensor(0.6893663, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.6765152, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 8075\n",
+ "Discriminator Loss: tf.Tensor(0.25856686, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.83141875, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 8076\n",
+ "Discriminator Loss: tf.Tensor(0.72351146, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.264617, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 8077\n",
+ "Discriminator Loss: tf.Tensor(0.6280553, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.5063217, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 8078\n",
+ "Discriminator Loss: tf.Tensor(1.26893, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.0995328, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 8079\n",
+ "Discriminator Loss: tf.Tensor(0.87262034, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.3461984, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 8080\n",
+ "Discriminator Loss: tf.Tensor(0.84032094, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.5844392, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 8081\n",
+ "Discriminator Loss: tf.Tensor(1.1221007, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.033448543, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 8082\n",
+ "Discriminator Loss: tf.Tensor(0.8220027, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.6104187, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 8083\n",
+ "Discriminator Loss: tf.Tensor(1.0606937, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.033507362, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 8084\n",
+ "Discriminator Loss: tf.Tensor(0.43793488, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.8879343, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 8085\n",
+ "Discriminator Loss: tf.Tensor(0.53010464, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.679595, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 8086\n",
+ "Discriminator Loss: tf.Tensor(0.6536853, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.9552994, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 8087\n",
+ "Discriminator Loss: tf.Tensor(0.30895483, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.8825523, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 8088\n",
+ "Discriminator Loss: tf.Tensor(1.7106705, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.624169, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 8089\n",
+ "Discriminator Loss: tf.Tensor(0.9620508, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.3144722, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 8090\n",
+ "Discriminator Loss: tf.Tensor(0.4963476, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.0404313, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 8091\n",
+ "Discriminator Loss: tf.Tensor(0.43292025, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.6689968, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 8092\n",
+ "Discriminator Loss: tf.Tensor(0.7889019, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.723513, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 8093\n",
+ "Discriminator Loss: tf.Tensor(0.5363821, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.8134098, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 8094\n",
+ "Discriminator Loss: tf.Tensor(1.0752486, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(3.163935, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 8095\n",
+ "Discriminator Loss: tf.Tensor(0.3163899, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.051527, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 8096\n",
+ "Discriminator Loss: tf.Tensor(0.55892694, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.7011282, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 8097\n",
+ "Discriminator Loss: tf.Tensor(1.1588967, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(3.030486, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 8098\n",
+ "Discriminator Loss: tf.Tensor(0.08129208, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.0163838, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 8099\n",
+ "Discriminator Loss: tf.Tensor(1.2272222, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.9450911, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 8100\n",
+ "Discriminator Loss: tf.Tensor(0.67035747, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.368801, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 8101\n",
+ "Discriminator Loss: tf.Tensor(1.1805387, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.1267383, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 8102\n",
+ "Discriminator Loss: tf.Tensor(0.49440253, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.59284353, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 8103\n",
+ "Discriminator Loss: tf.Tensor(0.63022196, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.031294, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 8104\n",
+ "Discriminator Loss: tf.Tensor(0.13550961, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.1461419, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 8105\n",
+ "Discriminator Loss: tf.Tensor(0.52860093, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.6069195, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 8106\n",
+ "Discriminator Loss: tf.Tensor(0.6919694, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.270401, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 8107\n",
+ "Discriminator Loss: tf.Tensor(0.27674854, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.1063386, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 8108\n",
+ "Discriminator Loss: tf.Tensor(0.94788116, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.07845219, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 8109\n",
+ "Discriminator Loss: tf.Tensor(0.7045264, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.3790948, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 8110\n",
+ "Discriminator Loss: tf.Tensor(0.7758681, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.4063573, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 8111\n",
+ "Discriminator Loss: tf.Tensor(0.7244928, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.8800342, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 8112\n",
+ "Discriminator Loss: tf.Tensor(0.18645447, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.1392502, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 8113\n",
+ "Discriminator Loss: tf.Tensor(0.5814711, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.5149958, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 8114\n",
+ "Discriminator Loss: tf.Tensor(0.86503106, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.4394252, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 8115\n",
+ "Discriminator Loss: tf.Tensor(0.50446457, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.9133962, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 8116\n",
+ "Discriminator Loss: tf.Tensor(1.0705596, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.3303802, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 8117\n",
+ "Discriminator Loss: tf.Tensor(0.922627, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.3948854, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 8118\n",
+ "Discriminator Loss: tf.Tensor(0.54339385, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.1934483, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 8119\n",
+ "Discriminator Loss: tf.Tensor(0.62929773, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.47438678, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 8120\n",
+ "Discriminator Loss: tf.Tensor(0.9790544, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.6087925, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 8121\n",
+ "Discriminator Loss: tf.Tensor(0.7909951, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.46815738, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 8122\n",
+ "Discriminator Loss: tf.Tensor(1.1514655, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.560942, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 8123\n",
+ "Discriminator Loss: tf.Tensor(0.3930811, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.8595529, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 8124\n",
+ "Discriminator Loss: tf.Tensor(0.48134157, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.4983718, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 8125\n",
+ "Discriminator Loss: tf.Tensor(0.9823304, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.18740058, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 8126\n",
+ "Discriminator Loss: tf.Tensor(1.2425798, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.7456791, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 8127\n",
+ "Discriminator Loss: tf.Tensor(0.35688066, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.9947569, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 8128\n",
+ "Discriminator Loss: tf.Tensor(0.3956927, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.8844084, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 8129\n",
+ "Discriminator Loss: tf.Tensor(0.6641199, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.5853595, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 8130\n",
+ "Discriminator Loss: tf.Tensor(1.6491317, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.9395225, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 8131\n",
+ "Discriminator Loss: tf.Tensor(1.1522892, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.08492827, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 8132\n",
+ "Discriminator Loss: tf.Tensor(0.44232556, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.1122224, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 8133\n",
+ "Discriminator Loss: tf.Tensor(0.3842392, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.7487507, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 8134\n",
+ "Discriminator Loss: tf.Tensor(0.8877669, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(3.2055387, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 8135\n",
+ "Discriminator Loss: tf.Tensor(0.1597963, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.3852824, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 8136\n",
+ "Discriminator Loss: tf.Tensor(0.69901663, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.46209967, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 8137\n",
+ "Discriminator Loss: tf.Tensor(0.9149808, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.555929, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 8138\n",
+ "Discriminator Loss: tf.Tensor(0.36835444, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.0122104, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 8139\n",
+ "Discriminator Loss: tf.Tensor(0.53928673, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.6874265, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 8140\n",
+ "Discriminator Loss: tf.Tensor(1.2438219, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.6091022, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 8141\n",
+ "Discriminator Loss: tf.Tensor(1.7949189, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.6943771, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 8142\n",
+ "Discriminator Loss: tf.Tensor(0.7636449, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.5184089, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 8143\n",
+ "Discriminator Loss: tf.Tensor(0.77327275, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.3346169, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 8144\n",
+ "Discriminator Loss: tf.Tensor(1.0415186, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.0787737, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 8145\n",
+ "Discriminator Loss: tf.Tensor(0.7189276, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.499478, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 8146\n",
+ "Discriminator Loss: tf.Tensor(0.55513555, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.0146472, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 8147\n",
+ "Discriminator Loss: tf.Tensor(0.68783116, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.6336703, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 8148\n",
+ "Discriminator Loss: tf.Tensor(0.7451192, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.115166, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 8149\n",
+ "Discriminator Loss: tf.Tensor(0.84608775, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.44120944, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 8150\n",
+ "Discriminator Loss: tf.Tensor(1.1447662, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.629295, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 8151\n",
+ "Discriminator Loss: tf.Tensor(0.37554455, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.6935253, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 8152\n",
+ "Discriminator Loss: tf.Tensor(0.97023517, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.437888, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 8153\n",
+ "Discriminator Loss: tf.Tensor(0.38928342, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.77564496, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 8154\n",
+ "Discriminator Loss: tf.Tensor(0.51054114, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.3234394, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 8155\n",
+ "Discriminator Loss: tf.Tensor(1.6398823, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.5209842, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 8156\n",
+ "Discriminator Loss: tf.Tensor(1.0832951, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.7451274, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 8157\n",
+ "Discriminator Loss: tf.Tensor(0.8725828, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.48704782, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 8158\n",
+ "Discriminator Loss: tf.Tensor(0.9881563, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.4150865, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 8159\n",
+ "Discriminator Loss: tf.Tensor(0.47680077, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.80108476, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 8160\n",
+ "Discriminator Loss: tf.Tensor(0.7917665, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(3.105052, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 8161\n",
+ "Discriminator Loss: tf.Tensor(0.14821947, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.3479124, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 8162\n",
+ "Discriminator Loss: tf.Tensor(0.698556, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.44229364, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 8163\n",
+ "Discriminator Loss: tf.Tensor(1.4165742, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(3.77729, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 8164\n",
+ "Discriminator Loss: tf.Tensor(0.04083429, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.1546737, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 8165\n",
+ "Discriminator Loss: tf.Tensor(70.366455, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.07766805, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 8166\n",
+ "Discriminator Loss: tf.Tensor(29.322184, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.34413555, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 8167\n",
+ "Discriminator Loss: tf.Tensor(12.662803, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.06910151, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 8168\n",
+ "Discriminator Loss: tf.Tensor(5.080746, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.043642294, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 8169\n",
+ "Discriminator Loss: tf.Tensor(3.793535, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.028664775, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 8170\n",
+ "Discriminator Loss: tf.Tensor(3.3524966, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.014416859, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 8171\n",
+ "Discriminator Loss: tf.Tensor(2.98869, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.03220273, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 8172\n",
+ "Discriminator Loss: tf.Tensor(2.8859074, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.060368266, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 8173\n",
+ "Discriminator Loss: tf.Tensor(2.7036428, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.1012448, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 8174\n",
+ "Discriminator Loss: tf.Tensor(2.5295131, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.14415175, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 8175\n",
+ "Discriminator Loss: tf.Tensor(2.4737988, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.18275659, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 8176\n",
+ "Discriminator Loss: tf.Tensor(2.3302433, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.21531303, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 8177\n",
+ "Discriminator Loss: tf.Tensor(2.2206945, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.24863715, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 8178\n",
+ "Discriminator Loss: tf.Tensor(2.1642976, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.27930605, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 8179\n",
+ "Discriminator Loss: tf.Tensor(2.1276984, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.2970975, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 8180\n",
+ "Discriminator Loss: tf.Tensor(2.1065354, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.3230473, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 8181\n",
+ "Discriminator Loss: tf.Tensor(2.0573955, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.35106778, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 8182\n",
+ "Discriminator Loss: tf.Tensor(2.038857, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.3776637, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 8183\n",
+ "Discriminator Loss: tf.Tensor(1.9482404, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.3895435, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 8184\n",
+ "Discriminator Loss: tf.Tensor(1.9303001, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.40684304, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 8185\n",
+ "Discriminator Loss: tf.Tensor(1.9571805, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.42887148, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 8186\n",
+ "Discriminator Loss: tf.Tensor(1.8925201, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.42357823, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 8187\n",
+ "Discriminator Loss: tf.Tensor(1.8861624, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.46633974, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 8188\n",
+ "Discriminator Loss: tf.Tensor(1.9426236, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.48318338, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 8189\n",
+ "Discriminator Loss: tf.Tensor(1.8873657, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.46722236, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 8190\n",
+ "Discriminator Loss: tf.Tensor(1.9526707, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.50007147, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 8191\n",
+ "Discriminator Loss: tf.Tensor(1.9338061, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.53732127, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 8192\n",
+ "Discriminator Loss: tf.Tensor(1.8688561, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.56763303, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 8193\n",
+ "Discriminator Loss: tf.Tensor(1.8715981, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.6121179, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 8194\n",
+ "Discriminator Loss: tf.Tensor(1.8778743, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.7604436, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 8195\n",
+ "Discriminator Loss: tf.Tensor(1.8772932, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.6383609, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 8196\n",
+ "Discriminator Loss: tf.Tensor(1.8753674, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.8255089, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 8197\n",
+ "Discriminator Loss: tf.Tensor(1.8468865, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.7595153, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 8198\n",
+ "Discriminator Loss: tf.Tensor(1.7988319, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.87621814, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 8199\n",
+ "Discriminator Loss: tf.Tensor(1.8031175, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.7448416, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 8200\n",
+ "Discriminator Loss: tf.Tensor(1.8318944, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.7961424, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 8201\n",
+ "Discriminator Loss: tf.Tensor(1.9854985, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.653254, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 8202\n",
+ "Discriminator Loss: tf.Tensor(1.7145137, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.83948845, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 8203\n",
+ "Discriminator Loss: tf.Tensor(1.5688401, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.0680889, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 8204\n",
+ "Discriminator Loss: tf.Tensor(1.848828, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.013933211, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 8205\n",
+ "Discriminator Loss: tf.Tensor(1.7011306, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.2193648, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 8206\n",
+ "Discriminator Loss: tf.Tensor(1.5182766, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.30574855, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 8207\n",
+ "Discriminator Loss: tf.Tensor(1.5188485, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.34417963, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 8208\n",
+ "Discriminator Loss: tf.Tensor(1.50096, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.35165915, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 8209\n",
+ "Discriminator Loss: tf.Tensor(1.7121552, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.34464514, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 8210\n",
+ "Discriminator Loss: tf.Tensor(1.790674, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.4994023, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 8211\n",
+ "Discriminator Loss: tf.Tensor(1.4039106, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.70896864, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 8212\n",
+ "Discriminator Loss: tf.Tensor(1.4097953, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.8735134, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 8213\n",
+ "Discriminator Loss: tf.Tensor(1.6434374, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.2544187, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 8214\n",
+ "Discriminator Loss: tf.Tensor(2.2992923, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-1.1739799, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 8215\n",
+ "Discriminator Loss: tf.Tensor(1.6722199, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.11059181, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 8216\n",
+ "Discriminator Loss: tf.Tensor(1.4428837, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.26955363, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 8217\n",
+ "Discriminator Loss: tf.Tensor(1.2519991, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.42971686, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 8218\n",
+ "Discriminator Loss: tf.Tensor(1.4300697, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.42146865, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 8219\n",
+ "Discriminator Loss: tf.Tensor(1.2870215, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.5661456, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 8220\n",
+ "Discriminator Loss: tf.Tensor(0.7614247, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.73505896, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 8221\n",
+ "Discriminator Loss: tf.Tensor(0.54232955, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.1287581, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 8222\n",
+ "Discriminator Loss: tf.Tensor(1.9996021, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.96397257, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 8223\n",
+ "Discriminator Loss: tf.Tensor(0.8069751, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.86593693, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 8224\n",
+ "Discriminator Loss: tf.Tensor(0.9083537, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.4324232, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 8225\n",
+ "Discriminator Loss: tf.Tensor(1.427765, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.3791021, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 8226\n",
+ "Discriminator Loss: tf.Tensor(0.77538496, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.9505624, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 8227\n",
+ "Discriminator Loss: tf.Tensor(0.51676047, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.5979795, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 8228\n",
+ "Discriminator Loss: tf.Tensor(1.1180704, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.22195832, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 8229\n",
+ "Discriminator Loss: tf.Tensor(0.8705701, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.8531513, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 8230\n",
+ "Discriminator Loss: tf.Tensor(1.433574, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.35763875, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 8231\n",
+ "Discriminator Loss: tf.Tensor(0.8013837, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.4260111, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 8232\n",
+ "Discriminator Loss: tf.Tensor(0.9633867, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.1623102, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 8233\n",
+ "Discriminator Loss: tf.Tensor(0.74776703, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.8972953, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 8234\n",
+ "Discriminator Loss: tf.Tensor(0.549726, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.859708, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 8235\n",
+ "Discriminator Loss: tf.Tensor(0.9028575, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.3251561, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 8236\n",
+ "Discriminator Loss: tf.Tensor(0.9266035, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.0332918, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 8237\n",
+ "Discriminator Loss: tf.Tensor(0.883536, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.28320825, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 8238\n",
+ "Discriminator Loss: tf.Tensor(0.35286435, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.6831888, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 8239\n",
+ "Discriminator Loss: tf.Tensor(0.6254613, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.4989924, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 8240\n",
+ "Discriminator Loss: tf.Tensor(0.89525753, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.7782466, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 8241\n",
+ "Discriminator Loss: tf.Tensor(0.29543757, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.83593774, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 8242\n",
+ "Discriminator Loss: tf.Tensor(0.7873836, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.6295817, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 8243\n",
+ "Discriminator Loss: tf.Tensor(0.36000037, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.7224684, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 8244\n",
+ "Discriminator Loss: tf.Tensor(1.2556133, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.3080785, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 8245\n",
+ "Discriminator Loss: tf.Tensor(2.232476, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-1.1887325, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 8246\n",
+ "Discriminator Loss: tf.Tensor(1.7015246, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.17332327, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 8247\n",
+ "Discriminator Loss: tf.Tensor(1.049913, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.25693163, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 8248\n",
+ "Discriminator Loss: tf.Tensor(0.99845946, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.6346576, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 8249\n",
+ "Discriminator Loss: tf.Tensor(0.85390127, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.1949185, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 8250\n",
+ "Discriminator Loss: tf.Tensor(0.3755343, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.4517972, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 8251\n",
+ "Discriminator Loss: tf.Tensor(0.3180731, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.5793873, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 8252\n",
+ "Discriminator Loss: tf.Tensor(0.7181984, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.32905376, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 8253\n",
+ "Discriminator Loss: tf.Tensor(0.71905893, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.0433674, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 8254\n",
+ "Discriminator Loss: tf.Tensor(0.2263596, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.80659246, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 8255\n",
+ "Discriminator Loss: tf.Tensor(1.1210517, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.8382597, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 8256\n",
+ "Discriminator Loss: tf.Tensor(0.4507155, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.68703204, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 8257\n",
+ "Discriminator Loss: tf.Tensor(0.8051145, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.4542892, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 8258\n",
+ "Discriminator Loss: tf.Tensor(0.057757713, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.0859033, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 8259\n",
+ "Discriminator Loss: tf.Tensor(1.739661, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.01856287, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 8260\n",
+ "Discriminator Loss: tf.Tensor(1.4889615, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.0617993, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 8261\n",
+ "Discriminator Loss: tf.Tensor(1.0524771, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.73897713, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 8262\n",
+ "Discriminator Loss: tf.Tensor(1.1440276, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.8576936, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 8263\n",
+ "Discriminator Loss: tf.Tensor(0.6531955, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.7175822, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 8264\n",
+ "Discriminator Loss: tf.Tensor(0.9085618, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.7126812, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 8265\n",
+ "Discriminator Loss: tf.Tensor(0.86090046, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.339928, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 8266\n",
+ "Discriminator Loss: tf.Tensor(1.0404818, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.102207, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 8267\n",
+ "Discriminator Loss: tf.Tensor(0.39130855, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.7568502, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 8268\n",
+ "Discriminator Loss: tf.Tensor(1.3604923, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.976202, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 8269\n",
+ "Discriminator Loss: tf.Tensor(0.8496962, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.3174708, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 8270\n",
+ "Discriminator Loss: tf.Tensor(0.8252211, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.7360415, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 8271\n",
+ "Discriminator Loss: tf.Tensor(0.93869084, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.2780093, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 8272\n",
+ "Discriminator Loss: tf.Tensor(0.9769815, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.5883675, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 8273\n",
+ "Discriminator Loss: tf.Tensor(1.9696889, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.5448097, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 8274\n",
+ "Discriminator Loss: tf.Tensor(1.0602822, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.85277224, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 8275\n",
+ "Discriminator Loss: tf.Tensor(0.8354284, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.5980314, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 8276\n",
+ "Discriminator Loss: tf.Tensor(1.7457844, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.22171116, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 8277\n",
+ "Discriminator Loss: tf.Tensor(0.9383816, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.2248397, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 8278\n",
+ "Discriminator Loss: tf.Tensor(1.214592, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.07355756, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 8279\n",
+ "Discriminator Loss: tf.Tensor(0.36758012, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.2974218, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 8280\n",
+ "Discriminator Loss: tf.Tensor(0.77608246, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.2577143, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 8281\n",
+ "Discriminator Loss: tf.Tensor(0.87355727, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.0706904, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 8282\n",
+ "Discriminator Loss: tf.Tensor(0.3902293, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.81691104, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 8283\n",
+ "Discriminator Loss: tf.Tensor(0.8861885, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.2975533, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 8284\n",
+ "Discriminator Loss: tf.Tensor(0.58907735, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.5124065, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 8285\n",
+ "Discriminator Loss: tf.Tensor(0.47393548, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.373457, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 8286\n",
+ "Discriminator Loss: tf.Tensor(0.3748864, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.3243582, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 8287\n",
+ "Discriminator Loss: tf.Tensor(1.1424847, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.21300201, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 8288\n",
+ "Discriminator Loss: tf.Tensor(0.76540506, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.8545939, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 8289\n",
+ "Discriminator Loss: tf.Tensor(0.40600818, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.65612406, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 8290\n",
+ "Discriminator Loss: tf.Tensor(0.82430744, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.3593094, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 8291\n",
+ "Discriminator Loss: tf.Tensor(0.37411234, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.72433853, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 8292\n",
+ "Discriminator Loss: tf.Tensor(0.75941056, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.4667957, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 8293\n",
+ "Discriminator Loss: tf.Tensor(0.4990317, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.60695845, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 8294\n",
+ "Discriminator Loss: tf.Tensor(0.71074736, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.7088754, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 8295\n",
+ "Discriminator Loss: tf.Tensor(0.17993921, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.0765406, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 8296\n",
+ "Discriminator Loss: tf.Tensor(1.1770594, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.08956889, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 8297\n",
+ "Discriminator Loss: tf.Tensor(0.7777889, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.7406282, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 8298\n",
+ "Discriminator Loss: tf.Tensor(0.8071021, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.74057597, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 8299\n",
+ "Discriminator Loss: tf.Tensor(0.74168324, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.346955, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 8300\n",
+ "Discriminator Loss: tf.Tensor(0.6792965, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.53308386, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 8301\n",
+ "Discriminator Loss: tf.Tensor(0.57972014, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.8289044, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 8302\n",
+ "Discriminator Loss: tf.Tensor(0.5115498, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.0853658, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 8303\n",
+ "Discriminator Loss: tf.Tensor(1.540427, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.48041996, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 8304\n",
+ "Discriminator Loss: tf.Tensor(0.3837049, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.9874984, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 8305\n",
+ "Discriminator Loss: tf.Tensor(0.52871513, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.8931976, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 8306\n",
+ "Discriminator Loss: tf.Tensor(0.7145682, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(3.0688765, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 8307\n",
+ "Discriminator Loss: tf.Tensor(0.17504828, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.118338, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 8308\n",
+ "Discriminator Loss: tf.Tensor(1.0135331, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.07705101, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 8309\n",
+ "Discriminator Loss: tf.Tensor(1.0906042, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.750759, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 8310\n",
+ "Discriminator Loss: tf.Tensor(0.25608978, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.2668256, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 8311\n",
+ "Discriminator Loss: tf.Tensor(1.0952348, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.050082404, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 8312\n",
+ "Discriminator Loss: tf.Tensor(1.0360668, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.8742461, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 8313\n",
+ "Discriminator Loss: tf.Tensor(1.1959503, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.029428989, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 8314\n",
+ "Discriminator Loss: tf.Tensor(0.5857353, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.145069, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 8315\n",
+ "Discriminator Loss: tf.Tensor(2.7499998, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-1.622859, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 8316\n",
+ "Discriminator Loss: tf.Tensor(1.273196, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.17253911, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 8317\n",
+ "Discriminator Loss: tf.Tensor(1.2318763, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.8373836, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 8318\n",
+ "Discriminator Loss: tf.Tensor(2.367469, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-1.3166171, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 8319\n",
+ "Discriminator Loss: tf.Tensor(1.0862298, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.68448764, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 8320\n",
+ "Discriminator Loss: tf.Tensor(0.55805063, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.3413452, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 8321\n",
+ "Discriminator Loss: tf.Tensor(1.2044308, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.1893869, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 8322\n",
+ "Discriminator Loss: tf.Tensor(0.7697615, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.7799906, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 8323\n",
+ "Discriminator Loss: tf.Tensor(0.72153103, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.39319134, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 8324\n",
+ "Discriminator Loss: tf.Tensor(0.34973636, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.018751, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 8325\n",
+ "Discriminator Loss: tf.Tensor(0.22036275, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.1056849, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 8326\n",
+ "Discriminator Loss: tf.Tensor(0.7468522, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.38224682, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 8327\n",
+ "Discriminator Loss: tf.Tensor(1.0553993, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(3.2812927, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 8328\n",
+ "Discriminator Loss: tf.Tensor(0.19121885, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.8286054, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 8329\n",
+ "Discriminator Loss: tf.Tensor(0.5026102, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.886069, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 8330\n",
+ "Discriminator Loss: tf.Tensor(0.19717577, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.5544313, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 8331\n",
+ "Discriminator Loss: tf.Tensor(0.63356364, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.5024163, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 8332\n",
+ "Discriminator Loss: tf.Tensor(1.0264323, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(3.4970262, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 8333\n",
+ "Discriminator Loss: tf.Tensor(0.39485985, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.3126088, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 8334\n",
+ "Discriminator Loss: tf.Tensor(1.1224945, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.083623916, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 8335\n",
+ "Discriminator Loss: tf.Tensor(0.6847714, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.0183501, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 8336\n",
+ "Discriminator Loss: tf.Tensor(0.33474922, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.8900595, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 8337\n",
+ "Discriminator Loss: tf.Tensor(1.4498191, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(3.1674144, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 8338\n",
+ "Discriminator Loss: tf.Tensor(0.3173403, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.7966809, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 8339\n",
+ "Discriminator Loss: tf.Tensor(0.6979588, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.4607918, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 8340\n",
+ "Discriminator Loss: tf.Tensor(0.256608, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.7762193, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 8341\n",
+ "Discriminator Loss: tf.Tensor(1.6739562, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.9832866, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 8342\n",
+ "Discriminator Loss: tf.Tensor(0.4758087, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.6006134, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 8343\n",
+ "Discriminator Loss: tf.Tensor(0.30382067, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.4536984, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 8344\n",
+ "Discriminator Loss: tf.Tensor(0.13426091, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.557964, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 8345\n",
+ "Discriminator Loss: tf.Tensor(0.35920128, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.80477315, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 8346\n",
+ "Discriminator Loss: tf.Tensor(1.3834199, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(3.8590813, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 8347\n",
+ "Discriminator Loss: tf.Tensor(0.47304946, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.7515424, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 8348\n",
+ "Discriminator Loss: tf.Tensor(0.27682143, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.0607768, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 8349\n",
+ "Discriminator Loss: tf.Tensor(0.68291754, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.3420368, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 8350\n",
+ "Discriminator Loss: tf.Tensor(0.4610355, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.8382246, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 8351\n",
+ "Discriminator Loss: tf.Tensor(0.47186804, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.4808455, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 8352\n",
+ "Discriminator Loss: tf.Tensor(1.1330099, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.11275482, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 8353\n",
+ "Discriminator Loss: tf.Tensor(1.2131473, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.516854, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 8354\n",
+ "Discriminator Loss: tf.Tensor(0.5277576, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.56971437, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 8355\n",
+ "Discriminator Loss: tf.Tensor(1.1300712, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.4055846, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 8356\n",
+ "Discriminator Loss: tf.Tensor(0.3426449, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.8760476, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 8357\n",
+ "Discriminator Loss: tf.Tensor(1.1764237, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.2617643, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 8358\n",
+ "Discriminator Loss: tf.Tensor(0.728434, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.35817733, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 8359\n",
+ "Discriminator Loss: tf.Tensor(1.0386943, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.4193702, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 8360\n",
+ "Discriminator Loss: tf.Tensor(0.41549248, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.6400684, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 8361\n",
+ "Discriminator Loss: tf.Tensor(0.41924822, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.6029885, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 8362\n",
+ "Discriminator Loss: tf.Tensor(0.10900605, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.6839279, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 8363\n",
+ "Discriminator Loss: tf.Tensor(0.7019068, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.5309861, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 8364\n",
+ "Discriminator Loss: tf.Tensor(1.213414, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(3.4857826, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 8365\n",
+ "Discriminator Loss: tf.Tensor(0.44950014, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.3561044, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 8366\n",
+ "Discriminator Loss: tf.Tensor(0.84036034, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.19871604, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 8367\n",
+ "Discriminator Loss: tf.Tensor(0.94002473, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.4086907, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 8368\n",
+ "Discriminator Loss: tf.Tensor(0.37465793, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.0885736, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 8369\n",
+ "Discriminator Loss: tf.Tensor(0.75187165, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.35336724, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 8370\n",
+ "Discriminator Loss: tf.Tensor(0.41714948, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.1767018, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 8371\n",
+ "Discriminator Loss: tf.Tensor(0.19690254, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.95982903, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 8372\n",
+ "Discriminator Loss: tf.Tensor(1.4893734, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.7008152, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 8373\n",
+ "Discriminator Loss: tf.Tensor(1.4645405, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.0006238061, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 8374\n",
+ "Discriminator Loss: tf.Tensor(0.85306835, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.6418648, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 8375\n",
+ "Discriminator Loss: tf.Tensor(0.82365036, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.3495381, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 8376\n",
+ "Discriminator Loss: tf.Tensor(0.6977352, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.0494423, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 8377\n",
+ "Discriminator Loss: tf.Tensor(0.923272, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.18792678, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 8378\n",
+ "Discriminator Loss: tf.Tensor(1.1706178, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.0000823, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 8379\n",
+ "Discriminator Loss: tf.Tensor(1.019111, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.17271478, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 8380\n",
+ "Discriminator Loss: tf.Tensor(0.8061327, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.6986428, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 8381\n",
+ "Discriminator Loss: tf.Tensor(1.7221954, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.635004, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 8382\n",
+ "Discriminator Loss: tf.Tensor(0.4639699, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.1557981, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 8383\n",
+ "Discriminator Loss: tf.Tensor(1.0855415, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.20196877, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 8384\n",
+ "Discriminator Loss: tf.Tensor(0.46638867, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.6505305, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 8385\n",
+ "Discriminator Loss: tf.Tensor(0.9041008, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.18415351, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 8386\n",
+ "Discriminator Loss: tf.Tensor(0.9360044, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.0832617, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 8387\n",
+ "Discriminator Loss: tf.Tensor(1.5957161, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.4236963, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 8388\n",
+ "Discriminator Loss: tf.Tensor(0.7093615, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.1922079, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 8389\n",
+ "Discriminator Loss: tf.Tensor(1.9071058, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.77238196, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 8390\n",
+ "Discriminator Loss: tf.Tensor(0.4386838, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.4375747, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 8391\n",
+ "Discriminator Loss: tf.Tensor(1.2103521, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.08389688, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 8392\n",
+ "Discriminator Loss: tf.Tensor(0.9396121, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.3831592, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 8393\n",
+ "Discriminator Loss: tf.Tensor(1.0879695, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.066956975, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 8394\n",
+ "Discriminator Loss: tf.Tensor(0.5025493, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.8567609, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 8395\n",
+ "Discriminator Loss: tf.Tensor(0.33166823, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.8683658, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 8396\n",
+ "Discriminator Loss: tf.Tensor(0.8557103, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.4631126, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 8397\n",
+ "Discriminator Loss: tf.Tensor(0.2358355, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.901577, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 8398\n",
+ "Discriminator Loss: tf.Tensor(1.1263341, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.4100611, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 8399\n",
+ "Discriminator Loss: tf.Tensor(0.7232675, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.29306185, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 8400\n",
+ "Discriminator Loss: tf.Tensor(0.7790582, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.8561689, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 8401\n",
+ "Discriminator Loss: tf.Tensor(0.5049993, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.5888807, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 8402\n",
+ "Discriminator Loss: tf.Tensor(0.48150042, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.7933292, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 8403\n",
+ "Discriminator Loss: tf.Tensor(0.36268836, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.5812038, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 8404\n",
+ "Discriminator Loss: tf.Tensor(0.70276034, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.44443738, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 8405\n",
+ "Discriminator Loss: tf.Tensor(0.98093224, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.3920178, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 8406\n",
+ "Discriminator Loss: tf.Tensor(0.54923105, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.72415227, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 8407\n",
+ "Discriminator Loss: tf.Tensor(0.92070246, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.7417622, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 8408\n",
+ "Discriminator Loss: tf.Tensor(0.3840971, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.78574127, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 8409\n",
+ "Discriminator Loss: tf.Tensor(1.3082399, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.566307, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 8410\n",
+ "Discriminator Loss: tf.Tensor(0.11183057, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.99739283, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 8411\n",
+ "Discriminator Loss: tf.Tensor(0.47563595, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.6700116, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 8412\n",
+ "Discriminator Loss: tf.Tensor(0.99117506, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.2906948, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 8413\n",
+ "Discriminator Loss: tf.Tensor(0.91674876, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.3768318, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 8414\n",
+ "Discriminator Loss: tf.Tensor(1.0384144, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.22141461, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 8415\n",
+ "Discriminator Loss: tf.Tensor(1.193097, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.490764, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 8416\n",
+ "Discriminator Loss: tf.Tensor(1.5921884, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.23588824, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 8417\n",
+ "Discriminator Loss: tf.Tensor(0.862591, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.9685154, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 8418\n",
+ "Discriminator Loss: tf.Tensor(0.7326104, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.49944687, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 8419\n",
+ "Discriminator Loss: tf.Tensor(0.63319784, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.8903306, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 8420\n",
+ "Discriminator Loss: tf.Tensor(0.37748528, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.3049866, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 8421\n",
+ "Discriminator Loss: tf.Tensor(0.7138403, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.41934618, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 8422\n",
+ "Discriminator Loss: tf.Tensor(0.98531246, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.9294672, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 8423\n",
+ "Discriminator Loss: tf.Tensor(0.18324304, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.92634135, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 8424\n",
+ "Discriminator Loss: tf.Tensor(1.1210072, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.4769282, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 8425\n",
+ "Discriminator Loss: tf.Tensor(0.19576289, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.864842, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 8426\n",
+ "Discriminator Loss: tf.Tensor(0.9202525, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.4664834, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 8427\n",
+ "Discriminator Loss: tf.Tensor(0.45606065, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.81494975, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 8428\n",
+ "Discriminator Loss: tf.Tensor(1.0813625, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.6330895, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 8429\n",
+ "Discriminator Loss: tf.Tensor(0.8610685, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.23404567, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 8430\n",
+ "Discriminator Loss: tf.Tensor(0.98034465, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.1305206, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 8431\n",
+ "Discriminator Loss: tf.Tensor(0.6741691, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.39216533, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 8432\n",
+ "Discriminator Loss: tf.Tensor(0.94305515, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.4147713, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 8433\n",
+ "Discriminator Loss: tf.Tensor(0.42212284, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.0074425, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 8434\n",
+ "Discriminator Loss: tf.Tensor(0.5325171, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.6242071, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 8435\n",
+ "Discriminator Loss: tf.Tensor(0.91614366, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.23962696, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 8436\n",
+ "Discriminator Loss: tf.Tensor(1.298928, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.0987234, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 8437\n",
+ "Discriminator Loss: tf.Tensor(0.5163323, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.6736393, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 8438\n",
+ "Discriminator Loss: tf.Tensor(0.21759215, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.071999, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 8439\n",
+ "Discriminator Loss: tf.Tensor(0.64468616, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.817187, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 8440\n",
+ "Discriminator Loss: tf.Tensor(0.73952293, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.6621068, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 8441\n",
+ "Discriminator Loss: tf.Tensor(1.1395046, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.21144418, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 8442\n",
+ "Discriminator Loss: tf.Tensor(1.0640132, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.7679427, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 8443\n",
+ "Discriminator Loss: tf.Tensor(0.7634818, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.6045868, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 8444\n",
+ "Discriminator Loss: tf.Tensor(1.4643846, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.5240338, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 8445\n",
+ "Discriminator Loss: tf.Tensor(0.9497754, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.12990312, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 8446\n",
+ "Discriminator Loss: tf.Tensor(1.2092761, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.9824597, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 8447\n",
+ "Discriminator Loss: tf.Tensor(0.961978, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.24722952, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 8448\n",
+ "Discriminator Loss: tf.Tensor(0.84736305, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.6080548, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 8449\n",
+ "Discriminator Loss: tf.Tensor(0.8470756, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.30877116, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 8450\n",
+ "Discriminator Loss: tf.Tensor(0.32470408, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.8948208, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 8451\n",
+ "Discriminator Loss: tf.Tensor(0.40783355, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.76001483, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 8452\n",
+ "Discriminator Loss: tf.Tensor(0.5102092, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.8977973, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 8453\n",
+ "Discriminator Loss: tf.Tensor(0.6360497, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.6599647, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 8454\n",
+ "Discriminator Loss: tf.Tensor(1.1021926, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.86819, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 8455\n",
+ "Discriminator Loss: tf.Tensor(0.9284012, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.55739063, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 8456\n",
+ "Discriminator Loss: tf.Tensor(0.5373627, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.566503, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 8457\n",
+ "Discriminator Loss: tf.Tensor(0.38922116, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.6966267, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 8458\n",
+ "Discriminator Loss: tf.Tensor(1.5746967, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(3.6280944, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 8459\n",
+ "Discriminator Loss: tf.Tensor(0.17416057, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.0553645, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 8460\n",
+ "Discriminator Loss: tf.Tensor(1.2970961, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.18861449, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 8461\n",
+ "Discriminator Loss: tf.Tensor(0.40272743, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.436821, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 8462\n",
+ "Discriminator Loss: tf.Tensor(0.29334366, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.7540293, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 8463\n",
+ "Discriminator Loss: tf.Tensor(0.9770702, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(3.2557666, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 8464\n",
+ "Discriminator Loss: tf.Tensor(0.5346832, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.7160478, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 8465\n",
+ "Discriminator Loss: tf.Tensor(1.1857418, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(3.5630634, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 8466\n",
+ "Discriminator Loss: tf.Tensor(0.5754068, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.4663817, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 8467\n",
+ "Discriminator Loss: tf.Tensor(1.0834526, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.8528903, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 8468\n",
+ "Discriminator Loss: tf.Tensor(0.5397992, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.83472246, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 8469\n",
+ "Discriminator Loss: tf.Tensor(1.1011679, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.961511, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 8470\n",
+ "Discriminator Loss: tf.Tensor(1.3320084, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.011639844, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 8471\n",
+ "Discriminator Loss: tf.Tensor(0.6928363, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.42464, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 8472\n",
+ "Discriminator Loss: tf.Tensor(1.3454602, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.22699754, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 8473\n",
+ "Discriminator Loss: tf.Tensor(1.0688984, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.9945176, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 8474\n",
+ "Discriminator Loss: tf.Tensor(0.35673955, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.82683545, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 8475\n",
+ "Discriminator Loss: tf.Tensor(0.8794484, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(3.1422482, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 8476\n",
+ "Discriminator Loss: tf.Tensor(0.098435454, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.0035278, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 8477\n",
+ "Discriminator Loss: tf.Tensor(1.0796376, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.387562, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 8478\n",
+ "Discriminator Loss: tf.Tensor(0.7987502, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.4119521, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 8479\n",
+ "Discriminator Loss: tf.Tensor(1.1706192, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.4648244, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 8480\n",
+ "Discriminator Loss: tf.Tensor(0.14454943, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.9459541, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 8481\n",
+ "Discriminator Loss: tf.Tensor(1.0278962, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.6888702, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 8482\n",
+ "Discriminator Loss: tf.Tensor(0.5945581, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.3787842, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 8483\n",
+ "Discriminator Loss: tf.Tensor(1.0120261, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.10873092, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 8484\n",
+ "Discriminator Loss: tf.Tensor(0.667405, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.8658013, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 8485\n",
+ "Discriminator Loss: tf.Tensor(0.4943645, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.9962923, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 8486\n",
+ "Discriminator Loss: tf.Tensor(0.45602274, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.7582387, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 8487\n",
+ "Discriminator Loss: tf.Tensor(0.7420177, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.30581427, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 8488\n",
+ "Discriminator Loss: tf.Tensor(1.4613056, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.9356394, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 8489\n",
+ "Discriminator Loss: tf.Tensor(0.36071935, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.6836327, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 8490\n",
+ "Discriminator Loss: tf.Tensor(0.710674, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.7992742, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 8491\n",
+ "Discriminator Loss: tf.Tensor(0.11845198, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.23884, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 8492\n",
+ "Discriminator Loss: tf.Tensor(0.83142734, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.32302144, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 8493\n",
+ "Discriminator Loss: tf.Tensor(0.8295191, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.1982586, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 8494\n",
+ "Discriminator Loss: tf.Tensor(1.0977701, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.06290996, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 8495\n",
+ "Discriminator Loss: tf.Tensor(1.6325886, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.4497988, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 8496\n",
+ "Discriminator Loss: tf.Tensor(0.78438663, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.44316402, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 8497\n",
+ "Discriminator Loss: tf.Tensor(0.69298697, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.7124195, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 8498\n",
+ "Discriminator Loss: tf.Tensor(1.1216373, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.2883928, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 8499\n",
+ "Discriminator Loss: tf.Tensor(0.72017807, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.9018068, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 8500\n",
+ "Discriminator Loss: tf.Tensor(0.69449574, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.68492985, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 8501\n",
+ "Discriminator Loss: tf.Tensor(0.6753415, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.2421978, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 8502\n",
+ "Discriminator Loss: tf.Tensor(0.9540434, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.30392814, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 8503\n",
+ "Discriminator Loss: tf.Tensor(1.0076404, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.3800876, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 8504\n",
+ "Discriminator Loss: tf.Tensor(0.85815054, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.4721875, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 8505\n",
+ "Discriminator Loss: tf.Tensor(0.39996377, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.450097, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 8506\n",
+ "Discriminator Loss: tf.Tensor(0.29059827, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.9573266, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 8507\n",
+ "Discriminator Loss: tf.Tensor(1.545207, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(3.4475842, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 8508\n",
+ "Discriminator Loss: tf.Tensor(0.09151087, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.94474155, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 8509\n",
+ "Discriminator Loss: tf.Tensor(0.9598788, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.8637822, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 8510\n",
+ "Discriminator Loss: tf.Tensor(0.35731226, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.84068316, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 8511\n",
+ "Discriminator Loss: tf.Tensor(1.1488436, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(3.187873, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 8512\n",
+ "Discriminator Loss: tf.Tensor(0.17762789, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.1535168, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 8513\n",
+ "Discriminator Loss: tf.Tensor(1.1741275, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.027430221, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 8514\n",
+ "Discriminator Loss: tf.Tensor(1.3422256, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.6703517, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 8515\n",
+ "Discriminator Loss: tf.Tensor(0.14768443, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.86526626, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 8516\n",
+ "Discriminator Loss: tf.Tensor(0.62633866, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.8995154, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 8517\n",
+ "Discriminator Loss: tf.Tensor(0.3231129, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.2856311, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 8518\n",
+ "Discriminator Loss: tf.Tensor(1.2676771, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.23293571, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 8519\n",
+ "Discriminator Loss: tf.Tensor(0.817948, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.693184, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 8520\n",
+ "Discriminator Loss: tf.Tensor(1.2416915, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.12892954, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 8521\n",
+ "Discriminator Loss: tf.Tensor(0.50828785, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.8120794, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 8522\n",
+ "Discriminator Loss: tf.Tensor(1.2694777, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.14103703, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 8523\n",
+ "Discriminator Loss: tf.Tensor(0.80340374, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.666005, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 8524\n",
+ "Discriminator Loss: tf.Tensor(0.83432925, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.5053617, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 8525\n",
+ "Discriminator Loss: tf.Tensor(0.2862832, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.1220047, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 8526\n",
+ "Discriminator Loss: tf.Tensor(0.4776914, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.9514987, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 8527\n",
+ "Discriminator Loss: tf.Tensor(0.7292322, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.3961303, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 8528\n",
+ "Discriminator Loss: tf.Tensor(0.5802141, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.5270919, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 8529\n",
+ "Discriminator Loss: tf.Tensor(0.56285113, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.3821814, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 8530\n",
+ "Discriminator Loss: tf.Tensor(1.1335305, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.049478788, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 8531\n",
+ "Discriminator Loss: tf.Tensor(1.4495418, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.6247067, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 8532\n",
+ "Discriminator Loss: tf.Tensor(0.9158249, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.36892602, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 8533\n",
+ "Discriminator Loss: tf.Tensor(0.72061807, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.661626, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 8534\n",
+ "Discriminator Loss: tf.Tensor(1.0864028, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.14535333, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 8535\n",
+ "Discriminator Loss: tf.Tensor(0.95714307, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.065768, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 8536\n",
+ "Discriminator Loss: tf.Tensor(0.91841054, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.14791907, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 8537\n",
+ "Discriminator Loss: tf.Tensor(0.49379078, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.9050684, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 8538\n",
+ "Discriminator Loss: tf.Tensor(0.34897938, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.933561, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 8539\n",
+ "Discriminator Loss: tf.Tensor(1.0904104, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.6723473, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 8540\n",
+ "Discriminator Loss: tf.Tensor(0.31475303, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.80480987, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 8541\n",
+ "Discriminator Loss: tf.Tensor(0.88126284, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.6290147, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 8542\n",
+ "Discriminator Loss: tf.Tensor(0.17221215, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.1975391, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 8543\n",
+ "Discriminator Loss: tf.Tensor(1.2958945, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.12657659, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 8544\n",
+ "Discriminator Loss: tf.Tensor(0.8754672, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.339938, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 8545\n",
+ "Discriminator Loss: tf.Tensor(0.85424364, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.4528493, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 8546\n",
+ "Discriminator Loss: tf.Tensor(1.2164387, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.3369, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 8547\n",
+ "Discriminator Loss: tf.Tensor(0.9488862, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.3522174, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 8548\n",
+ "Discriminator Loss: tf.Tensor(0.47575402, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.8814558, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 8549\n",
+ "Discriminator Loss: tf.Tensor(0.381059, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.80036753, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 8550\n",
+ "Discriminator Loss: tf.Tensor(0.8800622, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.7897756, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 8551\n",
+ "Discriminator Loss: tf.Tensor(0.24714059, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.1870676, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 8552\n",
+ "Discriminator Loss: tf.Tensor(1.4125428, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.18727656, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 8553\n",
+ "Discriminator Loss: tf.Tensor(0.6021986, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.9298466, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 8554\n",
+ "Discriminator Loss: tf.Tensor(0.36825156, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.6660257, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 8555\n",
+ "Discriminator Loss: tf.Tensor(0.91760415, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.6660674, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 8556\n",
+ "Discriminator Loss: tf.Tensor(0.6799908, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.76324147, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 8557\n",
+ "Discriminator Loss: tf.Tensor(0.25414813, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.3056238, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 8558\n",
+ "Discriminator Loss: tf.Tensor(0.74709654, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.37204802, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 8559\n",
+ "Discriminator Loss: tf.Tensor(1.178075, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.7266684, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 8560\n",
+ "Discriminator Loss: tf.Tensor(1.2521447, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.951021, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 8561\n",
+ "Discriminator Loss: tf.Tensor(0.27588063, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.9312767, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 8562\n",
+ "Discriminator Loss: tf.Tensor(0.58591527, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.8098607, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 8563\n",
+ "Discriminator Loss: tf.Tensor(0.66331935, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.7444074, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 8564\n",
+ "Discriminator Loss: tf.Tensor(0.5807587, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.0471224, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 8565\n",
+ "Discriminator Loss: tf.Tensor(0.08109161, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.4585017, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 8566\n",
+ "Discriminator Loss: tf.Tensor(0.66582716, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.85090595, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 8567\n",
+ "Discriminator Loss: tf.Tensor(2.0681121, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(3.646095, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 8568\n",
+ "Discriminator Loss: tf.Tensor(0.152189, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.1521573, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 8569\n",
+ "Discriminator Loss: tf.Tensor(0.8562629, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.45639503, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 8570\n",
+ "Discriminator Loss: tf.Tensor(1.3815286, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.491389, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 8571\n",
+ "Discriminator Loss: tf.Tensor(0.566751, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.5187838, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 8572\n",
+ "Discriminator Loss: tf.Tensor(0.6912725, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.144308, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 8573\n",
+ "Discriminator Loss: tf.Tensor(0.2111119, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.93355495, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 8574\n",
+ "Discriminator Loss: tf.Tensor(1.5957856, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.9438553, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 8575\n",
+ "Discriminator Loss: tf.Tensor(0.54575115, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.5845812, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 8576\n",
+ "Discriminator Loss: tf.Tensor(0.7676587, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.1232548, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 8577\n",
+ "Discriminator Loss: tf.Tensor(0.40043235, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.817668, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 8578\n",
+ "Discriminator Loss: tf.Tensor(0.86059356, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.9990685, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 8579\n",
+ "Discriminator Loss: tf.Tensor(0.18116146, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.3995867, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 8580\n",
+ "Discriminator Loss: tf.Tensor(0.6408535, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.70010805, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 8581\n",
+ "Discriminator Loss: tf.Tensor(1.381994, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.6640944, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 8582\n",
+ "Discriminator Loss: tf.Tensor(0.2914257, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.81780535, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 8583\n",
+ "Discriminator Loss: tf.Tensor(0.7405862, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.5997658, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 8584\n",
+ "Discriminator Loss: tf.Tensor(0.1475332, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.95710754, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 8585\n",
+ "Discriminator Loss: tf.Tensor(0.76520705, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.8729935, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 8586\n",
+ "Discriminator Loss: tf.Tensor(0.30086076, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.7292842, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 8587\n",
+ "Discriminator Loss: tf.Tensor(0.8834107, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.65512913, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 8588\n",
+ "Discriminator Loss: tf.Tensor(0.9931067, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.3789685, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 8589\n",
+ "Discriminator Loss: tf.Tensor(1.1940757, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.085832834, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 8590\n",
+ "Discriminator Loss: tf.Tensor(0.8340889, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.8660959, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 8591\n",
+ "Discriminator Loss: tf.Tensor(1.2673217, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.22338708, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 8592\n",
+ "Discriminator Loss: tf.Tensor(1.1322753, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.8507261, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 8593\n",
+ "Discriminator Loss: tf.Tensor(0.9706908, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.074175164, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 8594\n",
+ "Discriminator Loss: tf.Tensor(0.7958327, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.6563033, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 8595\n",
+ "Discriminator Loss: tf.Tensor(1.0034683, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.07595593, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 8596\n",
+ "Discriminator Loss: tf.Tensor(0.68613344, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.4857813, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 8597\n",
+ "Discriminator Loss: tf.Tensor(1.5145981, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.44335485, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 8598\n",
+ "Discriminator Loss: tf.Tensor(0.73594785, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.2418572, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 8599\n",
+ "Discriminator Loss: tf.Tensor(1.1763487, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.04957792, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 8600\n",
+ "Discriminator Loss: tf.Tensor(0.6983754, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.4674085, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 8601\n",
+ "Discriminator Loss: tf.Tensor(1.2206488, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.07544019, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 8602\n",
+ "Discriminator Loss: tf.Tensor(0.79192114, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.612217, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 8603\n",
+ "Discriminator Loss: tf.Tensor(0.7207156, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.5698022, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 8604\n",
+ "Discriminator Loss: tf.Tensor(0.18450105, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.0708778, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 8605\n",
+ "Discriminator Loss: tf.Tensor(0.37413025, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.2622905, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 8606\n",
+ "Discriminator Loss: tf.Tensor(1.511121, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.22184815, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 8607\n",
+ "Discriminator Loss: tf.Tensor(1.3536615, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.7806674, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 8608\n",
+ "Discriminator Loss: tf.Tensor(1.1746631, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.003472249, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 8609\n",
+ "Discriminator Loss: tf.Tensor(0.6563269, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.2005584, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 8610\n",
+ "Discriminator Loss: tf.Tensor(1.317915, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.098745555, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 8611\n",
+ "Discriminator Loss: tf.Tensor(0.73777544, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.4337883, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 8612\n",
+ "Discriminator Loss: tf.Tensor(0.85284114, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.17049646, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 8613\n",
+ "Discriminator Loss: tf.Tensor(0.48808545, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.8949733, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 8614\n",
+ "Discriminator Loss: tf.Tensor(0.35995793, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.9470563, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 8615\n",
+ "Discriminator Loss: tf.Tensor(0.9715563, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.8663404, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 8616\n",
+ "Discriminator Loss: tf.Tensor(0.5699998, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.608792, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 8617\n",
+ "Discriminator Loss: tf.Tensor(0.7985902, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.1425502, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 8618\n",
+ "Discriminator Loss: tf.Tensor(0.73173136, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.4271148, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 8619\n",
+ "Discriminator Loss: tf.Tensor(0.5370986, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.2135816, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 8620\n",
+ "Discriminator Loss: tf.Tensor(0.5532776, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.6406536, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 8621\n",
+ "Discriminator Loss: tf.Tensor(1.436819, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.9317105, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 8622\n",
+ "Discriminator Loss: tf.Tensor(0.46426854, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.5931905, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 8623\n",
+ "Discriminator Loss: tf.Tensor(0.53364766, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.2798834, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 8624\n",
+ "Discriminator Loss: tf.Tensor(1.2515849, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.041492794, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 8625\n",
+ "Discriminator Loss: tf.Tensor(0.35981327, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.089225, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 8626\n",
+ "Discriminator Loss: tf.Tensor(0.91341734, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.39154744, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 8627\n",
+ "Discriminator Loss: tf.Tensor(0.30144137, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.6623385, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 8628\n",
+ "Discriminator Loss: tf.Tensor(0.63867056, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.2841012, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 8629\n",
+ "Discriminator Loss: tf.Tensor(1.3171496, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.2304151, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 8630\n",
+ "Discriminator Loss: tf.Tensor(0.99347496, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.5170035, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 8631\n",
+ "Discriminator Loss: tf.Tensor(0.6071183, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.596361, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 8632\n",
+ "Discriminator Loss: tf.Tensor(0.59551835, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.511057, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 8633\n",
+ "Discriminator Loss: tf.Tensor(1.3432672, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.24036062, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 8634\n",
+ "Discriminator Loss: tf.Tensor(1.6120915, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.4015903, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 8635\n",
+ "Discriminator Loss: tf.Tensor(0.722245, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.4331101, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 8636\n",
+ "Discriminator Loss: tf.Tensor(0.96448535, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.862471, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 8637\n",
+ "Discriminator Loss: tf.Tensor(1.2020622, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.013795284, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 8638\n",
+ "Discriminator Loss: tf.Tensor(0.50201416, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.475265, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 8639\n",
+ "Discriminator Loss: tf.Tensor(0.8108163, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.21626724, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 8640\n",
+ "Discriminator Loss: tf.Tensor(0.5492382, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.1107204, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 8641\n",
+ "Discriminator Loss: tf.Tensor(0.28319496, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.8693109, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 8642\n",
+ "Discriminator Loss: tf.Tensor(1.3611317, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.8342354, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 8643\n",
+ "Discriminator Loss: tf.Tensor(1.1166494, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.08726648, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 8644\n",
+ "Discriminator Loss: tf.Tensor(0.96008164, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.9125748, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 8645\n",
+ "Discriminator Loss: tf.Tensor(1.2296207, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.1765622, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 8646\n",
+ "Discriminator Loss: tf.Tensor(0.5979813, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.7292194, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 8647\n",
+ "Discriminator Loss: tf.Tensor(0.854247, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.19762093, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 8648\n",
+ "Discriminator Loss: tf.Tensor(1.088395, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.495179, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 8649\n",
+ "Discriminator Loss: tf.Tensor(1.0691152, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.028210187, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 8650\n",
+ "Discriminator Loss: tf.Tensor(0.51535356, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.9977673, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 8651\n",
+ "Discriminator Loss: tf.Tensor(0.6991993, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.80631906, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 8652\n",
+ "Discriminator Loss: tf.Tensor(0.76660186, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.4725692, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 8653\n",
+ "Discriminator Loss: tf.Tensor(1.6693137, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.62519526, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 8654\n",
+ "Discriminator Loss: tf.Tensor(0.8184295, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.945673, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 8655\n",
+ "Discriminator Loss: tf.Tensor(0.6248296, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.46303272, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 8656\n",
+ "Discriminator Loss: tf.Tensor(0.91312, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.555001, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 8657\n",
+ "Discriminator Loss: tf.Tensor(1.1906822, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.0535447, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 8658\n",
+ "Discriminator Loss: tf.Tensor(1.0923468, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.6355298, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 8659\n",
+ "Discriminator Loss: tf.Tensor(0.41509473, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.9570196, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 8660\n",
+ "Discriminator Loss: tf.Tensor(0.8159056, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.6510048, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 8661\n",
+ "Discriminator Loss: tf.Tensor(0.074987106, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.9969705, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 8662\n",
+ "Discriminator Loss: tf.Tensor(0.7702227, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.4815605, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 8663\n",
+ "Discriminator Loss: tf.Tensor(0.23340473, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.4662234, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 8664\n",
+ "Discriminator Loss: tf.Tensor(0.73968434, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.43345976, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 8665\n",
+ "Discriminator Loss: tf.Tensor(2.1364324, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.68771, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 8666\n",
+ "Discriminator Loss: tf.Tensor(0.94531995, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.47872117, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 8667\n",
+ "Discriminator Loss: tf.Tensor(0.5836034, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.6449791, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 8668\n",
+ "Discriminator Loss: tf.Tensor(0.77854294, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.29774997, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 8669\n",
+ "Discriminator Loss: tf.Tensor(0.8333709, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.39732, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 8670\n",
+ "Discriminator Loss: tf.Tensor(0.25763738, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.98878497, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 8671\n",
+ "Discriminator Loss: tf.Tensor(0.9681599, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.0679202, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 8672\n",
+ "Discriminator Loss: tf.Tensor(1.3203312, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.21936364, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 8673\n",
+ "Discriminator Loss: tf.Tensor(0.72468853, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.019976, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 8674\n",
+ "Discriminator Loss: tf.Tensor(0.49174476, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.5857683, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 8675\n",
+ "Discriminator Loss: tf.Tensor(0.9055302, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.6791286, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 8676\n",
+ "Discriminator Loss: tf.Tensor(0.1908344, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.188677, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 8677\n",
+ "Discriminator Loss: tf.Tensor(0.90719473, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.36176232, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 8678\n",
+ "Discriminator Loss: tf.Tensor(0.37468225, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.1155288, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 8679\n",
+ "Discriminator Loss: tf.Tensor(0.3308509, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.1448087, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 8680\n",
+ "Discriminator Loss: tf.Tensor(0.89527607, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.43300965, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 8681\n",
+ "Discriminator Loss: tf.Tensor(0.95146066, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.3591607, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 8682\n",
+ "Discriminator Loss: tf.Tensor(0.6488048, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.51306254, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 8683\n",
+ "Discriminator Loss: tf.Tensor(0.58858615, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.3401809, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 8684\n",
+ "Discriminator Loss: tf.Tensor(0.24238093, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.2100416, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 8685\n",
+ "Discriminator Loss: tf.Tensor(0.7384698, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.37896296, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 8686\n",
+ "Discriminator Loss: tf.Tensor(1.143917, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.1990976, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 8687\n",
+ "Discriminator Loss: tf.Tensor(0.75196177, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.36685142, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 8688\n",
+ "Discriminator Loss: tf.Tensor(0.27237186, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.8739399, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 8689\n",
+ "Discriminator Loss: tf.Tensor(0.33461183, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.2377858, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 8690\n",
+ "Discriminator Loss: tf.Tensor(1.0130527, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.089366995, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 8691\n",
+ "Discriminator Loss: tf.Tensor(1.0456669, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.6020486, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 8692\n",
+ "Discriminator Loss: tf.Tensor(0.75979304, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.5844281, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 8693\n",
+ "Discriminator Loss: tf.Tensor(0.4799774, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.9731213, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 8694\n",
+ "Discriminator Loss: tf.Tensor(1.1747022, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.059414167, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 8695\n",
+ "Discriminator Loss: tf.Tensor(0.7802471, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.1707332, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 8696\n",
+ "Discriminator Loss: tf.Tensor(1.616087, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.4579867, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 8697\n",
+ "Discriminator Loss: tf.Tensor(0.460275, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.5696158, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 8698\n",
+ "Discriminator Loss: tf.Tensor(0.49775615, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.76794845, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 8699\n",
+ "Discriminator Loss: tf.Tensor(0.86802447, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.1167333, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 8700\n",
+ "Discriminator Loss: tf.Tensor(0.788161, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.2942212, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 8701\n",
+ "Discriminator Loss: tf.Tensor(1.0064697, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.231585, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 8702\n",
+ "Discriminator Loss: tf.Tensor(0.2797439, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.1244687, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 8703\n",
+ "Discriminator Loss: tf.Tensor(0.8173045, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.5128431, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 8704\n",
+ "Discriminator Loss: tf.Tensor(0.8074334, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.9690334, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 8705\n",
+ "Discriminator Loss: tf.Tensor(0.58273685, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.5991463, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 8706\n",
+ "Discriminator Loss: tf.Tensor(0.5063697, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.0869293, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 8707\n",
+ "Discriminator Loss: tf.Tensor(1.2875789, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.1390074, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 8708\n",
+ "Discriminator Loss: tf.Tensor(1.3669693, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.6506245, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 8709\n",
+ "Discriminator Loss: tf.Tensor(0.95402354, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.24532418, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 8710\n",
+ "Discriminator Loss: tf.Tensor(0.66385174, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.3727276, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 8711\n",
+ "Discriminator Loss: tf.Tensor(0.56990266, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.6092667, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 8712\n",
+ "Discriminator Loss: tf.Tensor(1.7360971, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(3.0198815, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 8713\n",
+ "Discriminator Loss: tf.Tensor(0.5360509, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.6048769, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 8714\n",
+ "Discriminator Loss: tf.Tensor(0.5972746, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.998494, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 8715\n",
+ "Discriminator Loss: tf.Tensor(0.21619886, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.87070227, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 8716\n",
+ "Discriminator Loss: tf.Tensor(1.1641599, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(3.245332, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 8717\n",
+ "Discriminator Loss: tf.Tensor(0.24960938, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.9232076, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 8718\n",
+ "Discriminator Loss: tf.Tensor(1.0877864, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.940214, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 8719\n",
+ "Discriminator Loss: tf.Tensor(0.5704579, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.98197144, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 8720\n",
+ "Discriminator Loss: tf.Tensor(0.41306454, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.8602824, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 8721\n",
+ "Discriminator Loss: tf.Tensor(0.9291646, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.23772676, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 8722\n",
+ "Discriminator Loss: tf.Tensor(1.2267106, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.8365548, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 8723\n",
+ "Discriminator Loss: tf.Tensor(0.36391735, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.65687615, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 8724\n",
+ "Discriminator Loss: tf.Tensor(0.53641254, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.6514182, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 8725\n",
+ "Discriminator Loss: tf.Tensor(0.42200443, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.7692375, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 8726\n",
+ "Discriminator Loss: tf.Tensor(1.0549417, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(3.2744083, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 8727\n",
+ "Discriminator Loss: tf.Tensor(0.20275055, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.3829275, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 8728\n",
+ "Discriminator Loss: tf.Tensor(0.8259496, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.29188466, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 8729\n",
+ "Discriminator Loss: tf.Tensor(1.4731823, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.9414818, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 8730\n",
+ "Discriminator Loss: tf.Tensor(0.6744364, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.63148284, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 8731\n",
+ "Discriminator Loss: tf.Tensor(0.6656358, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.1345003, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 8732\n",
+ "Discriminator Loss: tf.Tensor(0.30977973, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.7223285, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 8733\n",
+ "Discriminator Loss: tf.Tensor(0.56167537, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(3.0840752, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 8734\n",
+ "Discriminator Loss: tf.Tensor(0.36341912, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.5003675, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 8735\n",
+ "Discriminator Loss: tf.Tensor(1.3014187, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.11517447, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 8736\n",
+ "Discriminator Loss: tf.Tensor(1.0264211, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.8676987, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 8737\n",
+ "Discriminator Loss: tf.Tensor(0.26575536, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.104673, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 8738\n",
+ "Discriminator Loss: tf.Tensor(0.9624273, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.06206001, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 8739\n",
+ "Discriminator Loss: tf.Tensor(0.89050627, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.2666304, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 8740\n",
+ "Discriminator Loss: tf.Tensor(0.5452791, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.5512368, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 8741\n",
+ "Discriminator Loss: tf.Tensor(0.5857761, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.5379424, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 8742\n",
+ "Discriminator Loss: tf.Tensor(0.17384394, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.95787984, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 8743\n",
+ "Discriminator Loss: tf.Tensor(0.40964028, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.6698906, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 8744\n",
+ "Discriminator Loss: tf.Tensor(0.42915118, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.3979231, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 8745\n",
+ "Discriminator Loss: tf.Tensor(1.2215981, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.05381313, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 8746\n",
+ "Discriminator Loss: tf.Tensor(0.37909085, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(3.1075697, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 8747\n",
+ "Discriminator Loss: tf.Tensor(0.16191977, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.6994486, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 8748\n",
+ "Discriminator Loss: tf.Tensor(0.4061448, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.9389651, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 8749\n",
+ "Discriminator Loss: tf.Tensor(1.3933572, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(3.463934, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 8750\n",
+ "Discriminator Loss: tf.Tensor(0.047058605, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.0673578, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 8751\n",
+ "Discriminator Loss: tf.Tensor(0.9556138, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.9678542, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 8752\n",
+ "Discriminator Loss: tf.Tensor(2.402568, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.8222246, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 8753\n",
+ "Discriminator Loss: tf.Tensor(1.1788992, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.10661852, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 8754\n",
+ "Discriminator Loss: tf.Tensor(1.525316, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.4369402, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 8755\n",
+ "Discriminator Loss: tf.Tensor(1.7818456, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.31828913, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 8756\n",
+ "Discriminator Loss: tf.Tensor(1.1716832, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.862418, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 8757\n",
+ "Discriminator Loss: tf.Tensor(1.0490961, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.2659229, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 8758\n",
+ "Discriminator Loss: tf.Tensor(1.3546485, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.050999496, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 8759\n",
+ "Discriminator Loss: tf.Tensor(0.8770081, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.078042, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 8760\n",
+ "Discriminator Loss: tf.Tensor(0.9894822, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.1793115, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 8761\n",
+ "Discriminator Loss: tf.Tensor(1.0280641, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.1601638, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 8762\n",
+ "Discriminator Loss: tf.Tensor(1.1324666, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.034575317, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 8763\n",
+ "Discriminator Loss: tf.Tensor(0.46657124, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.1522183, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 8764\n",
+ "Discriminator Loss: tf.Tensor(0.95402, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.6872155, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 8765\n",
+ "Discriminator Loss: tf.Tensor(0.7647071, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.5057527, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 8766\n",
+ "Discriminator Loss: tf.Tensor(1.3913372, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.24409477, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 8767\n",
+ "Discriminator Loss: tf.Tensor(0.6580509, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.2802808, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 8768\n",
+ "Discriminator Loss: tf.Tensor(1.0601857, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.20810413, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 8769\n",
+ "Discriminator Loss: tf.Tensor(0.8503587, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.2544794, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 8770\n",
+ "Discriminator Loss: tf.Tensor(1.5378301, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.27564493, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 8771\n",
+ "Discriminator Loss: tf.Tensor(0.6484491, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.88330287, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 8772\n",
+ "Discriminator Loss: tf.Tensor(0.89620733, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.6343093, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 8773\n",
+ "Discriminator Loss: tf.Tensor(1.4637281, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.3677822, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 8774\n",
+ "Discriminator Loss: tf.Tensor(0.5176532, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.4453489, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 8775\n",
+ "Discriminator Loss: tf.Tensor(0.51909024, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.6826232, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 8776\n",
+ "Discriminator Loss: tf.Tensor(0.5327618, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.8004762, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 8777\n",
+ "Discriminator Loss: tf.Tensor(3.2058654, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-2.0851164, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 8778\n",
+ "Discriminator Loss: tf.Tensor(0.7260239, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.1897811, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 8779\n",
+ "Discriminator Loss: tf.Tensor(1.3623948, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.13970107, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 8780\n",
+ "Discriminator Loss: tf.Tensor(0.5117532, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.2922686, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 8781\n",
+ "Discriminator Loss: tf.Tensor(1.119902, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.14679985, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 8782\n",
+ "Discriminator Loss: tf.Tensor(0.5132211, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.8188628, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 8783\n",
+ "Discriminator Loss: tf.Tensor(1.0049496, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.052229818, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 8784\n",
+ "Discriminator Loss: tf.Tensor(1.255241, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.925244, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 8785\n",
+ "Discriminator Loss: tf.Tensor(1.4126213, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.17109543, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 8786\n",
+ "Discriminator Loss: tf.Tensor(0.8308156, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.4211841, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 8787\n",
+ "Discriminator Loss: tf.Tensor(1.67375, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.48322055, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 8788\n",
+ "Discriminator Loss: tf.Tensor(0.547668, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.4769377, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 8789\n",
+ "Discriminator Loss: tf.Tensor(0.85660005, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.25205946, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 8790\n",
+ "Discriminator Loss: tf.Tensor(0.38817918, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.0664396, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 8791\n",
+ "Discriminator Loss: tf.Tensor(0.17388293, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.0147495, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 8792\n",
+ "Discriminator Loss: tf.Tensor(0.89914834, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.491237, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 8793\n",
+ "Discriminator Loss: tf.Tensor(0.6919012, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.37042198, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 8794\n",
+ "Discriminator Loss: tf.Tensor(0.34559348, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.185342, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 8795\n",
+ "Discriminator Loss: tf.Tensor(0.52074516, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.4481224, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 8796\n",
+ "Discriminator Loss: tf.Tensor(1.274694, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.21060614, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 8797\n",
+ "Discriminator Loss: tf.Tensor(1.212091, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.8816766, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 8798\n",
+ "Discriminator Loss: tf.Tensor(0.7813324, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.48804113, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 8799\n",
+ "Discriminator Loss: tf.Tensor(0.7995515, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.205223, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 8800\n",
+ "Discriminator Loss: tf.Tensor(0.90462637, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.297267, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 8801\n",
+ "Discriminator Loss: tf.Tensor(0.43776312, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.1866949, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 8802\n",
+ "Discriminator Loss: tf.Tensor(0.22958073, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.91645694, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 8803\n",
+ "Discriminator Loss: tf.Tensor(0.718871, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(3.008798, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 8804\n",
+ "Discriminator Loss: tf.Tensor(0.53154826, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.50415295, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 8805\n",
+ "Discriminator Loss: tf.Tensor(0.41520143, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(3.2304137, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 8806\n",
+ "Discriminator Loss: tf.Tensor(0.07663961, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.4341866, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 8807\n",
+ "Discriminator Loss: tf.Tensor(1.0632783, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.12964393, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 8808\n",
+ "Discriminator Loss: tf.Tensor(2.8475647, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.7514389, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 8809\n",
+ "Discriminator Loss: tf.Tensor(0.99008286, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.75584435, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 8810\n",
+ "Discriminator Loss: tf.Tensor(1.0867642, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.6459932, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 8811\n",
+ "Discriminator Loss: tf.Tensor(1.5190033, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.31648123, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 8812\n",
+ "Discriminator Loss: tf.Tensor(0.9054631, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.3829342, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 8813\n",
+ "Discriminator Loss: tf.Tensor(0.5956365, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.6839579, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 8814\n",
+ "Discriminator Loss: tf.Tensor(1.0372359, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.7285274, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 8815\n",
+ "Discriminator Loss: tf.Tensor(0.44598362, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.6812249, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 8816\n",
+ "Discriminator Loss: tf.Tensor(0.82239527, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.8908406, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 8817\n",
+ "Discriminator Loss: tf.Tensor(0.67677283, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.75607663, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 8818\n",
+ "Discriminator Loss: tf.Tensor(0.73803055, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.3391163, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 8819\n",
+ "Discriminator Loss: tf.Tensor(0.39293465, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.9108384, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 8820\n",
+ "Discriminator Loss: tf.Tensor(1.3832254, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.4781818, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 8821\n",
+ "Discriminator Loss: tf.Tensor(0.516701, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.6813383, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 8822\n",
+ "Discriminator Loss: tf.Tensor(0.71228373, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.0617466, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 8823\n",
+ "Discriminator Loss: tf.Tensor(0.84423727, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.29260075, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 8824\n",
+ "Discriminator Loss: tf.Tensor(0.7122413, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.3215656, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 8825\n",
+ "Discriminator Loss: tf.Tensor(1.1805336, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.13776326, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 8826\n",
+ "Discriminator Loss: tf.Tensor(1.0181452, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.8265663, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 8827\n",
+ "Discriminator Loss: tf.Tensor(1.1880399, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.006772284, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 8828\n",
+ "Discriminator Loss: tf.Tensor(0.9230933, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.7460598, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 8829\n",
+ "Discriminator Loss: tf.Tensor(1.0027814, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.1782883, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 8830\n",
+ "Discriminator Loss: tf.Tensor(0.77660364, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.747316, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 8831\n",
+ "Discriminator Loss: tf.Tensor(0.5771885, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.5262483, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 8832\n",
+ "Discriminator Loss: tf.Tensor(0.2578906, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.8028297, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 8833\n",
+ "Discriminator Loss: tf.Tensor(0.73146194, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.50222176, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 8834\n",
+ "Discriminator Loss: tf.Tensor(0.8272599, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.5919187, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 8835\n",
+ "Discriminator Loss: tf.Tensor(0.5688603, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.7279729, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 8836\n",
+ "Discriminator Loss: tf.Tensor(1.1417489, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.6195538, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 8837\n",
+ "Discriminator Loss: tf.Tensor(0.5853444, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.7475148, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 8838\n",
+ "Discriminator Loss: tf.Tensor(0.8281611, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.3745234, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 8839\n",
+ "Discriminator Loss: tf.Tensor(1.1140511, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.028237471, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 8840\n",
+ "Discriminator Loss: tf.Tensor(0.56725866, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.5531597, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 8841\n",
+ "Discriminator Loss: tf.Tensor(0.13929358, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.3118958, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 8842\n",
+ "Discriminator Loss: tf.Tensor(0.5970472, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.5183051, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 8843\n",
+ "Discriminator Loss: tf.Tensor(0.42027494, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.5845242, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 8844\n",
+ "Discriminator Loss: tf.Tensor(0.5290382, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.4211417, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 8845\n",
+ "Discriminator Loss: tf.Tensor(1.6576762, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.2059166, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 8846\n",
+ "Discriminator Loss: tf.Tensor(0.6869149, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.7336522, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 8847\n",
+ "Discriminator Loss: tf.Tensor(0.98871666, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.1734128, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 8848\n",
+ "Discriminator Loss: tf.Tensor(1.2334996, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.2017777, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 8849\n",
+ "Discriminator Loss: tf.Tensor(0.93800175, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.1862769, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 8850\n",
+ "Discriminator Loss: tf.Tensor(0.79503584, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.0306232, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 8851\n",
+ "Discriminator Loss: tf.Tensor(0.68087745, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.40418255, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 8852\n",
+ "Discriminator Loss: tf.Tensor(0.49996766, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.335055, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 8853\n",
+ "Discriminator Loss: tf.Tensor(0.113603234, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.96475047, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 8854\n",
+ "Discriminator Loss: tf.Tensor(0.59513235, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(3.149992, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 8855\n",
+ "Discriminator Loss: tf.Tensor(0.15777542, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.5130554, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 8856\n",
+ "Discriminator Loss: tf.Tensor(0.59328336, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.5199346, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 8857\n",
+ "Discriminator Loss: tf.Tensor(1.0305284, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(3.2262585, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 8858\n",
+ "Discriminator Loss: tf.Tensor(0.27268243, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.2119372, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 8859\n",
+ "Discriminator Loss: tf.Tensor(1.0409023, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.1262043, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 8860\n",
+ "Discriminator Loss: tf.Tensor(0.7648368, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.9038817, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 8861\n",
+ "Discriminator Loss: tf.Tensor(1.4476868, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.20210408, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 8862\n",
+ "Discriminator Loss: tf.Tensor(0.8260862, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.864942, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 8863\n",
+ "Discriminator Loss: tf.Tensor(0.40371284, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.7629803, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 8864\n",
+ "Discriminator Loss: tf.Tensor(0.80052435, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.3481846, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 8865\n",
+ "Discriminator Loss: tf.Tensor(0.37173983, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.7140681, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 8866\n",
+ "Discriminator Loss: tf.Tensor(1.1595587, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.578524, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 8867\n",
+ "Discriminator Loss: tf.Tensor(0.48353678, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.64663184, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 8868\n",
+ "Discriminator Loss: tf.Tensor(0.5678365, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.82057, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 8869\n",
+ "Discriminator Loss: tf.Tensor(0.15855148, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.040366, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 8870\n",
+ "Discriminator Loss: tf.Tensor(0.44609568, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.5999912, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 8871\n",
+ "Discriminator Loss: tf.Tensor(1.3778361, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.3397121, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 8872\n",
+ "Discriminator Loss: tf.Tensor(0.7239162, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.6458127, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 8873\n",
+ "Discriminator Loss: tf.Tensor(0.48640403, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.2185749, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 8874\n",
+ "Discriminator Loss: tf.Tensor(1.1029644, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.34500146, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 8875\n",
+ "Discriminator Loss: tf.Tensor(0.39227492, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.0912788, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 8876\n",
+ "Discriminator Loss: tf.Tensor(0.3331887, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.2005807, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 8877\n",
+ "Discriminator Loss: tf.Tensor(1.7435429, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.63790286, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 8878\n",
+ "Discriminator Loss: tf.Tensor(0.77638113, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.9922719, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 8879\n",
+ "Discriminator Loss: tf.Tensor(0.45975906, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.5544264, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 8880\n",
+ "Discriminator Loss: tf.Tensor(0.98431504, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.4678957, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 8881\n",
+ "Discriminator Loss: tf.Tensor(0.11723354, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.2915876, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 8882\n",
+ "Discriminator Loss: tf.Tensor(0.5792446, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.81780916, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 8883\n",
+ "Discriminator Loss: tf.Tensor(0.7746993, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.3265572, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 8884\n",
+ "Discriminator Loss: tf.Tensor(1.24898, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.60395485, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 8885\n",
+ "Discriminator Loss: tf.Tensor(0.6126458, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.087333, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 8886\n",
+ "Discriminator Loss: tf.Tensor(0.7236567, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.66839725, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 8887\n",
+ "Discriminator Loss: tf.Tensor(1.4590198, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.8272178, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 8888\n",
+ "Discriminator Loss: tf.Tensor(0.6827395, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.39999843, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 8889\n",
+ "Discriminator Loss: tf.Tensor(0.89288145, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.6253233, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 8890\n",
+ "Discriminator Loss: tf.Tensor(1.418866, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.34254798, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 8891\n",
+ "Discriminator Loss: tf.Tensor(0.7069068, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.3943125, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 8892\n",
+ "Discriminator Loss: tf.Tensor(1.3875388, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.35749748, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 8893\n",
+ "Discriminator Loss: tf.Tensor(0.5581234, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.4664034, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 8894\n",
+ "Discriminator Loss: tf.Tensor(0.70652, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.32976177, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 8895\n",
+ "Discriminator Loss: tf.Tensor(0.645498, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.210939, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 8896\n",
+ "Discriminator Loss: tf.Tensor(0.5059781, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.6276217, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 8897\n",
+ "Discriminator Loss: tf.Tensor(1.4231342, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.485628, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 8898\n",
+ "Discriminator Loss: tf.Tensor(0.7280591, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.37945446, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 8899\n",
+ "Discriminator Loss: tf.Tensor(0.270465, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.6682582, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 8900\n",
+ "Discriminator Loss: tf.Tensor(0.80168724, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.6078287, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 8901\n",
+ "Discriminator Loss: tf.Tensor(0.9331372, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.36921, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 8902\n",
+ "Discriminator Loss: tf.Tensor(0.84158945, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.4205763, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 8903\n",
+ "Discriminator Loss: tf.Tensor(0.63854975, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.8903236, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 8904\n",
+ "Discriminator Loss: tf.Tensor(0.20314261, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.0591973, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 8905\n",
+ "Discriminator Loss: tf.Tensor(0.21444874, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.1972952, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 8906\n",
+ "Discriminator Loss: tf.Tensor(1.801694, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.57060295, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 8907\n",
+ "Discriminator Loss: tf.Tensor(1.9674815, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.831638, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 8908\n",
+ "Discriminator Loss: tf.Tensor(0.8377824, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.46447924, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 8909\n",
+ "Discriminator Loss: tf.Tensor(0.8626665, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.0967462, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 8910\n",
+ "Discriminator Loss: tf.Tensor(0.66825366, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.44838706, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 8911\n",
+ "Discriminator Loss: tf.Tensor(1.0418241, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.051561, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 8912\n",
+ "Discriminator Loss: tf.Tensor(0.54897684, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.63756186, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 8913\n",
+ "Discriminator Loss: tf.Tensor(0.62253076, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.044748, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 8914\n",
+ "Discriminator Loss: tf.Tensor(0.46647805, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.78344154, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 8915\n",
+ "Discriminator Loss: tf.Tensor(0.8080843, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.2813818, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 8916\n",
+ "Discriminator Loss: tf.Tensor(0.9859845, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.4093428, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 8917\n",
+ "Discriminator Loss: tf.Tensor(0.8374655, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.3049018, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 8918\n",
+ "Discriminator Loss: tf.Tensor(0.49957514, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.66659826, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 8919\n",
+ "Discriminator Loss: tf.Tensor(0.50392234, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.3795516, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 8920\n",
+ "Discriminator Loss: tf.Tensor(0.4221223, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.9864409, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 8921\n",
+ "Discriminator Loss: tf.Tensor(0.6889626, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.9541202, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 8922\n",
+ "Discriminator Loss: tf.Tensor(0.97171926, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.14149241, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 8923\n",
+ "Discriminator Loss: tf.Tensor(1.2997308, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.4083729, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 8924\n",
+ "Discriminator Loss: tf.Tensor(0.63895243, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.4454763, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 8925\n",
+ "Discriminator Loss: tf.Tensor(0.9902922, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.1882045, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 8926\n",
+ "Discriminator Loss: tf.Tensor(0.44297105, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.6491411, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 8927\n",
+ "Discriminator Loss: tf.Tensor(0.7262973, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.431276, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 8928\n",
+ "Discriminator Loss: tf.Tensor(0.5886154, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.49213314, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 8929\n",
+ "Discriminator Loss: tf.Tensor(1.0233127, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.8049734, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 8930\n",
+ "Discriminator Loss: tf.Tensor(0.1521959, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.100382, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 8931\n",
+ "Discriminator Loss: tf.Tensor(1.0542579, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.06287651, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 8932\n",
+ "Discriminator Loss: tf.Tensor(0.69274247, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.441207, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 8933\n",
+ "Discriminator Loss: tf.Tensor(0.47619796, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.70731896, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 8934\n",
+ "Discriminator Loss: tf.Tensor(1.187354, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.8860295, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 8935\n",
+ "Discriminator Loss: tf.Tensor(0.6922236, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.8591725, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 8936\n",
+ "Discriminator Loss: tf.Tensor(0.5874529, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.1102455, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 8937\n",
+ "Discriminator Loss: tf.Tensor(0.7704594, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.29501137, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 8938\n",
+ "Discriminator Loss: tf.Tensor(1.0703514, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.6232734, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 8939\n",
+ "Discriminator Loss: tf.Tensor(0.29441285, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.1023821, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 8940\n",
+ "Discriminator Loss: tf.Tensor(1.106391, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.13870026, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 8941\n",
+ "Discriminator Loss: tf.Tensor(0.7364197, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.7180347, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 8942\n",
+ "Discriminator Loss: tf.Tensor(1.0890347, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.059480652, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 8943\n",
+ "Discriminator Loss: tf.Tensor(0.6093874, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.8570973, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 8944\n",
+ "Discriminator Loss: tf.Tensor(0.70397353, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.7518935, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 8945\n",
+ "Discriminator Loss: tf.Tensor(0.7435158, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.2339003, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 8946\n",
+ "Discriminator Loss: tf.Tensor(0.61023134, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.48461953, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 8947\n",
+ "Discriminator Loss: tf.Tensor(0.3749533, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.6025813, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 8948\n",
+ "Discriminator Loss: tf.Tensor(0.5105982, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.6224247, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 8949\n",
+ "Discriminator Loss: tf.Tensor(0.43340528, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.6834636, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 8950\n",
+ "Discriminator Loss: tf.Tensor(0.66459626, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.7075474, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 8951\n",
+ "Discriminator Loss: tf.Tensor(0.8328286, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.37062454, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 8952\n",
+ "Discriminator Loss: tf.Tensor(1.0291605, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.122533, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 8953\n",
+ "Discriminator Loss: tf.Tensor(1.147793, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.05892067, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 8954\n",
+ "Discriminator Loss: tf.Tensor(0.55560344, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.4259096, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 8955\n",
+ "Discriminator Loss: tf.Tensor(1.7651569, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.7316347, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 8956\n",
+ "Discriminator Loss: tf.Tensor(1.0508546, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.5299336, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 8957\n",
+ "Discriminator Loss: tf.Tensor(2.1138747, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.88867646, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 8958\n",
+ "Discriminator Loss: tf.Tensor(1.0967898, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.6333075, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 8959\n",
+ "Discriminator Loss: tf.Tensor(1.5026082, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.22952585, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 8960\n",
+ "Discriminator Loss: tf.Tensor(0.8053036, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.9025316, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 8961\n",
+ "Discriminator Loss: tf.Tensor(1.2238673, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.17602998, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 8962\n",
+ "Discriminator Loss: tf.Tensor(0.6783344, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.9778074, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 8963\n",
+ "Discriminator Loss: tf.Tensor(0.39199644, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.72052926, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 8964\n",
+ "Discriminator Loss: tf.Tensor(0.8125372, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.9795935, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 8965\n",
+ "Discriminator Loss: tf.Tensor(0.6248423, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.68147403, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 8966\n",
+ "Discriminator Loss: tf.Tensor(0.8237272, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.7214167, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 8967\n",
+ "Discriminator Loss: tf.Tensor(0.44533983, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.73301727, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 8968\n",
+ "Discriminator Loss: tf.Tensor(1.3002802, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(3.0893452, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 8969\n",
+ "Discriminator Loss: tf.Tensor(0.37820092, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.67870885, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 8970\n",
+ "Discriminator Loss: tf.Tensor(1.0856171, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.3963006, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 8971\n",
+ "Discriminator Loss: tf.Tensor(0.15095347, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.0120479, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 8972\n",
+ "Discriminator Loss: tf.Tensor(0.5394946, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.8629127, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 8973\n",
+ "Discriminator Loss: tf.Tensor(0.7228605, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.32833457, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 8974\n",
+ "Discriminator Loss: tf.Tensor(1.1464673, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(3.1032772, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 8975\n",
+ "Discriminator Loss: tf.Tensor(0.28286183, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.3412482, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 8976\n",
+ "Discriminator Loss: tf.Tensor(1.3412474, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.18591945, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 8977\n",
+ "Discriminator Loss: tf.Tensor(0.74283373, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.4728827, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 8978\n",
+ "Discriminator Loss: tf.Tensor(0.44989532, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.8987768, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 8979\n",
+ "Discriminator Loss: tf.Tensor(0.8101423, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.6546428, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 8980\n",
+ "Discriminator Loss: tf.Tensor(0.16251981, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.3726794, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 8981\n",
+ "Discriminator Loss: tf.Tensor(0.35160083, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.68970484, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 8982\n",
+ "Discriminator Loss: tf.Tensor(1.5565205, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(3.260661, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 8983\n",
+ "Discriminator Loss: tf.Tensor(0.36972478, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.979846, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 8984\n",
+ "Discriminator Loss: tf.Tensor(0.4088568, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.2537842, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 8985\n",
+ "Discriminator Loss: tf.Tensor(0.36780292, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.4101076, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 8986\n",
+ "Discriminator Loss: tf.Tensor(0.47611952, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.74892086, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 8987\n",
+ "Discriminator Loss: tf.Tensor(0.38216084, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.7214649, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 8988\n",
+ "Discriminator Loss: tf.Tensor(0.28188455, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.5950996, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 8989\n",
+ "Discriminator Loss: tf.Tensor(1.1083086, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.051927436, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 8990\n",
+ "Discriminator Loss: tf.Tensor(1.2140033, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.9970531, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 8991\n",
+ "Discriminator Loss: tf.Tensor(0.63643754, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.43843928, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 8992\n",
+ "Discriminator Loss: tf.Tensor(0.9882592, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.8853594, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 8993\n",
+ "Discriminator Loss: tf.Tensor(2.3282928, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-1.1708157, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 8994\n",
+ "Discriminator Loss: tf.Tensor(0.68150795, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.2806027, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 8995\n",
+ "Discriminator Loss: tf.Tensor(0.61881286, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.48983407, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 8996\n",
+ "Discriminator Loss: tf.Tensor(0.7254411, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.863967, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 8997\n",
+ "Discriminator Loss: tf.Tensor(1.0228928, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.055628926, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 8998\n",
+ "Discriminator Loss: tf.Tensor(0.9552522, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.0469053, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 8999\n",
+ "Discriminator Loss: tf.Tensor(0.54815614, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.52184933, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 9000\n",
+ "Discriminator Loss: tf.Tensor(0.920291, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.2158124, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 9001\n",
+ "Discriminator Loss: tf.Tensor(1.3082743, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.08035678, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 9002\n",
+ "Discriminator Loss: tf.Tensor(0.5970407, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.6386191, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 9003\n",
+ "Discriminator Loss: tf.Tensor(1.0937668, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.01145235, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 9004\n",
+ "Discriminator Loss: tf.Tensor(0.51354873, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.2947383, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 9005\n",
+ "Discriminator Loss: tf.Tensor(0.29959, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.8157034, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 9006\n",
+ "Discriminator Loss: tf.Tensor(1.1544093, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(3.17673, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 9007\n",
+ "Discriminator Loss: tf.Tensor(0.49796206, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.92936295, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 9008\n",
+ "Discriminator Loss: tf.Tensor(0.68321437, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.6657436, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 9009\n",
+ "Discriminator Loss: tf.Tensor(0.55677754, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.2620984, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 9010\n",
+ "Discriminator Loss: tf.Tensor(1.0713768, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.0059335097, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 9011\n",
+ "Discriminator Loss: tf.Tensor(0.81614196, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.1736653, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 9012\n",
+ "Discriminator Loss: tf.Tensor(0.27745065, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.96086335, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 9013\n",
+ "Discriminator Loss: tf.Tensor(1.0314648, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.1831703, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 9014\n",
+ "Discriminator Loss: tf.Tensor(0.81855345, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.24235503, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 9015\n",
+ "Discriminator Loss: tf.Tensor(0.5655353, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.3076484, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 9016\n",
+ "Discriminator Loss: tf.Tensor(0.24620362, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.8216327, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 9017\n",
+ "Discriminator Loss: tf.Tensor(1.1198074, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(3.277744, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 9018\n",
+ "Discriminator Loss: tf.Tensor(0.55593026, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.4813539, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 9019\n",
+ "Discriminator Loss: tf.Tensor(1.1003927, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.19288665, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 9020\n",
+ "Discriminator Loss: tf.Tensor(0.56970155, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.050021, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 9021\n",
+ "Discriminator Loss: tf.Tensor(0.62474537, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.6904712, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 9022\n",
+ "Discriminator Loss: tf.Tensor(0.41851667, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.1850717, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 9023\n",
+ "Discriminator Loss: tf.Tensor(1.6123829, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.09324602, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 9024\n",
+ "Discriminator Loss: tf.Tensor(1.4139574, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.5458496, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 9025\n",
+ "Discriminator Loss: tf.Tensor(0.9161904, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.1792502, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 9026\n",
+ "Discriminator Loss: tf.Tensor(0.6649548, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(3.1918042, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 9027\n",
+ "Discriminator Loss: tf.Tensor(0.06865053, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.0370818, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 9028\n",
+ "Discriminator Loss: tf.Tensor(0.114758484, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.4182272, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 9029\n",
+ "Discriminator Loss: tf.Tensor(0.7647929, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.4841143, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 9030\n",
+ "Discriminator Loss: tf.Tensor(5.634269, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(4.177019, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 9031\n",
+ "Discriminator Loss: tf.Tensor(1.4710381, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.3196875, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 9032\n",
+ "Discriminator Loss: tf.Tensor(1.6215875, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.1596917, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 9033\n",
+ "Discriminator Loss: tf.Tensor(1.0921586, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.065179, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 9034\n",
+ "Discriminator Loss: tf.Tensor(1.1859312, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.35180917, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 9035\n",
+ "Discriminator Loss: tf.Tensor(0.7883079, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.9082082, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 9036\n",
+ "Discriminator Loss: tf.Tensor(0.91558087, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.6076084, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 9037\n",
+ "Discriminator Loss: tf.Tensor(0.56485885, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.6479957, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 9038\n",
+ "Discriminator Loss: tf.Tensor(1.0171621, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.6295543, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 9039\n",
+ "Discriminator Loss: tf.Tensor(0.6948517, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.45069942, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 9040\n",
+ "Discriminator Loss: tf.Tensor(0.6859735, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.4641074, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 9041\n",
+ "Discriminator Loss: tf.Tensor(0.5583092, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.54704136, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 9042\n",
+ "Discriminator Loss: tf.Tensor(1.2132319, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.8352493, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 9043\n",
+ "Discriminator Loss: tf.Tensor(0.8404271, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.60225326, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 9044\n",
+ "Discriminator Loss: tf.Tensor(0.40631744, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.1306193, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 9045\n",
+ "Discriminator Loss: tf.Tensor(1.4478323, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.36132357, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 9046\n",
+ "Discriminator Loss: tf.Tensor(0.46213078, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.4540716, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 9047\n",
+ "Discriminator Loss: tf.Tensor(1.0814252, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.13750185, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 9048\n",
+ "Discriminator Loss: tf.Tensor(0.8935883, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.0042365, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 9049\n",
+ "Discriminator Loss: tf.Tensor(1.3476169, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.23376794, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 9050\n",
+ "Discriminator Loss: tf.Tensor(0.77417994, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.5456935, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 9051\n",
+ "Discriminator Loss: tf.Tensor(0.38278878, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.6734806, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 9052\n",
+ "Discriminator Loss: tf.Tensor(0.78214335, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.1780045, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 9053\n",
+ "Discriminator Loss: tf.Tensor(1.7299327, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.40827718, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 9054\n",
+ "Discriminator Loss: tf.Tensor(0.699824, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.1904355, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 9055\n",
+ "Discriminator Loss: tf.Tensor(1.4221745, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.38217464, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 9056\n",
+ "Discriminator Loss: tf.Tensor(0.78651464, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.9855114, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 9057\n",
+ "Discriminator Loss: tf.Tensor(0.82610196, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.5230648, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 9058\n",
+ "Discriminator Loss: tf.Tensor(0.92795587, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.7063788, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 9059\n",
+ "Discriminator Loss: tf.Tensor(1.0898291, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.071528286, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 9060\n",
+ "Discriminator Loss: tf.Tensor(0.6868621, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.5196333, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 9061\n",
+ "Discriminator Loss: tf.Tensor(0.7227504, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.4200264, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 9062\n",
+ "Discriminator Loss: tf.Tensor(0.5561365, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.9603039, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 9063\n",
+ "Discriminator Loss: tf.Tensor(0.5264737, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.67435414, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 9064\n",
+ "Discriminator Loss: tf.Tensor(0.2996094, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.4784718, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 9065\n",
+ "Discriminator Loss: tf.Tensor(0.10706447, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.4551195, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 9066\n",
+ "Discriminator Loss: tf.Tensor(1.1650444, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.09572264, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 9067\n",
+ "Discriminator Loss: tf.Tensor(0.6050689, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.619818, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 9068\n",
+ "Discriminator Loss: tf.Tensor(0.39673495, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.5124327, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 9069\n",
+ "Discriminator Loss: tf.Tensor(0.7903457, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.49114633, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 9070\n",
+ "Discriminator Loss: tf.Tensor(1.3191998, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.9164665, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 9071\n",
+ "Discriminator Loss: tf.Tensor(0.74715525, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.6353124, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 9072\n",
+ "Discriminator Loss: tf.Tensor(0.7028817, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.2795808, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 9073\n",
+ "Discriminator Loss: tf.Tensor(0.36541808, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.86097884, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 9074\n",
+ "Discriminator Loss: tf.Tensor(0.6775534, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(3.5632222, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 9075\n",
+ "Discriminator Loss: tf.Tensor(0.3623584, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.4484291, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 9076\n",
+ "Discriminator Loss: tf.Tensor(1.1293491, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.045289468, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 9077\n",
+ "Discriminator Loss: tf.Tensor(0.8926721, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.9792, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 9078\n",
+ "Discriminator Loss: tf.Tensor(1.1456149, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.004899373, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 9079\n",
+ "Discriminator Loss: tf.Tensor(0.65716374, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.6830229, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 9080\n",
+ "Discriminator Loss: tf.Tensor(0.9494501, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.08346766, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 9081\n",
+ "Discriminator Loss: tf.Tensor(0.68525237, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.1246026, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 9082\n",
+ "Discriminator Loss: tf.Tensor(0.41567123, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.6140132, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 9083\n",
+ "Discriminator Loss: tf.Tensor(1.4691601, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.4980752, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 9084\n",
+ "Discriminator Loss: tf.Tensor(0.6720164, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.44757435, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 9085\n",
+ "Discriminator Loss: tf.Tensor(0.8108806, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.9473935, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 9086\n",
+ "Discriminator Loss: tf.Tensor(0.3777826, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.70399326, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 9087\n",
+ "Discriminator Loss: tf.Tensor(0.61725616, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.2621644, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 9088\n",
+ "Discriminator Loss: tf.Tensor(1.1936404, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.046554804, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 9089\n",
+ "Discriminator Loss: tf.Tensor(0.953825, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.9468008, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 9090\n",
+ "Discriminator Loss: tf.Tensor(0.6183946, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.49279556, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 9091\n",
+ "Discriminator Loss: tf.Tensor(0.94331783, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.140165, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 9092\n",
+ "Discriminator Loss: tf.Tensor(0.7225739, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.54801077, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 9093\n",
+ "Discriminator Loss: tf.Tensor(0.73163736, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.490613, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 9094\n",
+ "Discriminator Loss: tf.Tensor(0.38014504, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.7508504, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 9095\n",
+ "Discriminator Loss: tf.Tensor(0.941838, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.7650785, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 9096\n",
+ "Discriminator Loss: tf.Tensor(0.5484901, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.7545481, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 9097\n",
+ "Discriminator Loss: tf.Tensor(0.8360173, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(3.0110161, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 9098\n",
+ "Discriminator Loss: tf.Tensor(0.2931164, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.2249624, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 9099\n",
+ "Discriminator Loss: tf.Tensor(1.6964372, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.50976366, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 9100\n",
+ "Discriminator Loss: tf.Tensor(0.64272046, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.1156917, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 9101\n",
+ "Discriminator Loss: tf.Tensor(0.58088535, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.5482733, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 9102\n",
+ "Discriminator Loss: tf.Tensor(0.6931884, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.9085653, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 9103\n",
+ "Discriminator Loss: tf.Tensor(0.11905977, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.4002132, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 9104\n",
+ "Discriminator Loss: tf.Tensor(0.60807574, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.56033397, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 9105\n",
+ "Discriminator Loss: tf.Tensor(0.75540864, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(3.5691254, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 9106\n",
+ "Discriminator Loss: tf.Tensor(0.15767573, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.7627306, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 9107\n",
+ "Discriminator Loss: tf.Tensor(0.22473505, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.8488116, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 9108\n",
+ "Discriminator Loss: tf.Tensor(1.765455, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(3.7300212, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 9109\n",
+ "Discriminator Loss: tf.Tensor(0.3965226, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.7832714, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 9110\n",
+ "Discriminator Loss: tf.Tensor(1.1711099, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.1580937, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 9111\n",
+ "Discriminator Loss: tf.Tensor(1.1599244, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.18419142, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 9112\n",
+ "Discriminator Loss: tf.Tensor(0.753374, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.2685173, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 9113\n",
+ "Discriminator Loss: tf.Tensor(0.11960594, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.9754326, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 9114\n",
+ "Discriminator Loss: tf.Tensor(0.9170605, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.917981, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 9115\n",
+ "Discriminator Loss: tf.Tensor(0.48627198, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.56428665, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 9116\n",
+ "Discriminator Loss: tf.Tensor(1.6598206, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.6956806, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 9117\n",
+ "Discriminator Loss: tf.Tensor(1.2588835, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.0038968436, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 9118\n",
+ "Discriminator Loss: tf.Tensor(0.94089293, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.3684846, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 9119\n",
+ "Discriminator Loss: tf.Tensor(1.7799993, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.49391922, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 9120\n",
+ "Discriminator Loss: tf.Tensor(0.74269295, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.6836957, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 9121\n",
+ "Discriminator Loss: tf.Tensor(0.80861634, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.5795751, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 9122\n",
+ "Discriminator Loss: tf.Tensor(0.7632371, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.039027, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 9123\n",
+ "Discriminator Loss: tf.Tensor(0.6535729, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.40508798, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 9124\n",
+ "Discriminator Loss: tf.Tensor(0.95858014, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.4243557, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 9125\n",
+ "Discriminator Loss: tf.Tensor(0.45809507, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.0606743, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 9126\n",
+ "Discriminator Loss: tf.Tensor(1.6592214, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.6247252, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 9127\n",
+ "Discriminator Loss: tf.Tensor(0.6505238, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.6873089, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 9128\n",
+ "Discriminator Loss: tf.Tensor(1.168632, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.08104618, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 9129\n",
+ "Discriminator Loss: tf.Tensor(1.1318988, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.2734842, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 9130\n",
+ "Discriminator Loss: tf.Tensor(1.0783451, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.044859704, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 9131\n",
+ "Discriminator Loss: tf.Tensor(0.53485245, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.9453126, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 9132\n",
+ "Discriminator Loss: tf.Tensor(0.15308408, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.0584546, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 9133\n",
+ "Discriminator Loss: tf.Tensor(0.5197791, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.67564887, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 9134\n",
+ "Discriminator Loss: tf.Tensor(0.844268, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.1514, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 9135\n",
+ "Discriminator Loss: tf.Tensor(0.80142856, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.25602272, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 9136\n",
+ "Discriminator Loss: tf.Tensor(0.58744836, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.8087074, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 9137\n",
+ "Discriminator Loss: tf.Tensor(0.7638868, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.63960296, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 9138\n",
+ "Discriminator Loss: tf.Tensor(0.47393015, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.8824676, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 9139\n",
+ "Discriminator Loss: tf.Tensor(1.7222567, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.6929765, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 9140\n",
+ "Discriminator Loss: tf.Tensor(1.2132617, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.6756064, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 9141\n",
+ "Discriminator Loss: tf.Tensor(1.3775389, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.08370579, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 9142\n",
+ "Discriminator Loss: tf.Tensor(0.35427883, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.4878384, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 9143\n",
+ "Discriminator Loss: tf.Tensor(0.95011634, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.24692641, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 9144\n",
+ "Discriminator Loss: tf.Tensor(1.0579047, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.2076185, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 9145\n",
+ "Discriminator Loss: tf.Tensor(0.55630356, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.59512156, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 9146\n",
+ "Discriminator Loss: tf.Tensor(0.9414828, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.0814917, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 9147\n",
+ "Discriminator Loss: tf.Tensor(0.6581403, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.5546884, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 9148\n",
+ "Discriminator Loss: tf.Tensor(0.9018397, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.504365, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 9149\n",
+ "Discriminator Loss: tf.Tensor(0.42966023, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.7212041, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 9150\n",
+ "Discriminator Loss: tf.Tensor(0.5770308, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.6453254, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 9151\n",
+ "Discriminator Loss: tf.Tensor(1.0683352, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.16522573, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 9152\n",
+ "Discriminator Loss: tf.Tensor(0.6323044, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(3.1065006, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 9153\n",
+ "Discriminator Loss: tf.Tensor(0.31406027, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.1332173, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 9154\n",
+ "Discriminator Loss: tf.Tensor(1.3561527, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.17060976, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 9155\n",
+ "Discriminator Loss: tf.Tensor(0.8649317, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.5339868, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 9156\n",
+ "Discriminator Loss: tf.Tensor(0.532243, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.6059738, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 9157\n",
+ "Discriminator Loss: tf.Tensor(0.8615875, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.9812486, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 9158\n",
+ "Discriminator Loss: tf.Tensor(0.3497948, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.2847176, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 9159\n",
+ "Discriminator Loss: tf.Tensor(0.7559519, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.39961538, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 9160\n",
+ "Discriminator Loss: tf.Tensor(0.8668133, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.7398107, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 9161\n",
+ "Discriminator Loss: tf.Tensor(1.6684725, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.38527104, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 9162\n",
+ "Discriminator Loss: tf.Tensor(0.42503476, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.097359, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 9163\n",
+ "Discriminator Loss: tf.Tensor(0.66772217, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.7076781, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 9164\n",
+ "Discriminator Loss: tf.Tensor(1.1519275, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.7196646, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 9165\n",
+ "Discriminator Loss: tf.Tensor(1.3003007, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.23630877, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 9166\n",
+ "Discriminator Loss: tf.Tensor(0.46636826, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.1374822, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 9167\n",
+ "Discriminator Loss: tf.Tensor(0.38481945, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.6633455, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 9168\n",
+ "Discriminator Loss: tf.Tensor(1.1220865, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(3.0073907, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 9169\n",
+ "Discriminator Loss: tf.Tensor(0.44666874, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.7435965, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 9170\n",
+ "Discriminator Loss: tf.Tensor(0.3920527, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.669493, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 9171\n",
+ "Discriminator Loss: tf.Tensor(0.3313226, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.589014, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 9172\n",
+ "Discriminator Loss: tf.Tensor(0.34550646, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.69399214, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 9173\n",
+ "Discriminator Loss: tf.Tensor(1.3970957, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(3.4554799, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 9174\n",
+ "Discriminator Loss: tf.Tensor(0.09685905, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.2213472, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 9175\n",
+ "Discriminator Loss: tf.Tensor(0.929124, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.3453772, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 9176\n",
+ "Discriminator Loss: tf.Tensor(1.0218128, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.5854948, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 9177\n",
+ "Discriminator Loss: tf.Tensor(0.27409703, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.1615306, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 9178\n",
+ "Discriminator Loss: tf.Tensor(0.7636239, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.3349, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 9179\n",
+ "Discriminator Loss: tf.Tensor(1.086785, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.419432, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 9180\n",
+ "Discriminator Loss: tf.Tensor(0.02172114, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.1491343, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 9181\n",
+ "Discriminator Loss: tf.Tensor(65.427155, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.8936777, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 9182\n",
+ "Discriminator Loss: tf.Tensor(10.48065, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.17515536, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 9183\n",
+ "Discriminator Loss: tf.Tensor(6.923926, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.24354784, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 9184\n",
+ "Discriminator Loss: tf.Tensor(5.8153, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.1180565, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 9185\n",
+ "Discriminator Loss: tf.Tensor(3.513285, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.18768127, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 9186\n",
+ "Discriminator Loss: tf.Tensor(4.08068, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.17490745, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 9187\n",
+ "Discriminator Loss: tf.Tensor(2.9237728, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.2307372, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 9188\n",
+ "Discriminator Loss: tf.Tensor(2.9267392, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.311518, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 9189\n",
+ "Discriminator Loss: tf.Tensor(2.7617643, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.36603442, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 9190\n",
+ "Discriminator Loss: tf.Tensor(2.4243894, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.40596148, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 9191\n",
+ "Discriminator Loss: tf.Tensor(2.5037253, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.4572829, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 9192\n",
+ "Discriminator Loss: tf.Tensor(2.3038008, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.48589203, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 9193\n",
+ "Discriminator Loss: tf.Tensor(2.114949, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.52620995, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 9194\n",
+ "Discriminator Loss: tf.Tensor(2.142549, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.5514564, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 9195\n",
+ "Discriminator Loss: tf.Tensor(2.0752494, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.5707051, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 9196\n",
+ "Discriminator Loss: tf.Tensor(2.0196366, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.5935754, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 9197\n",
+ "Discriminator Loss: tf.Tensor(1.95315, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.61381406, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 9198\n",
+ "Discriminator Loss: tf.Tensor(1.9547993, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.6527836, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 9199\n",
+ "Discriminator Loss: tf.Tensor(1.9745473, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.68167335, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 9200\n",
+ "Discriminator Loss: tf.Tensor(2.0009806, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.6929479, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 9201\n",
+ "Discriminator Loss: tf.Tensor(1.983435, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.7223751, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 9202\n",
+ "Discriminator Loss: tf.Tensor(1.9500113, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.6853335, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 9203\n",
+ "Discriminator Loss: tf.Tensor(2.0255198, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.7573616, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 9204\n",
+ "Discriminator Loss: tf.Tensor(1.9559866, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.68162227, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 9205\n",
+ "Discriminator Loss: tf.Tensor(1.9097075, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.72601515, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 9206\n",
+ "Discriminator Loss: tf.Tensor(1.9204181, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.72024816, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 9207\n",
+ "Discriminator Loss: tf.Tensor(1.8694156, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.74421006, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 9208\n",
+ "Discriminator Loss: tf.Tensor(1.8571419, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.7333088, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 9209\n",
+ "Discriminator Loss: tf.Tensor(1.8908198, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.7852239, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 9210\n",
+ "Discriminator Loss: tf.Tensor(1.8910506, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.74887854, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 9211\n",
+ "Discriminator Loss: tf.Tensor(1.8245103, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.7504075, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 9212\n",
+ "Discriminator Loss: tf.Tensor(1.8611943, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.70614654, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 9213\n",
+ "Discriminator Loss: tf.Tensor(1.7642599, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.9379191, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 9214\n",
+ "Discriminator Loss: tf.Tensor(1.669696, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.94490784, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 9215\n",
+ "Discriminator Loss: tf.Tensor(1.6050737, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.2584227, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 9216\n",
+ "Discriminator Loss: tf.Tensor(2.2061324, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.59984046, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 9217\n",
+ "Discriminator Loss: tf.Tensor(1.74142, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.061380427, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 9218\n",
+ "Discriminator Loss: tf.Tensor(1.7525374, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.06967533, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 9219\n",
+ "Discriminator Loss: tf.Tensor(1.7362119, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.08710941, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 9220\n",
+ "Discriminator Loss: tf.Tensor(1.8474681, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.25087556, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 9221\n",
+ "Discriminator Loss: tf.Tensor(1.5523161, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.5660452, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 9222\n",
+ "Discriminator Loss: tf.Tensor(1.3896872, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.5959173, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 9223\n",
+ "Discriminator Loss: tf.Tensor(1.2353662, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.86842394, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 9224\n",
+ "Discriminator Loss: tf.Tensor(1.6837769, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.49326372, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 9225\n",
+ "Discriminator Loss: tf.Tensor(1.5974388, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.62350893, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 9226\n",
+ "Discriminator Loss: tf.Tensor(1.5333502, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.5851702, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 9227\n",
+ "Discriminator Loss: tf.Tensor(1.2474132, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.83577853, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 9228\n",
+ "Discriminator Loss: tf.Tensor(1.2279402, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.6249563, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 9229\n",
+ "Discriminator Loss: tf.Tensor(1.2556505, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.95738715, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 9230\n",
+ "Discriminator Loss: tf.Tensor(0.7469387, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.95752686, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 9231\n",
+ "Discriminator Loss: tf.Tensor(2.4586306, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.3824642, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 9232\n",
+ "Discriminator Loss: tf.Tensor(2.674864, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-1.6116123, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 9233\n",
+ "Discriminator Loss: tf.Tensor(1.4546129, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.6213553, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 9234\n",
+ "Discriminator Loss: tf.Tensor(1.0819039, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.6057956, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 9235\n",
+ "Discriminator Loss: tf.Tensor(1.1851305, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.509195, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 9236\n",
+ "Discriminator Loss: tf.Tensor(1.6893941, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.56745625, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 9237\n",
+ "Discriminator Loss: tf.Tensor(1.3672032, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.36877322, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 9238\n",
+ "Discriminator Loss: tf.Tensor(0.87463814, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.80085987, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 9239\n",
+ "Discriminator Loss: tf.Tensor(1.0903354, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.4020405, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 9240\n",
+ "Discriminator Loss: tf.Tensor(1.552554, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.49977517, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 9241\n",
+ "Discriminator Loss: tf.Tensor(0.62217784, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.96004826, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 9242\n",
+ "Discriminator Loss: tf.Tensor(0.5267568, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.772904, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 9243\n",
+ "Discriminator Loss: tf.Tensor(0.83361197, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.34244883, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 9244\n",
+ "Discriminator Loss: tf.Tensor(1.5242504, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.0429013, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 9245\n",
+ "Discriminator Loss: tf.Tensor(0.82144, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.18889517, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 9246\n",
+ "Discriminator Loss: tf.Tensor(0.8205304, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.5631806, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 9247\n",
+ "Discriminator Loss: tf.Tensor(1.0443877, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.15706271, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 9248\n",
+ "Discriminator Loss: tf.Tensor(0.7478574, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.3058982, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 9249\n",
+ "Discriminator Loss: tf.Tensor(1.2209885, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.11967496, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 9250\n",
+ "Discriminator Loss: tf.Tensor(0.3309807, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.1698102, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 9251\n",
+ "Discriminator Loss: tf.Tensor(0.6710481, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.44606447, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 9252\n",
+ "Discriminator Loss: tf.Tensor(0.9564968, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.9246713, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 9253\n",
+ "Discriminator Loss: tf.Tensor(0.58196676, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.43287793, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 9254\n",
+ "Discriminator Loss: tf.Tensor(0.7964871, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.9456263, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 9255\n",
+ "Discriminator Loss: tf.Tensor(0.7860406, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.38889337, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 9256\n",
+ "Discriminator Loss: tf.Tensor(0.5002915, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.3656088, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 9257\n",
+ "Discriminator Loss: tf.Tensor(2.3883245, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-1.2234722, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 9258\n",
+ "Discriminator Loss: tf.Tensor(0.61935204, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.7973501, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 9259\n",
+ "Discriminator Loss: tf.Tensor(1.0503988, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.8511255, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 9260\n",
+ "Discriminator Loss: tf.Tensor(0.6714673, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.4738052, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 9261\n",
+ "Discriminator Loss: tf.Tensor(0.7415118, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.050934, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 9262\n",
+ "Discriminator Loss: tf.Tensor(0.7780482, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.35076538, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 9263\n",
+ "Discriminator Loss: tf.Tensor(0.845318, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.0895398, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 9264\n",
+ "Discriminator Loss: tf.Tensor(1.1937729, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.099830985, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 9265\n",
+ "Discriminator Loss: tf.Tensor(0.7827908, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.251757, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 9266\n",
+ "Discriminator Loss: tf.Tensor(0.55054426, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.58397293, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 9267\n",
+ "Discriminator Loss: tf.Tensor(0.61134773, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.6791656, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 9268\n",
+ "Discriminator Loss: tf.Tensor(1.0219028, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.5643285, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 9269\n",
+ "Discriminator Loss: tf.Tensor(0.7238537, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.5999632, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 9270\n",
+ "Discriminator Loss: tf.Tensor(1.0439823, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.0050267125, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 9271\n",
+ "Discriminator Loss: tf.Tensor(1.0163071, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.8473747, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 9272\n",
+ "Discriminator Loss: tf.Tensor(0.5321175, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.5321668, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 9273\n",
+ "Discriminator Loss: tf.Tensor(0.38300508, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(3.2797258, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 9274\n",
+ "Discriminator Loss: tf.Tensor(0.12666018, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.8309689, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 9275\n",
+ "Discriminator Loss: tf.Tensor(0.7304777, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.77990264, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 9276\n",
+ "Discriminator Loss: tf.Tensor(1.5071794, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(3.3261213, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 9277\n",
+ "Discriminator Loss: tf.Tensor(0.24633905, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.9842279, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 9278\n",
+ "Discriminator Loss: tf.Tensor(0.8185375, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(3.0275872, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 9279\n",
+ "Discriminator Loss: tf.Tensor(0.14769846, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.1055812, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 9280\n",
+ "Discriminator Loss: tf.Tensor(1.1915717, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.032811057, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 9281\n",
+ "Discriminator Loss: tf.Tensor(0.69158113, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.0915053, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 9282\n",
+ "Discriminator Loss: tf.Tensor(0.68298924, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.42675754, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 9283\n",
+ "Discriminator Loss: tf.Tensor(1.1163173, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.725767, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 9284\n",
+ "Discriminator Loss: tf.Tensor(1.1022525, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.15723835, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 9285\n",
+ "Discriminator Loss: tf.Tensor(0.52000254, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.8627758, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 9286\n",
+ "Discriminator Loss: tf.Tensor(0.5347222, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.54825133, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 9287\n",
+ "Discriminator Loss: tf.Tensor(1.0880197, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.825941, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 9288\n",
+ "Discriminator Loss: tf.Tensor(1.3910451, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.15803441, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 9289\n",
+ "Discriminator Loss: tf.Tensor(1.1811264, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.9554149, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 9290\n",
+ "Discriminator Loss: tf.Tensor(1.5597895, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.4289095, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 9291\n",
+ "Discriminator Loss: tf.Tensor(0.6275195, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.7609814, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 9292\n",
+ "Discriminator Loss: tf.Tensor(0.9177729, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.16880494, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 9293\n",
+ "Discriminator Loss: tf.Tensor(0.43811768, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.48675, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 9294\n",
+ "Discriminator Loss: tf.Tensor(0.23121436, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.90600866, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 9295\n",
+ "Discriminator Loss: tf.Tensor(1.1210859, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(3.2074554, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 9296\n",
+ "Discriminator Loss: tf.Tensor(0.41879228, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.64579046, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 9297\n",
+ "Discriminator Loss: tf.Tensor(1.7066803, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(3.2731159, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 9298\n",
+ "Discriminator Loss: tf.Tensor(0.45125288, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.60867923, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 9299\n",
+ "Discriminator Loss: tf.Tensor(0.51897585, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.8733742, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 9300\n",
+ "Discriminator Loss: tf.Tensor(0.073333204, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.0667132, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 9301\n",
+ "Discriminator Loss: tf.Tensor(27.255775, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.2924161, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 9302\n",
+ "Discriminator Loss: tf.Tensor(11.481023, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.41507673, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 9303\n",
+ "Discriminator Loss: tf.Tensor(4.614155, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.07147948, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 9304\n",
+ "Discriminator Loss: tf.Tensor(3.930183, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.43267778, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 9305\n",
+ "Discriminator Loss: tf.Tensor(2.7167609, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.35812238, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 9306\n",
+ "Discriminator Loss: tf.Tensor(2.4152784, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.4377453, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 9307\n",
+ "Discriminator Loss: tf.Tensor(2.233106, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.45494497, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 9308\n",
+ "Discriminator Loss: tf.Tensor(2.1757274, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.48941782, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 9309\n",
+ "Discriminator Loss: tf.Tensor(2.0923312, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.5169632, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 9310\n",
+ "Discriminator Loss: tf.Tensor(1.9986386, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.4895973, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 9311\n",
+ "Discriminator Loss: tf.Tensor(1.9810599, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.5234061, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 9312\n",
+ "Discriminator Loss: tf.Tensor(1.9875238, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.525184, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 9313\n",
+ "Discriminator Loss: tf.Tensor(2.0050647, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.5296183, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 9314\n",
+ "Discriminator Loss: tf.Tensor(1.9579098, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.5147125, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 9315\n",
+ "Discriminator Loss: tf.Tensor(1.9132203, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.5439023, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 9316\n",
+ "Discriminator Loss: tf.Tensor(1.8284279, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.5105502, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 9317\n",
+ "Discriminator Loss: tf.Tensor(1.8843755, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.5952713, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 9318\n",
+ "Discriminator Loss: tf.Tensor(1.8571756, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.5945172, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 9319\n",
+ "Discriminator Loss: tf.Tensor(1.8537422, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.65848666, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 9320\n",
+ "Discriminator Loss: tf.Tensor(1.8333273, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.6041882, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 9321\n",
+ "Discriminator Loss: tf.Tensor(1.7845937, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.7676266, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 9322\n",
+ "Discriminator Loss: tf.Tensor(1.7503092, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.6728366, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 9323\n",
+ "Discriminator Loss: tf.Tensor(1.7442951, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.8140448, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 9324\n",
+ "Discriminator Loss: tf.Tensor(1.8690138, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.76209164, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 9325\n",
+ "Discriminator Loss: tf.Tensor(1.7504892, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.81663704, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 9326\n",
+ "Discriminator Loss: tf.Tensor(1.7398134, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.81261414, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 9327\n",
+ "Discriminator Loss: tf.Tensor(1.6883707, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.7689419, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 9328\n",
+ "Discriminator Loss: tf.Tensor(1.7992737, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.9367972, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 9329\n",
+ "Discriminator Loss: tf.Tensor(1.6206505, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.95262986, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 9330\n",
+ "Discriminator Loss: tf.Tensor(1.6877928, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.1341412, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 9331\n",
+ "Discriminator Loss: tf.Tensor(2.1599731, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.6695361, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 9332\n",
+ "Discriminator Loss: tf.Tensor(1.6821371, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.21001697, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 9333\n",
+ "Discriminator Loss: tf.Tensor(1.5020138, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.16761391, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 9334\n",
+ "Discriminator Loss: tf.Tensor(1.3818148, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.3728858, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 9335\n",
+ "Discriminator Loss: tf.Tensor(1.5342948, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.046067923, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 9336\n",
+ "Discriminator Loss: tf.Tensor(1.8233067, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.3027937, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 9337\n",
+ "Discriminator Loss: tf.Tensor(1.4244797, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.73596376, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 9338\n",
+ "Discriminator Loss: tf.Tensor(1.7579234, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.2055248, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 9339\n",
+ "Discriminator Loss: tf.Tensor(1.7154185, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.6142029, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 9340\n",
+ "Discriminator Loss: tf.Tensor(1.5165795, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.17271118, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 9341\n",
+ "Discriminator Loss: tf.Tensor(1.1361104, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.1825608, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 9342\n",
+ "Discriminator Loss: tf.Tensor(1.261223, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.6995232, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 9343\n",
+ "Discriminator Loss: tf.Tensor(1.1273391, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.30682135, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 9344\n",
+ "Discriminator Loss: tf.Tensor(1.6464705, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.0992824, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 9345\n",
+ "Discriminator Loss: tf.Tensor(1.9596748, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.49415842, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 9346\n",
+ "Discriminator Loss: tf.Tensor(1.0434827, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.44880247, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 9347\n",
+ "Discriminator Loss: tf.Tensor(0.6188679, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.0052972, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 9348\n",
+ "Discriminator Loss: tf.Tensor(0.85372037, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.32208124, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 9349\n",
+ "Discriminator Loss: tf.Tensor(1.62123, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.7035862, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 9350\n",
+ "Discriminator Loss: tf.Tensor(1.1523709, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.055033814, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 9351\n",
+ "Discriminator Loss: tf.Tensor(0.61743605, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.8577845, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 9352\n",
+ "Discriminator Loss: tf.Tensor(0.34749755, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.4113799, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 9353\n",
+ "Discriminator Loss: tf.Tensor(1.5176779, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.34541985, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 9354\n",
+ "Discriminator Loss: tf.Tensor(1.1991794, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.5876675, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 9355\n",
+ "Discriminator Loss: tf.Tensor(1.721501, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.56973964, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 9356\n",
+ "Discriminator Loss: tf.Tensor(1.0961899, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.58807904, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 9357\n",
+ "Discriminator Loss: tf.Tensor(0.6590395, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.9677289, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 9358\n",
+ "Discriminator Loss: tf.Tensor(0.86019045, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.87901896, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 9359\n",
+ "Discriminator Loss: tf.Tensor(1.2634124, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.20389, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 9360\n",
+ "Discriminator Loss: tf.Tensor(1.2670211, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.10126036, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 9361\n",
+ "Discriminator Loss: tf.Tensor(0.91800237, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.3526115, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 9362\n",
+ "Discriminator Loss: tf.Tensor(1.2899452, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.19798772, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 9363\n",
+ "Discriminator Loss: tf.Tensor(0.50348943, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.385912, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 9364\n",
+ "Discriminator Loss: tf.Tensor(1.0489492, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.014696948, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 9365\n",
+ "Discriminator Loss: tf.Tensor(0.44914126, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.710659, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 9366\n",
+ "Discriminator Loss: tf.Tensor(0.38356823, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.80928254, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 9367\n",
+ "Discriminator Loss: tf.Tensor(1.1369548, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.5469952, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 9368\n",
+ "Discriminator Loss: tf.Tensor(1.0005568, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.04835252, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 9369\n",
+ "Discriminator Loss: tf.Tensor(0.863338, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.5151078, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 9370\n",
+ "Discriminator Loss: tf.Tensor(0.9659374, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.09477797, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 9371\n",
+ "Discriminator Loss: tf.Tensor(0.90000856, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.728644, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 9372\n",
+ "Discriminator Loss: tf.Tensor(1.0204184, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.15455025, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 9373\n",
+ "Discriminator Loss: tf.Tensor(0.3593576, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.511179, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 9374\n",
+ "Discriminator Loss: tf.Tensor(0.82745606, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.2237988, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 9375\n",
+ "Discriminator Loss: tf.Tensor(0.60511535, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.388188, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 9376\n",
+ "Discriminator Loss: tf.Tensor(0.44845006, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.7834361, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 9377\n",
+ "Discriminator Loss: tf.Tensor(1.0316982, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.5602062, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 9378\n",
+ "Discriminator Loss: tf.Tensor(0.6750367, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.52514535, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 9379\n",
+ "Discriminator Loss: tf.Tensor(0.38857087, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.2512107, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 9380\n",
+ "Discriminator Loss: tf.Tensor(1.1624054, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.0008422357, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 9381\n",
+ "Discriminator Loss: tf.Tensor(0.7627899, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.393995, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 9382\n",
+ "Discriminator Loss: tf.Tensor(0.49144542, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.7328439, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 9383\n",
+ "Discriminator Loss: tf.Tensor(0.6230561, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.8510792, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 9384\n",
+ "Discriminator Loss: tf.Tensor(0.7222677, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.30245748, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 9385\n",
+ "Discriminator Loss: tf.Tensor(0.75068766, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.496751, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 9386\n",
+ "Discriminator Loss: tf.Tensor(0.88063675, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.52878433, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 9387\n",
+ "Discriminator Loss: tf.Tensor(1.0224223, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.7309234, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 9388\n",
+ "Discriminator Loss: tf.Tensor(1.0744883, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.08628001, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 9389\n",
+ "Discriminator Loss: tf.Tensor(0.5409554, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.843891, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 9390\n",
+ "Discriminator Loss: tf.Tensor(0.09760695, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.0312914, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 9391\n",
+ "Discriminator Loss: tf.Tensor(0.8000728, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(3.1210678, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 9392\n",
+ "Discriminator Loss: tf.Tensor(0.24903613, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.9373965, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 9393\n",
+ "Discriminator Loss: tf.Tensor(1.4238882, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(4.186432, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 9394\n",
+ "Discriminator Loss: tf.Tensor(0.15924603, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.145148, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 9395\n",
+ "Discriminator Loss: tf.Tensor(1.0530826, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.0011515506, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 9396\n",
+ "Discriminator Loss: tf.Tensor(1.7435217, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.5546477, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 9397\n",
+ "Discriminator Loss: tf.Tensor(0.7552871, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.6533354, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 9398\n",
+ "Discriminator Loss: tf.Tensor(0.6296753, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.3005269, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 9399\n",
+ "Discriminator Loss: tf.Tensor(0.93282205, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.44319975, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 9400\n",
+ "Discriminator Loss: tf.Tensor(0.5681621, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.1703742, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 9401\n",
+ "Discriminator Loss: tf.Tensor(0.3599097, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.79700917, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 9402\n",
+ "Discriminator Loss: tf.Tensor(1.4703456, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(3.0520508, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 9403\n",
+ "Discriminator Loss: tf.Tensor(0.7312435, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.4371376, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 9404\n",
+ "Discriminator Loss: tf.Tensor(0.7171848, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.1844044, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 9405\n",
+ "Discriminator Loss: tf.Tensor(0.3794085, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.7175706, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 9406\n",
+ "Discriminator Loss: tf.Tensor(1.4310805, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.9640617, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 9407\n",
+ "Discriminator Loss: tf.Tensor(0.20243111, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.9698631, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 9408\n",
+ "Discriminator Loss: tf.Tensor(0.80388075, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.596903, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 9409\n",
+ "Discriminator Loss: tf.Tensor(0.9016497, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.98746365, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 9410\n",
+ "Discriminator Loss: tf.Tensor(0.2767831, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.9258677, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 9411\n",
+ "Discriminator Loss: tf.Tensor(0.21552965, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.1189872, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 9412\n",
+ "Discriminator Loss: tf.Tensor(0.99188155, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.23079117, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 9413\n",
+ "Discriminator Loss: tf.Tensor(0.8623409, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.3392217, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 9414\n",
+ "Discriminator Loss: tf.Tensor(1.1788208, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.26581332, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 9415\n",
+ "Discriminator Loss: tf.Tensor(0.51580894, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.9884453, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 9416\n",
+ "Discriminator Loss: tf.Tensor(0.8106678, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.33936176, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 9417\n",
+ "Discriminator Loss: tf.Tensor(0.7181677, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.7475224, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 9418\n",
+ "Discriminator Loss: tf.Tensor(0.32129693, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.0168439, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 9419\n",
+ "Discriminator Loss: tf.Tensor(0.63848144, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.3663248, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 9420\n",
+ "Discriminator Loss: tf.Tensor(1.5236514, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.45305476, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 9421\n",
+ "Discriminator Loss: tf.Tensor(1.2519882, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.288491, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 9422\n",
+ "Discriminator Loss: tf.Tensor(0.5217613, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.77342075, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 9423\n",
+ "Discriminator Loss: tf.Tensor(0.35753316, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.1700428, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 9424\n",
+ "Discriminator Loss: tf.Tensor(0.6529324, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.4045763, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 9425\n",
+ "Discriminator Loss: tf.Tensor(1.397298, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.38269377, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 9426\n",
+ "Discriminator Loss: tf.Tensor(0.6715368, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.7890147, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 9427\n",
+ "Discriminator Loss: tf.Tensor(0.571385, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.6961746, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 9428\n",
+ "Discriminator Loss: tf.Tensor(0.69216216, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.3483722, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 9429\n",
+ "Discriminator Loss: tf.Tensor(0.2553246, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.9995019, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 9430\n",
+ "Discriminator Loss: tf.Tensor(1.014342, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.8565022, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 9431\n",
+ "Discriminator Loss: tf.Tensor(1.390096, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.36488858, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 9432\n",
+ "Discriminator Loss: tf.Tensor(0.7419929, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.4740534, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 9433\n",
+ "Discriminator Loss: tf.Tensor(1.0108861, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.26123217, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 9434\n",
+ "Discriminator Loss: tf.Tensor(0.47839996, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.165399, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 9435\n",
+ "Discriminator Loss: tf.Tensor(0.6637458, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.36770257, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 9436\n",
+ "Discriminator Loss: tf.Tensor(0.9380548, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.7432473, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 9437\n",
+ "Discriminator Loss: tf.Tensor(0.42771858, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.69737643, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 9438\n",
+ "Discriminator Loss: tf.Tensor(0.33155155, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.7623093, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 9439\n",
+ "Discriminator Loss: tf.Tensor(0.39118242, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.0531117, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 9440\n",
+ "Discriminator Loss: tf.Tensor(1.3266095, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.15072836, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 9441\n",
+ "Discriminator Loss: tf.Tensor(0.7346348, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.638435, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 9442\n",
+ "Discriminator Loss: tf.Tensor(0.3866265, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.71383554, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 9443\n",
+ "Discriminator Loss: tf.Tensor(0.86401534, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(3.766641, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 9444\n",
+ "Discriminator Loss: tf.Tensor(0.14222196, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.1503406, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 9445\n",
+ "Discriminator Loss: tf.Tensor(0.8365228, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.3212026, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 9446\n",
+ "Discriminator Loss: tf.Tensor(1.3546247, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(3.3362, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 9447\n",
+ "Discriminator Loss: tf.Tensor(0.31540006, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.78391343, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 9448\n",
+ "Discriminator Loss: tf.Tensor(1.1127311, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.6742203, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 9449\n",
+ "Discriminator Loss: tf.Tensor(0.44585285, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.76916915, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 9450\n",
+ "Discriminator Loss: tf.Tensor(1.029903, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.688794, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 9451\n",
+ "Discriminator Loss: tf.Tensor(0.90499234, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.36774346, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 9452\n",
+ "Discriminator Loss: tf.Tensor(0.839188, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.0902283, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 9453\n",
+ "Discriminator Loss: tf.Tensor(1.2588944, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.07545394, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 9454\n",
+ "Discriminator Loss: tf.Tensor(0.27909052, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.8158839, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 9455\n",
+ "Discriminator Loss: tf.Tensor(0.31218845, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.81753594, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 9456\n",
+ "Discriminator Loss: tf.Tensor(0.528648, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(3.3216789, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 9457\n",
+ "Discriminator Loss: tf.Tensor(0.82550603, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.36347342, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 9458\n",
+ "Discriminator Loss: tf.Tensor(0.86385477, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(4.3143196, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 9459\n",
+ "Discriminator Loss: tf.Tensor(0.04676759, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.4815254, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 9460\n",
+ "Discriminator Loss: tf.Tensor(62.055782, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.53225636, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 9461\n",
+ "Discriminator Loss: tf.Tensor(14.995019, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.103116505, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 9462\n",
+ "Discriminator Loss: tf.Tensor(7.3509364, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.14419265, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 9463\n",
+ "Discriminator Loss: tf.Tensor(5.4516306, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.18600906, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 9464\n",
+ "Discriminator Loss: tf.Tensor(3.3195019, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.0074783205, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 9465\n",
+ "Discriminator Loss: tf.Tensor(3.177639, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.092814945, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 9466\n",
+ "Discriminator Loss: tf.Tensor(2.7178504, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.04742636, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 9467\n",
+ "Discriminator Loss: tf.Tensor(2.7708106, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.15377134, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 9468\n",
+ "Discriminator Loss: tf.Tensor(2.3967066, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.17555737, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 9469\n",
+ "Discriminator Loss: tf.Tensor(2.3781488, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.20892362, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 9470\n",
+ "Discriminator Loss: tf.Tensor(2.4397888, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.24442239, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 9471\n",
+ "Discriminator Loss: tf.Tensor(2.297628, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.30929756, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 9472\n",
+ "Discriminator Loss: tf.Tensor(2.3944383, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.34620818, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 9473\n",
+ "Discriminator Loss: tf.Tensor(2.2337067, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.37947592, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 9474\n",
+ "Discriminator Loss: tf.Tensor(2.1980686, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.45190024, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 9475\n",
+ "Discriminator Loss: tf.Tensor(2.138735, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.505842, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 9476\n",
+ "Discriminator Loss: tf.Tensor(2.1312168, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.5611345, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 9477\n",
+ "Discriminator Loss: tf.Tensor(2.0770674, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.55537885, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 9478\n",
+ "Discriminator Loss: tf.Tensor(2.0143623, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.6064128, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 9479\n",
+ "Discriminator Loss: tf.Tensor(1.9697187, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.6269828, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 9480\n",
+ "Discriminator Loss: tf.Tensor(2.0013635, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.65464026, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 9481\n",
+ "Discriminator Loss: tf.Tensor(1.9401218, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.68018913, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 9482\n",
+ "Discriminator Loss: tf.Tensor(1.9026362, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.68213725, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 9483\n",
+ "Discriminator Loss: tf.Tensor(1.8934768, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.7113511, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 9484\n",
+ "Discriminator Loss: tf.Tensor(1.8934312, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.72068495, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 9485\n",
+ "Discriminator Loss: tf.Tensor(1.8839352, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.72441894, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 9486\n",
+ "Discriminator Loss: tf.Tensor(1.9028833, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.7074754, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 9487\n",
+ "Discriminator Loss: tf.Tensor(1.8101686, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.75656706, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 9488\n",
+ "Discriminator Loss: tf.Tensor(1.8105521, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.7776897, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 9489\n",
+ "Discriminator Loss: tf.Tensor(1.8323756, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.8340957, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 9490\n",
+ "Discriminator Loss: tf.Tensor(1.8215226, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.8720558, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 9491\n",
+ "Discriminator Loss: tf.Tensor(1.8551271, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.8712613, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 9492\n",
+ "Discriminator Loss: tf.Tensor(1.8999772, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.89559406, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 9493\n",
+ "Discriminator Loss: tf.Tensor(1.6710479, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.9973247, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 9494\n",
+ "Discriminator Loss: tf.Tensor(1.728277, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.13392907, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 9495\n",
+ "Discriminator Loss: tf.Tensor(1.55432, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.6514225, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 9496\n",
+ "Discriminator Loss: tf.Tensor(2.748901, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.30521277, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 9497\n",
+ "Discriminator Loss: tf.Tensor(2.7435622, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.7084163, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 9498\n",
+ "Discriminator Loss: tf.Tensor(2.070887, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.5543191, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 9499\n",
+ "Discriminator Loss: tf.Tensor(1.8370126, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.18764317, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 9500\n",
+ "Discriminator Loss: tf.Tensor(1.7442675, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.100430824, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 9501\n",
+ "Discriminator Loss: tf.Tensor(1.6373923, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.0049959575, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 9502\n",
+ "Discriminator Loss: tf.Tensor(1.6962833, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.015188024, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 9503\n",
+ "Discriminator Loss: tf.Tensor(1.8087118, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.0148033835, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 9504\n",
+ "Discriminator Loss: tf.Tensor(1.7681936, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.02946003, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 9505\n",
+ "Discriminator Loss: tf.Tensor(1.5190234, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.24008135, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 9506\n",
+ "Discriminator Loss: tf.Tensor(1.3695054, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.33973086, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 9507\n",
+ "Discriminator Loss: tf.Tensor(1.3833911, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.46628937, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 9508\n",
+ "Discriminator Loss: tf.Tensor(1.4250214, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.49351826, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 9509\n",
+ "Discriminator Loss: tf.Tensor(0.95416, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.8357818, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 9510\n",
+ "Discriminator Loss: tf.Tensor(0.76460606, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.8812158, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 9511\n",
+ "Discriminator Loss: tf.Tensor(1.6176252, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.6583285, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 9512\n",
+ "Discriminator Loss: tf.Tensor(2.3806684, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-1.3415751, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 9513\n",
+ "Discriminator Loss: tf.Tensor(1.4202882, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.38699245, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 9514\n",
+ "Discriminator Loss: tf.Tensor(0.8798274, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.60698277, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 9515\n",
+ "Discriminator Loss: tf.Tensor(0.8314853, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.97479767, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 9516\n",
+ "Discriminator Loss: tf.Tensor(1.2872823, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.5377814, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 9517\n",
+ "Discriminator Loss: tf.Tensor(1.1141056, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.2117492, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 9518\n",
+ "Discriminator Loss: tf.Tensor(2.2033443, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-1.1385612, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 9519\n",
+ "Discriminator Loss: tf.Tensor(1.1367787, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.74098414, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 9520\n",
+ "Discriminator Loss: tf.Tensor(0.35952199, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.0719544, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 9521\n",
+ "Discriminator Loss: tf.Tensor(1.0707753, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.23593044, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 9522\n",
+ "Discriminator Loss: tf.Tensor(0.7100481, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.3805217, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 9523\n",
+ "Discriminator Loss: tf.Tensor(1.5380272, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.12080131, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 9524\n",
+ "Discriminator Loss: tf.Tensor(0.60710895, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.8556761, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 9525\n",
+ "Discriminator Loss: tf.Tensor(1.0694456, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.7431335, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 9526\n",
+ "Discriminator Loss: tf.Tensor(1.5385927, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.50846905, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 9527\n",
+ "Discriminator Loss: tf.Tensor(0.3933544, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.2522391, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 9528\n",
+ "Discriminator Loss: tf.Tensor(0.6718786, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.41071102, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 9529\n",
+ "Discriminator Loss: tf.Tensor(0.9522985, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.9592339, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 9530\n",
+ "Discriminator Loss: tf.Tensor(0.5453339, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.5401661, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 9531\n",
+ "Discriminator Loss: tf.Tensor(0.6274774, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.7355319, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 9532\n",
+ "Discriminator Loss: tf.Tensor(0.5686289, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.49581036, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 9533\n",
+ "Discriminator Loss: tf.Tensor(0.6471293, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.0868428, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 9534\n",
+ "Discriminator Loss: tf.Tensor(0.28147608, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.8689234, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 9535\n",
+ "Discriminator Loss: tf.Tensor(0.61539775, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.0253637, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 9536\n",
+ "Discriminator Loss: tf.Tensor(0.6506015, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.5257735, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 9537\n",
+ "Discriminator Loss: tf.Tensor(1.012302, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.2638528, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 9538\n",
+ "Discriminator Loss: tf.Tensor(0.8386811, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.17076321, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 9539\n",
+ "Discriminator Loss: tf.Tensor(1.331463, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.2319102, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 9540\n",
+ "Discriminator Loss: tf.Tensor(0.47970885, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.6784628, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 9541\n",
+ "Discriminator Loss: tf.Tensor(0.33067778, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.6783779, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 9542\n",
+ "Discriminator Loss: tf.Tensor(0.13688391, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.1949102, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 9543\n",
+ "Discriminator Loss: tf.Tensor(1.7720102, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.68216676, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 9544\n",
+ "Discriminator Loss: tf.Tensor(0.668324, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.3707817, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 9545\n",
+ "Discriminator Loss: tf.Tensor(0.15753014, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.4344972, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 9546\n",
+ "Discriminator Loss: tf.Tensor(0.18463707, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.0712342, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 9547\n",
+ "Discriminator Loss: tf.Tensor(0.5780572, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.5547915, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 9548\n",
+ "Discriminator Loss: tf.Tensor(0.8807262, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.648986, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 9549\n",
+ "Discriminator Loss: tf.Tensor(0.91552293, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.44924888, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 9550\n",
+ "Discriminator Loss: tf.Tensor(0.35877421, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.6007116, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 9551\n",
+ "Discriminator Loss: tf.Tensor(0.67185843, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.5196234, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 9552\n",
+ "Discriminator Loss: tf.Tensor(1.4299266, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.27808228, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 9553\n",
+ "Discriminator Loss: tf.Tensor(1.2114588, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.4989057, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 9554\n",
+ "Discriminator Loss: tf.Tensor(2.2390459, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.98979396, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 9555\n",
+ "Discriminator Loss: tf.Tensor(1.8899647, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.28183898, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 9556\n",
+ "Discriminator Loss: tf.Tensor(1.1805695, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.14724295, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 9557\n",
+ "Discriminator Loss: tf.Tensor(1.3461609, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.695814, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 9558\n",
+ "Discriminator Loss: tf.Tensor(2.525801, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-1.4781078, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 9559\n",
+ "Discriminator Loss: tf.Tensor(1.241781, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.41935936, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 9560\n",
+ "Discriminator Loss: tf.Tensor(0.7815826, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.9792261, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 9561\n",
+ "Discriminator Loss: tf.Tensor(0.27315083, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.0618602, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 9562\n",
+ "Discriminator Loss: tf.Tensor(1.4784487, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.37321422, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 9563\n",
+ "Discriminator Loss: tf.Tensor(1.992085, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.8583572, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 9564\n",
+ "Discriminator Loss: tf.Tensor(1.0922128, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.026124248, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 9565\n",
+ "Discriminator Loss: tf.Tensor(0.55610913, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.2258307, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 9566\n",
+ "Discriminator Loss: tf.Tensor(1.4346137, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.41589394, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 9567\n",
+ "Discriminator Loss: tf.Tensor(0.92268145, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.6324382, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 9568\n",
+ "Discriminator Loss: tf.Tensor(1.4722599, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.42135215, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 9569\n",
+ "Discriminator Loss: tf.Tensor(0.6628719, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.4259244, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 9570\n",
+ "Discriminator Loss: tf.Tensor(1.191827, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.102786146, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 9571\n",
+ "Discriminator Loss: tf.Tensor(0.5731402, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.0378823, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 9572\n",
+ "Discriminator Loss: tf.Tensor(0.5857557, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.4267031, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 9573\n",
+ "Discriminator Loss: tf.Tensor(0.7924951, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.9846885, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 9574\n",
+ "Discriminator Loss: tf.Tensor(0.0145967305, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.0679988, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 9575\n",
+ "Discriminator Loss: tf.Tensor(73.82529, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.60453296, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 9576\n",
+ "Discriminator Loss: tf.Tensor(35.169655, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.54760903, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 9577\n",
+ "Discriminator Loss: tf.Tensor(7.2674003, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.18202634, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 9578\n",
+ "Discriminator Loss: tf.Tensor(4.6102457, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.1139674, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 9579\n",
+ "Discriminator Loss: tf.Tensor(3.2731152, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.13051102, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 9580\n",
+ "Discriminator Loss: tf.Tensor(2.9304175, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.15420203, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 9581\n",
+ "Discriminator Loss: tf.Tensor(2.7515807, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.16816247, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 9582\n",
+ "Discriminator Loss: tf.Tensor(2.4873295, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.17702998, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 9583\n",
+ "Discriminator Loss: tf.Tensor(2.4273422, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.18677902, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 9584\n",
+ "Discriminator Loss: tf.Tensor(2.2541635, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.20054717, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 9585\n",
+ "Discriminator Loss: tf.Tensor(2.2080188, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.21392494, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 9586\n",
+ "Discriminator Loss: tf.Tensor(2.164017, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.22699201, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 9587\n",
+ "Discriminator Loss: tf.Tensor(2.1037521, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.23128407, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 9588\n",
+ "Discriminator Loss: tf.Tensor(2.077513, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.24305768, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 9589\n",
+ "Discriminator Loss: tf.Tensor(2.0640662, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.24556011, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 9590\n",
+ "Discriminator Loss: tf.Tensor(2.011004, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.2563158, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 9591\n",
+ "Discriminator Loss: tf.Tensor(2.0242553, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.25727135, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 9592\n",
+ "Discriminator Loss: tf.Tensor(1.9993622, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.26379195, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 9593\n",
+ "Discriminator Loss: tf.Tensor(1.995633, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.26994893, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 9594\n",
+ "Discriminator Loss: tf.Tensor(1.9666455, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.27516827, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 9595\n",
+ "Discriminator Loss: tf.Tensor(1.9476671, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.28179768, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 9596\n",
+ "Discriminator Loss: tf.Tensor(2.0017138, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.2835299, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 9597\n",
+ "Discriminator Loss: tf.Tensor(1.9465878, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.28071228, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 9598\n",
+ "Discriminator Loss: tf.Tensor(1.935893, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.27454165, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 9599\n",
+ "Discriminator Loss: tf.Tensor(1.9670227, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.2825773, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 9600\n",
+ "Discriminator Loss: tf.Tensor(1.9498638, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.3046515, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 9601\n",
+ "Discriminator Loss: tf.Tensor(1.9420457, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.3095257, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 9602\n",
+ "Discriminator Loss: tf.Tensor(1.9687002, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.31169957, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 9603\n",
+ "Discriminator Loss: tf.Tensor(1.904721, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.3303703, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 9604\n",
+ "Discriminator Loss: tf.Tensor(1.8715147, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.36312, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 9605\n",
+ "Discriminator Loss: tf.Tensor(1.8613056, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.4128859, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 9606\n",
+ "Discriminator Loss: tf.Tensor(1.7684246, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.45952153, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 9607\n",
+ "Discriminator Loss: tf.Tensor(1.665642, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.5031561, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 9608\n",
+ "Discriminator Loss: tf.Tensor(1.8136061, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.47782555, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 9609\n",
+ "Discriminator Loss: tf.Tensor(1.8230646, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.34105697, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 9610\n",
+ "Discriminator Loss: tf.Tensor(1.9532204, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.28372172, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 9611\n",
+ "Discriminator Loss: tf.Tensor(1.8786359, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.29780856, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 9612\n",
+ "Discriminator Loss: tf.Tensor(2.0325954, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.20272414, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 9613\n",
+ "Discriminator Loss: tf.Tensor(2.0169477, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.2934338, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 9614\n",
+ "Discriminator Loss: tf.Tensor(1.8216954, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.53101856, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 9615\n",
+ "Discriminator Loss: tf.Tensor(1.7416837, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.6630927, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 9616\n",
+ "Discriminator Loss: tf.Tensor(1.7500101, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.6732766, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 9617\n",
+ "Discriminator Loss: tf.Tensor(1.9171629, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.63508666, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 9618\n",
+ "Discriminator Loss: tf.Tensor(1.8320539, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.5512753, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 9619\n",
+ "Discriminator Loss: tf.Tensor(1.7011058, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.5632091, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 9620\n",
+ "Discriminator Loss: tf.Tensor(1.4776238, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.64675164, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 9621\n",
+ "Discriminator Loss: tf.Tensor(1.1927199, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.9616084, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 9622\n",
+ "Discriminator Loss: tf.Tensor(1.6595308, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.2510794, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 9623\n",
+ "Discriminator Loss: tf.Tensor(2.7501435, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-1.7178087, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 9624\n",
+ "Discriminator Loss: tf.Tensor(1.8457282, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.2268122, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 9625\n",
+ "Discriminator Loss: tf.Tensor(1.705617, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.2899733, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 9626\n",
+ "Discriminator Loss: tf.Tensor(1.6227226, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.3148073, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 9627\n",
+ "Discriminator Loss: tf.Tensor(1.6272714, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.3492633, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 9628\n",
+ "Discriminator Loss: tf.Tensor(1.5997689, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.6125043, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 9629\n",
+ "Discriminator Loss: tf.Tensor(1.6748023, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.6965683, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 9630\n",
+ "Discriminator Loss: tf.Tensor(1.5241209, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.0760971, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 9631\n",
+ "Discriminator Loss: tf.Tensor(1.578602, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.27237844, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 9632\n",
+ "Discriminator Loss: tf.Tensor(1.4614477, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.18656361, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 9633\n",
+ "Discriminator Loss: tf.Tensor(1.3837887, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.07656456, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 9634\n",
+ "Discriminator Loss: tf.Tensor(1.615087, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.056229085, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 9635\n",
+ "Discriminator Loss: tf.Tensor(1.4939424, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.29603302, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 9636\n",
+ "Discriminator Loss: tf.Tensor(1.0022445, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.5837403, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 9637\n",
+ "Discriminator Loss: tf.Tensor(0.8327418, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.942421, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 9638\n",
+ "Discriminator Loss: tf.Tensor(1.2017615, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.84775823, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 9639\n",
+ "Discriminator Loss: tf.Tensor(0.9810282, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.7058996, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 9640\n",
+ "Discriminator Loss: tf.Tensor(2.2985063, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-1.2545812, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 9641\n",
+ "Discriminator Loss: tf.Tensor(1.3498309, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.31516996, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 9642\n",
+ "Discriminator Loss: tf.Tensor(0.41277722, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.94544667, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 9643\n",
+ "Discriminator Loss: tf.Tensor(1.0428102, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.2321002, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 9644\n",
+ "Discriminator Loss: tf.Tensor(0.9413375, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.08220467, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 9645\n",
+ "Discriminator Loss: tf.Tensor(0.6772978, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.7487358, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 9646\n",
+ "Discriminator Loss: tf.Tensor(0.7013412, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.5897763, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 9647\n",
+ "Discriminator Loss: tf.Tensor(0.67498225, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.5557823, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 9648\n",
+ "Discriminator Loss: tf.Tensor(2.060189, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.9968359, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 9649\n",
+ "Discriminator Loss: tf.Tensor(0.7048118, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.5578912, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 9650\n",
+ "Discriminator Loss: tf.Tensor(1.0446024, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.08253271, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 9651\n",
+ "Discriminator Loss: tf.Tensor(0.45678973, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.4144231, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 9652\n",
+ "Discriminator Loss: tf.Tensor(1.8245865, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.80399066, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 9653\n",
+ "Discriminator Loss: tf.Tensor(0.6118146, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.4626856, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 9654\n",
+ "Discriminator Loss: tf.Tensor(1.0685701, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.024559481, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 9655\n",
+ "Discriminator Loss: tf.Tensor(0.9655468, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.041786, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 9656\n",
+ "Discriminator Loss: tf.Tensor(0.78745687, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.35170433, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 9657\n",
+ "Discriminator Loss: tf.Tensor(0.375415, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.6434299, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 9658\n",
+ "Discriminator Loss: tf.Tensor(0.5312213, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.488849, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 9659\n",
+ "Discriminator Loss: tf.Tensor(0.8887056, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.0088751, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 9660\n",
+ "Discriminator Loss: tf.Tensor(1.1931205, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.1791325, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 9661\n",
+ "Discriminator Loss: tf.Tensor(0.6247665, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.3626705, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 9662\n",
+ "Discriminator Loss: tf.Tensor(1.425147, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.39498222, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 9663\n",
+ "Discriminator Loss: tf.Tensor(0.41775456, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.6407644, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 9664\n",
+ "Discriminator Loss: tf.Tensor(1.075772, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.07030735, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 9665\n",
+ "Discriminator Loss: tf.Tensor(1.2954435, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.5132773, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 9666\n",
+ "Discriminator Loss: tf.Tensor(0.85600007, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.30759388, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 9667\n",
+ "Discriminator Loss: tf.Tensor(0.39934975, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.8168076, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 9668\n",
+ "Discriminator Loss: tf.Tensor(0.28699914, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.86965966, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 9669\n",
+ "Discriminator Loss: tf.Tensor(1.1406771, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.8867385, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 9670\n",
+ "Discriminator Loss: tf.Tensor(1.8818243, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.6658215, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 9671\n",
+ "Discriminator Loss: tf.Tensor(0.85724396, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.4656616, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 9672\n",
+ "Discriminator Loss: tf.Tensor(1.1808587, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.025290871, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 9673\n",
+ "Discriminator Loss: tf.Tensor(0.7098154, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.8305383, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 9674\n",
+ "Discriminator Loss: tf.Tensor(0.83047396, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.23372746, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 9675\n",
+ "Discriminator Loss: tf.Tensor(0.4063853, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.303131, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 9676\n",
+ "Discriminator Loss: tf.Tensor(0.4351981, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.128694, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 9677\n",
+ "Discriminator Loss: tf.Tensor(1.1710813, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.15293086, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 9678\n",
+ "Discriminator Loss: tf.Tensor(0.60333896, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.2157485, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 9679\n",
+ "Discriminator Loss: tf.Tensor(0.23596603, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.9484561, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 9680\n",
+ "Discriminator Loss: tf.Tensor(1.0264509, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(3.13381, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 9681\n",
+ "Discriminator Loss: tf.Tensor(1.2691067, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.24276571, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 9682\n",
+ "Discriminator Loss: tf.Tensor(0.53051805, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.8314103, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 9683\n",
+ "Discriminator Loss: tf.Tensor(0.99516004, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.26261023, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 9684\n",
+ "Discriminator Loss: tf.Tensor(0.6201173, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.1759279, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 9685\n",
+ "Discriminator Loss: tf.Tensor(1.0718261, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.0012514998, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 9686\n",
+ "Discriminator Loss: tf.Tensor(0.9898656, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.5060942, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 9687\n",
+ "Discriminator Loss: tf.Tensor(0.7100433, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.355495, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 9688\n",
+ "Discriminator Loss: tf.Tensor(0.9134182, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.4229367, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 9689\n",
+ "Discriminator Loss: tf.Tensor(0.63527155, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.5285973, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 9690\n",
+ "Discriminator Loss: tf.Tensor(0.6074587, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.6595695, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 9691\n",
+ "Discriminator Loss: tf.Tensor(0.69758475, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.336387, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 9692\n",
+ "Discriminator Loss: tf.Tensor(0.9662365, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.8657506, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 9693\n",
+ "Discriminator Loss: tf.Tensor(0.76584333, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.29830727, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 9694\n",
+ "Discriminator Loss: tf.Tensor(0.76937073, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(3.0326881, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 9695\n",
+ "Discriminator Loss: tf.Tensor(0.7376565, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.4133682, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 9696\n",
+ "Discriminator Loss: tf.Tensor(1.456781, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.8162346, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 9697\n",
+ "Discriminator Loss: tf.Tensor(0.43300036, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.87076616, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 9698\n",
+ "Discriminator Loss: tf.Tensor(0.39468235, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.7682152, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 9699\n",
+ "Discriminator Loss: tf.Tensor(0.61533844, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.64191514, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 9700\n",
+ "Discriminator Loss: tf.Tensor(1.4291235, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(3.6128738, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 9701\n",
+ "Discriminator Loss: tf.Tensor(0.1301386, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.0478779, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 9702\n",
+ "Discriminator Loss: tf.Tensor(1.0568734, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.102415405, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 9703\n",
+ "Discriminator Loss: tf.Tensor(0.9278571, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.0323486, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 9704\n",
+ "Discriminator Loss: tf.Tensor(0.95359594, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.1845138, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 9705\n",
+ "Discriminator Loss: tf.Tensor(0.52738667, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.0922859, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 9706\n",
+ "Discriminator Loss: tf.Tensor(0.93331325, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.25111338, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 9707\n",
+ "Discriminator Loss: tf.Tensor(0.7952149, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.751071, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 9708\n",
+ "Discriminator Loss: tf.Tensor(0.30796525, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.91349053, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 9709\n",
+ "Discriminator Loss: tf.Tensor(0.7457531, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(3.3218372, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 9710\n",
+ "Discriminator Loss: tf.Tensor(0.22376181, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.373531, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 9711\n",
+ "Discriminator Loss: tf.Tensor(1.2082826, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.08296751, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 9712\n",
+ "Discriminator Loss: tf.Tensor(1.2997454, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.9775937, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 9713\n",
+ "Discriminator Loss: tf.Tensor(0.3089548, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.9308681, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 9714\n",
+ "Discriminator Loss: tf.Tensor(0.7730541, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.6884868, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 9715\n",
+ "Discriminator Loss: tf.Tensor(0.79784787, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.29273382, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 9716\n",
+ "Discriminator Loss: tf.Tensor(0.87102276, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.6591423, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 9717\n",
+ "Discriminator Loss: tf.Tensor(0.6145757, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.5808026, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 9718\n",
+ "Discriminator Loss: tf.Tensor(0.56745315, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.9595487, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 9719\n",
+ "Discriminator Loss: tf.Tensor(0.24930225, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.5839405, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 9720\n",
+ "Discriminator Loss: tf.Tensor(0.32822233, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.797188, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 9721\n",
+ "Discriminator Loss: tf.Tensor(1.221676, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(3.5243566, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 9722\n",
+ "Discriminator Loss: tf.Tensor(0.34494105, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.6308128, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 9723\n",
+ "Discriminator Loss: tf.Tensor(0.45702302, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.6145559, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 9724\n",
+ "Discriminator Loss: tf.Tensor(0.57182074, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(3.229553, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 9725\n",
+ "Discriminator Loss: tf.Tensor(0.2175211, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.2790066, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 9726\n",
+ "Discriminator Loss: tf.Tensor(1.1736057, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.14567773, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 9727\n",
+ "Discriminator Loss: tf.Tensor(1.2057176, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.8452377, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 9728\n",
+ "Discriminator Loss: tf.Tensor(0.6124471, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.69292325, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 9729\n",
+ "Discriminator Loss: tf.Tensor(1.0065008, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.7563007, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 9730\n",
+ "Discriminator Loss: tf.Tensor(0.1919, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.0108178, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 9731\n",
+ "Discriminator Loss: tf.Tensor(0.5207877, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.907012, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 9732\n",
+ "Discriminator Loss: tf.Tensor(0.73218626, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.2986238, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 9733\n",
+ "Discriminator Loss: tf.Tensor(1.533349, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.8322322, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 9734\n",
+ "Discriminator Loss: tf.Tensor(0.5044929, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.7895786, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 9735\n",
+ "Discriminator Loss: tf.Tensor(0.39608848, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.4942102, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 9736\n",
+ "Discriminator Loss: tf.Tensor(0.3578488, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.4230442, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 9737\n",
+ "Discriminator Loss: tf.Tensor(1.3793547, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.34371635, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 9738\n",
+ "Discriminator Loss: tf.Tensor(1.1585646, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.4453285, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 9739\n",
+ "Discriminator Loss: tf.Tensor(1.3652948, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.07667935, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 9740\n",
+ "Discriminator Loss: tf.Tensor(0.12629308, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.601461, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 9741\n",
+ "Discriminator Loss: tf.Tensor(0.59218466, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.62837225, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 9742\n",
+ "Discriminator Loss: tf.Tensor(1.4693651, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(3.213689, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 9743\n",
+ "Discriminator Loss: tf.Tensor(1.2477832, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.16869299, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 9744\n",
+ "Discriminator Loss: tf.Tensor(0.65742886, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.7285444, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 9745\n",
+ "Discriminator Loss: tf.Tensor(1.2050123, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.5009684, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 9746\n",
+ "Discriminator Loss: tf.Tensor(0.676303, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.7556878, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 9747\n",
+ "Discriminator Loss: tf.Tensor(1.6042968, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.5252488, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 9748\n",
+ "Discriminator Loss: tf.Tensor(0.16319673, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.5573214, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 9749\n",
+ "Discriminator Loss: tf.Tensor(0.9410656, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.3499659, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 9750\n",
+ "Discriminator Loss: tf.Tensor(1.5691448, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.6530771, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 9751\n",
+ "Discriminator Loss: tf.Tensor(0.73890424, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.614729, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 9752\n",
+ "Discriminator Loss: tf.Tensor(0.30305326, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.105702, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 9753\n",
+ "Discriminator Loss: tf.Tensor(0.18568951, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.2228245, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 9754\n",
+ "Discriminator Loss: tf.Tensor(0.8521534, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.247406, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 9755\n",
+ "Discriminator Loss: tf.Tensor(1.3979502, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.4913702, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 9756\n",
+ "Discriminator Loss: tf.Tensor(0.73028845, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.28614524, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 9757\n",
+ "Discriminator Loss: tf.Tensor(1.293326, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.3703647, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 9758\n",
+ "Discriminator Loss: tf.Tensor(0.820435, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.20765133, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 9759\n",
+ "Discriminator Loss: tf.Tensor(0.34867007, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.1135693, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 9760\n",
+ "Discriminator Loss: tf.Tensor(0.4452566, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.936641, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 9761\n",
+ "Discriminator Loss: tf.Tensor(1.4124936, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.7241325, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 9762\n",
+ "Discriminator Loss: tf.Tensor(0.90680957, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.12069791, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 9763\n",
+ "Discriminator Loss: tf.Tensor(0.6006154, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.3947306, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 9764\n",
+ "Discriminator Loss: tf.Tensor(0.0973803, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.047098, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 9765\n",
+ "Discriminator Loss: tf.Tensor(0.845729, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.47976884, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 9766\n",
+ "Discriminator Loss: tf.Tensor(1.0679429, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.9186964, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 9767\n",
+ "Discriminator Loss: tf.Tensor(0.4810971, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.3274878, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 9768\n",
+ "Discriminator Loss: tf.Tensor(1.235392, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.043184653, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 9769\n",
+ "Discriminator Loss: tf.Tensor(0.84605074, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.730162, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 9770\n",
+ "Discriminator Loss: tf.Tensor(1.0326242, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.3699908, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 9771\n",
+ "Discriminator Loss: tf.Tensor(0.60258627, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.7990961, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 9772\n",
+ "Discriminator Loss: tf.Tensor(0.84158266, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.2132086, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 9773\n",
+ "Discriminator Loss: tf.Tensor(0.90883815, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.0557537, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 9774\n",
+ "Discriminator Loss: tf.Tensor(0.3791159, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.7133549, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 9775\n",
+ "Discriminator Loss: tf.Tensor(0.28448674, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.2258418, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 9776\n",
+ "Discriminator Loss: tf.Tensor(1.4372649, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.06178702, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 9777\n",
+ "Discriminator Loss: tf.Tensor(0.7591938, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.1229298, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 9778\n",
+ "Discriminator Loss: tf.Tensor(1.582026, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.5636038, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 9779\n",
+ "Discriminator Loss: tf.Tensor(1.0320928, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.8060856, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 9780\n",
+ "Discriminator Loss: tf.Tensor(1.09217, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.07729011, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 9781\n",
+ "Discriminator Loss: tf.Tensor(0.5835562, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.7572107, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 9782\n",
+ "Discriminator Loss: tf.Tensor(0.8498361, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.17002547, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 9783\n",
+ "Discriminator Loss: tf.Tensor(0.7036208, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.4819062, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 9784\n",
+ "Discriminator Loss: tf.Tensor(0.7505464, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.49451712, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 9785\n",
+ "Discriminator Loss: tf.Tensor(0.4849729, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.3308146, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 9786\n",
+ "Discriminator Loss: tf.Tensor(0.93300813, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.710062, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 9787\n",
+ "Discriminator Loss: tf.Tensor(0.9776497, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.75601, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 9788\n",
+ "Discriminator Loss: tf.Tensor(0.8210146, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.37853542, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 9789\n",
+ "Discriminator Loss: tf.Tensor(1.0098028, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.6787603, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 9790\n",
+ "Discriminator Loss: tf.Tensor(0.40443724, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.7941065, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 9791\n",
+ "Discriminator Loss: tf.Tensor(0.725731, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.7408607, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 9792\n",
+ "Discriminator Loss: tf.Tensor(0.67531717, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.60698384, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 9793\n",
+ "Discriminator Loss: tf.Tensor(1.3126909, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(3.32209, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 9794\n",
+ "Discriminator Loss: tf.Tensor(0.5015504, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.67770815, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 9795\n",
+ "Discriminator Loss: tf.Tensor(0.6634901, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.7755191, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 9796\n",
+ "Discriminator Loss: tf.Tensor(0.22154677, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.2568051, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 9797\n",
+ "Discriminator Loss: tf.Tensor(1.0619829, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.11121509, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 9798\n",
+ "Discriminator Loss: tf.Tensor(0.9060033, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.4365726, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 9799\n",
+ "Discriminator Loss: tf.Tensor(0.10529661, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.9577913, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 9800\n",
+ "Discriminator Loss: tf.Tensor(0.47733968, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.6708171, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 9801\n",
+ "Discriminator Loss: tf.Tensor(0.22012001, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.1255031, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 9802\n",
+ "Discriminator Loss: tf.Tensor(1.3029854, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.053576797, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 9803\n",
+ "Discriminator Loss: tf.Tensor(0.88181615, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.83662, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 9804\n",
+ "Discriminator Loss: tf.Tensor(0.69431007, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.3524779, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 9805\n",
+ "Discriminator Loss: tf.Tensor(1.2151234, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.8069801, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 9806\n",
+ "Discriminator Loss: tf.Tensor(0.16270229, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.87788147, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 9807\n",
+ "Discriminator Loss: tf.Tensor(1.5160699, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(3.1724174, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 9808\n",
+ "Discriminator Loss: tf.Tensor(0.16846596, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.0484239, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 9809\n",
+ "Discriminator Loss: tf.Tensor(0.67867696, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.54932356, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 9810\n",
+ "Discriminator Loss: tf.Tensor(1.0159947, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.4983733, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 9811\n",
+ "Discriminator Loss: tf.Tensor(0.3394512, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.9564021, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 9812\n",
+ "Discriminator Loss: tf.Tensor(0.9320551, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.640117, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 9813\n",
+ "Discriminator Loss: tf.Tensor(0.6117261, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.48463, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 9814\n",
+ "Discriminator Loss: tf.Tensor(0.8070148, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.3462112, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 9815\n",
+ "Discriminator Loss: tf.Tensor(0.9532089, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.21453069, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 9816\n",
+ "Discriminator Loss: tf.Tensor(0.65139395, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.9844013, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 9817\n",
+ "Discriminator Loss: tf.Tensor(1.9321007, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.75387734, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 9818\n",
+ "Discriminator Loss: tf.Tensor(0.55797917, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.4838486, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 9819\n",
+ "Discriminator Loss: tf.Tensor(0.6561948, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.67363864, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 9820\n",
+ "Discriminator Loss: tf.Tensor(0.5331151, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.9136941, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 9821\n",
+ "Discriminator Loss: tf.Tensor(0.25707304, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.0559157, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 9822\n",
+ "Discriminator Loss: tf.Tensor(0.93956184, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.3682616, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 9823\n",
+ "Discriminator Loss: tf.Tensor(1.0821483, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.220552, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 9824\n",
+ "Discriminator Loss: tf.Tensor(0.7749374, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.39240614, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 9825\n",
+ "Discriminator Loss: tf.Tensor(0.5710699, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.3714235, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 9826\n",
+ "Discriminator Loss: tf.Tensor(0.48383072, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.6944709, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 9827\n",
+ "Discriminator Loss: tf.Tensor(1.5400765, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(3.120451, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 9828\n",
+ "Discriminator Loss: tf.Tensor(0.9274144, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.09054923, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 9829\n",
+ "Discriminator Loss: tf.Tensor(0.4566707, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.1742258, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 9830\n",
+ "Discriminator Loss: tf.Tensor(0.28870824, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.8949237, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 9831\n",
+ "Discriminator Loss: tf.Tensor(1.4811308, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.9162588, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 9832\n",
+ "Discriminator Loss: tf.Tensor(0.4843195, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.60243076, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 9833\n",
+ "Discriminator Loss: tf.Tensor(0.72410595, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.3947628, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 9834\n",
+ "Discriminator Loss: tf.Tensor(0.1266949, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.91224307, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 9835\n",
+ "Discriminator Loss: tf.Tensor(1.1481558, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(3.1808872, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 9836\n",
+ "Discriminator Loss: tf.Tensor(0.30068815, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.2360097, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 9837\n",
+ "Discriminator Loss: tf.Tensor(1.4398532, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.40232778, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 9838\n",
+ "Discriminator Loss: tf.Tensor(0.44341964, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.3198173, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 9839\n",
+ "Discriminator Loss: tf.Tensor(0.46499705, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.2478882, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 9840\n",
+ "Discriminator Loss: tf.Tensor(1.4532695, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.26204404, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 9841\n",
+ "Discriminator Loss: tf.Tensor(0.86867523, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.1624575, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 9842\n",
+ "Discriminator Loss: tf.Tensor(0.94559205, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.27307007, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 9843\n",
+ "Discriminator Loss: tf.Tensor(0.7316741, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.158307, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 9844\n",
+ "Discriminator Loss: tf.Tensor(0.49050158, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.9068987, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 9845\n",
+ "Discriminator Loss: tf.Tensor(0.6477721, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.3661888, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 9846\n",
+ "Discriminator Loss: tf.Tensor(0.266923, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.93237275, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 9847\n",
+ "Discriminator Loss: tf.Tensor(0.9050088, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.8282127, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 9848\n",
+ "Discriminator Loss: tf.Tensor(0.5130397, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.98361063, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 9849\n",
+ "Discriminator Loss: tf.Tensor(0.17251427, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.4441762, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 9850\n",
+ "Discriminator Loss: tf.Tensor(0.7139885, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.4990869, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 9851\n",
+ "Discriminator Loss: tf.Tensor(1.4381516, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(3.7546837, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 9852\n",
+ "Discriminator Loss: tf.Tensor(0.54091316, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.2250695, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 9853\n",
+ "Discriminator Loss: tf.Tensor(1.525948, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.42453578, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 9854\n",
+ "Discriminator Loss: tf.Tensor(0.3882323, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.7007831, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 9855\n",
+ "Discriminator Loss: tf.Tensor(0.7216857, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.74346334, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 9856\n",
+ "Discriminator Loss: tf.Tensor(0.7703385, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.6582167, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 9857\n",
+ "Discriminator Loss: tf.Tensor(0.028292572, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.2057806, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 9858\n",
+ "Discriminator Loss: tf.Tensor(5.674576, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.58432347, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 9859\n",
+ "Discriminator Loss: tf.Tensor(4.0432124, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.2045422, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 9860\n",
+ "Discriminator Loss: tf.Tensor(2.4508157, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.1797819, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 9861\n",
+ "Discriminator Loss: tf.Tensor(2.1209407, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.47330937, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 9862\n",
+ "Discriminator Loss: tf.Tensor(1.8032994, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.6148019, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 9863\n",
+ "Discriminator Loss: tf.Tensor(1.5140383, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.769955, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 9864\n",
+ "Discriminator Loss: tf.Tensor(1.455413, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.81674105, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 9865\n",
+ "Discriminator Loss: tf.Tensor(1.4921834, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.0621936, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 9866\n",
+ "Discriminator Loss: tf.Tensor(1.6610382, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.18618083, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 9867\n",
+ "Discriminator Loss: tf.Tensor(1.4245486, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.4061675, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 9868\n",
+ "Discriminator Loss: tf.Tensor(1.466422, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.62302685, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 9869\n",
+ "Discriminator Loss: tf.Tensor(1.5714756, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.6596733, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 9870\n",
+ "Discriminator Loss: tf.Tensor(1.2829876, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.6230294, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 9871\n",
+ "Discriminator Loss: tf.Tensor(1.5455015, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.7808185, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 9872\n",
+ "Discriminator Loss: tf.Tensor(1.2261189, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.9512758, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 9873\n",
+ "Discriminator Loss: tf.Tensor(1.4883325, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.2384515, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 9874\n",
+ "Discriminator Loss: tf.Tensor(2.0094347, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.8621402, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 9875\n",
+ "Discriminator Loss: tf.Tensor(1.6357157, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.3072727, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 9876\n",
+ "Discriminator Loss: tf.Tensor(1.3613316, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.34590223, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 9877\n",
+ "Discriminator Loss: tf.Tensor(1.3124638, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.5399823, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 9878\n",
+ "Discriminator Loss: tf.Tensor(1.0122056, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.8052306, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 9879\n",
+ "Discriminator Loss: tf.Tensor(0.9079186, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.98329973, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 9880\n",
+ "Discriminator Loss: tf.Tensor(1.1553106, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.3723885, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 9881\n",
+ "Discriminator Loss: tf.Tensor(1.7754885, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.111932, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 9882\n",
+ "Discriminator Loss: tf.Tensor(1.1616379, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.03547303, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 9883\n",
+ "Discriminator Loss: tf.Tensor(0.8565275, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.8913119, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 9884\n",
+ "Discriminator Loss: tf.Tensor(0.7695949, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.9292385, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 9885\n",
+ "Discriminator Loss: tf.Tensor(0.9734162, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.5623007, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 9886\n",
+ "Discriminator Loss: tf.Tensor(1.7590351, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.62085676, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 9887\n",
+ "Discriminator Loss: tf.Tensor(0.6894043, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.1127237, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 9888\n",
+ "Discriminator Loss: tf.Tensor(1.2806473, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.114730686, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 9889\n",
+ "Discriminator Loss: tf.Tensor(0.47952735, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.1844636, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 9890\n",
+ "Discriminator Loss: tf.Tensor(1.2659308, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.045477584, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 9891\n",
+ "Discriminator Loss: tf.Tensor(0.5905194, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.2478694, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 9892\n",
+ "Discriminator Loss: tf.Tensor(1.0989234, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.005789016, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 9893\n",
+ "Discriminator Loss: tf.Tensor(0.3977289, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.3803793, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 9894\n",
+ "Discriminator Loss: tf.Tensor(0.63020384, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.54291105, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 9895\n",
+ "Discriminator Loss: tf.Tensor(0.6313433, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.8219509, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 9896\n",
+ "Discriminator Loss: tf.Tensor(1.1425627, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.06329524, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 9897\n",
+ "Discriminator Loss: tf.Tensor(0.49941954, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.4371576, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 9898\n",
+ "Discriminator Loss: tf.Tensor(1.5555564, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.2132353, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 9899\n",
+ "Discriminator Loss: tf.Tensor(1.1763594, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.43468, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 9900\n",
+ "Discriminator Loss: tf.Tensor(1.3361542, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.19231452, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 9901\n",
+ "Discriminator Loss: tf.Tensor(0.5400564, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.429101, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 9902\n",
+ "Discriminator Loss: tf.Tensor(1.1519502, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.3009387, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 9903\n",
+ "Discriminator Loss: tf.Tensor(0.58288264, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.7702618, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 9904\n",
+ "Discriminator Loss: tf.Tensor(0.9540813, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.12886298, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 9905\n",
+ "Discriminator Loss: tf.Tensor(0.5586704, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.8712097, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 9906\n",
+ "Discriminator Loss: tf.Tensor(0.2946686, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.8983543, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 9907\n",
+ "Discriminator Loss: tf.Tensor(0.61100477, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.567101, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 9908\n",
+ "Discriminator Loss: tf.Tensor(1.0610356, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.13178845, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 9909\n",
+ "Discriminator Loss: tf.Tensor(0.89064, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.0561638, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 9910\n",
+ "Discriminator Loss: tf.Tensor(1.180269, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.0038328655, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 9911\n",
+ "Discriminator Loss: tf.Tensor(0.5749395, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.8877808, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 9912\n",
+ "Discriminator Loss: tf.Tensor(0.9897707, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.14852251, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 9913\n",
+ "Discriminator Loss: tf.Tensor(0.5919849, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.518295, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 9914\n",
+ "Discriminator Loss: tf.Tensor(0.7598946, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.33869752, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 9915\n",
+ "Discriminator Loss: tf.Tensor(0.66570395, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(3.2912073, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 9916\n",
+ "Discriminator Loss: tf.Tensor(0.21143797, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.0705715, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 9917\n",
+ "Discriminator Loss: tf.Tensor(1.378563, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.21507569, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 9918\n",
+ "Discriminator Loss: tf.Tensor(0.2408478, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.59301, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 9919\n",
+ "Discriminator Loss: tf.Tensor(0.38770878, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.3992153, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 9920\n",
+ "Discriminator Loss: tf.Tensor(1.2136978, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.0002446746, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 9921\n",
+ "Discriminator Loss: tf.Tensor(0.463553, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.2749069, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 9922\n",
+ "Discriminator Loss: tf.Tensor(0.22446194, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.88584965, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 9923\n",
+ "Discriminator Loss: tf.Tensor(1.8460214, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(3.0295734, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 9924\n",
+ "Discriminator Loss: tf.Tensor(1.2562715, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.15223198, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 9925\n",
+ "Discriminator Loss: tf.Tensor(0.45914572, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.4605608, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 9926\n",
+ "Discriminator Loss: tf.Tensor(1.1828595, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.15909709, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 9927\n",
+ "Discriminator Loss: tf.Tensor(0.70589703, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.5159253, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 9928\n",
+ "Discriminator Loss: tf.Tensor(1.4164441, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.15070699, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 9929\n",
+ "Discriminator Loss: tf.Tensor(0.6314342, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.0310233, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 9930\n",
+ "Discriminator Loss: tf.Tensor(0.58796155, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.601012, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 9931\n",
+ "Discriminator Loss: tf.Tensor(0.35407728, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.5703032, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 9932\n",
+ "Discriminator Loss: tf.Tensor(0.56602454, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.7493101, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 9933\n",
+ "Discriminator Loss: tf.Tensor(1.0580957, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(3.1394894, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 9934\n",
+ "Discriminator Loss: tf.Tensor(0.16778597, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.9789014, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 9935\n",
+ "Discriminator Loss: tf.Tensor(0.68669164, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.5942495, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 9936\n",
+ "Discriminator Loss: tf.Tensor(0.76442844, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.39943707, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 9937\n",
+ "Discriminator Loss: tf.Tensor(1.1827836, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.9893906, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 9938\n",
+ "Discriminator Loss: tf.Tensor(0.7079046, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.36397943, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 9939\n",
+ "Discriminator Loss: tf.Tensor(0.89846575, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.9474232, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 9940\n",
+ "Discriminator Loss: tf.Tensor(0.5405418, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.53440785, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 9941\n",
+ "Discriminator Loss: tf.Tensor(0.6863382, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(4.045281, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 9942\n",
+ "Discriminator Loss: tf.Tensor(0.10700228, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.2232617, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 9943\n",
+ "Discriminator Loss: tf.Tensor(1.4458153, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.14942642, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 9944\n",
+ "Discriminator Loss: tf.Tensor(1.8213563, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.9441328, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 9945\n",
+ "Discriminator Loss: tf.Tensor(0.39446318, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.8041465, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 9946\n",
+ "Discriminator Loss: tf.Tensor(1.6816506, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.7348797, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 9947\n",
+ "Discriminator Loss: tf.Tensor(0.7322602, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.0290707, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 9948\n",
+ "Discriminator Loss: tf.Tensor(1.1778104, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.07538159, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 9949\n",
+ "Discriminator Loss: tf.Tensor(0.31965846, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.5120903, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 9950\n",
+ "Discriminator Loss: tf.Tensor(0.6814325, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.5212434, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 9951\n",
+ "Discriminator Loss: tf.Tensor(0.77504605, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.2012892, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 9952\n",
+ "Discriminator Loss: tf.Tensor(0.7342263, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.9276131, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 9953\n",
+ "Discriminator Loss: tf.Tensor(0.61421, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.6096675, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 9954\n",
+ "Discriminator Loss: tf.Tensor(0.4876551, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.68222594, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 9955\n",
+ "Discriminator Loss: tf.Tensor(1.0651191, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.2651677, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 9956\n",
+ "Discriminator Loss: tf.Tensor(0.32265654, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.9019759, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 9957\n",
+ "Discriminator Loss: tf.Tensor(0.6804338, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.5940335, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 9958\n",
+ "Discriminator Loss: tf.Tensor(0.41284865, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.3907214, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 9959\n",
+ "Discriminator Loss: tf.Tensor(0.84359837, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.20832808, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 9960\n",
+ "Discriminator Loss: tf.Tensor(0.7212624, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.779908, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 9961\n",
+ "Discriminator Loss: tf.Tensor(0.0941284, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.2478905, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 9962\n",
+ "Discriminator Loss: tf.Tensor(0.46671048, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.57877755, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 9963\n",
+ "Discriminator Loss: tf.Tensor(0.52330303, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.974947, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 9964\n",
+ "Discriminator Loss: tf.Tensor(0.09598005, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.6690478, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 9965\n",
+ "Discriminator Loss: tf.Tensor(40.0327, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.80506617, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 9966\n",
+ "Discriminator Loss: tf.Tensor(21.396563, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.71213293, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 9967\n",
+ "Discriminator Loss: tf.Tensor(10.197617, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.2790823, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 9968\n",
+ "Discriminator Loss: tf.Tensor(4.385479, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.21804495, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 9969\n",
+ "Discriminator Loss: tf.Tensor(3.1206503, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.24068798, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 9970\n",
+ "Discriminator Loss: tf.Tensor(2.9998927, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.2838566, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 9971\n",
+ "Discriminator Loss: tf.Tensor(2.496643, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.29817495, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 9972\n",
+ "Discriminator Loss: tf.Tensor(2.4377928, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.33053964, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 9973\n",
+ "Discriminator Loss: tf.Tensor(2.390139, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.34531567, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 9974\n",
+ "Discriminator Loss: tf.Tensor(2.2946956, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.36991668, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 9975\n",
+ "Discriminator Loss: tf.Tensor(2.2088416, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.39139238, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 9976\n",
+ "Discriminator Loss: tf.Tensor(2.1043317, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.39676464, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 9977\n",
+ "Discriminator Loss: tf.Tensor(2.0855846, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.43830347, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 9978\n",
+ "Discriminator Loss: tf.Tensor(2.1315243, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.47729632, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 9979\n",
+ "Discriminator Loss: tf.Tensor(2.019968, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.4518529, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 9980\n",
+ "Discriminator Loss: tf.Tensor(2.09711, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.5057526, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 9981\n",
+ "Discriminator Loss: tf.Tensor(2.0030718, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.48860133, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 9982\n",
+ "Discriminator Loss: tf.Tensor(1.9740845, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.5389829, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 9983\n",
+ "Discriminator Loss: tf.Tensor(2.0081892, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.55121225, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 9984\n",
+ "Discriminator Loss: tf.Tensor(1.9416068, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.57514054, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 9985\n",
+ "Discriminator Loss: tf.Tensor(1.9598594, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.5820329, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 9986\n",
+ "Discriminator Loss: tf.Tensor(1.922938, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.6173469, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 9987\n",
+ "Discriminator Loss: tf.Tensor(1.8324938, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.63536227, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 9988\n",
+ "Discriminator Loss: tf.Tensor(1.9046385, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.6149604, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 9989\n",
+ "Discriminator Loss: tf.Tensor(1.9454619, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.5763863, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 9990\n",
+ "Discriminator Loss: tf.Tensor(1.9288514, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.56496143, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 9991\n",
+ "Discriminator Loss: tf.Tensor(1.8061496, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.6556167, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 9992\n",
+ "Discriminator Loss: tf.Tensor(1.8881967, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.76982874, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 9993\n",
+ "Discriminator Loss: tf.Tensor(1.7489526, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.6039402, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 9994\n",
+ "Discriminator Loss: tf.Tensor(1.8799472, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.6339826, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 9995\n",
+ "Discriminator Loss: tf.Tensor(1.7412273, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.6206644, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 9996\n",
+ "Discriminator Loss: tf.Tensor(1.69084, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.74412555, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 9997\n",
+ "Discriminator Loss: tf.Tensor(1.5671386, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.7287949, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 9998\n",
+ "Discriminator Loss: tf.Tensor(1.696052, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.75442046, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 9999\n",
+ "Discriminator Loss: tf.Tensor(1.8264431, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.74876815, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 10000\n",
+ "Discriminator Loss: tf.Tensor(1.7582498, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.7949123, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 10001\n",
+ "Discriminator Loss: tf.Tensor(1.7581986, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.144484, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 10002\n",
+ "Discriminator Loss: tf.Tensor(1.7868778, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.25623766, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 10003\n",
+ "Discriminator Loss: tf.Tensor(1.6480808, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.04202502, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 10004\n",
+ "Discriminator Loss: tf.Tensor(1.448445, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.14775358, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 10005\n",
+ "Discriminator Loss: tf.Tensor(1.5078683, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.11688482, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 10006\n",
+ "Discriminator Loss: tf.Tensor(1.5467864, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.17353697, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 10007\n",
+ "Discriminator Loss: tf.Tensor(1.4484818, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.4419711, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 10008\n",
+ "Discriminator Loss: tf.Tensor(1.0925648, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.5204523, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 10009\n",
+ "Discriminator Loss: tf.Tensor(1.1421065, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.51566356, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 10010\n",
+ "Discriminator Loss: tf.Tensor(0.9211167, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.44893703, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 10011\n",
+ "Discriminator Loss: tf.Tensor(1.0288312, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.0749508, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 10012\n",
+ "Discriminator Loss: tf.Tensor(3.647071, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-2.575818, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 10013\n",
+ "Discriminator Loss: tf.Tensor(2.10774, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.49703813, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 10014\n",
+ "Discriminator Loss: tf.Tensor(3.3652909, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.5997272, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 10015\n",
+ "Discriminator Loss: tf.Tensor(1.1853287, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.32476395, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 10016\n",
+ "Discriminator Loss: tf.Tensor(0.8443168, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.4547219, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 10017\n",
+ "Discriminator Loss: tf.Tensor(0.63683414, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.80607843, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 10018\n",
+ "Discriminator Loss: tf.Tensor(0.320981, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.81883544, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 10019\n",
+ "Discriminator Loss: tf.Tensor(2.0313675, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.179231, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 10020\n",
+ "Discriminator Loss: tf.Tensor(1.2827003, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.107418686, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 10021\n",
+ "Discriminator Loss: tf.Tensor(1.0429457, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.54956084, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 10022\n",
+ "Discriminator Loss: tf.Tensor(1.1732421, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.85671383, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 10023\n",
+ "Discriminator Loss: tf.Tensor(0.79394805, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.0696504, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 10024\n",
+ "Discriminator Loss: tf.Tensor(1.7392358, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.62177247, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 10025\n",
+ "Discriminator Loss: tf.Tensor(0.8845988, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.6393339, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 10026\n",
+ "Discriminator Loss: tf.Tensor(0.47291592, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.1098846, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 10027\n",
+ "Discriminator Loss: tf.Tensor(1.3946077, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.28188112, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 10028\n",
+ "Discriminator Loss: tf.Tensor(1.051716, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.3936824, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 10029\n",
+ "Discriminator Loss: tf.Tensor(0.98720264, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.20906764, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 10030\n",
+ "Discriminator Loss: tf.Tensor(0.48612148, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.372953, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 10031\n",
+ "Discriminator Loss: tf.Tensor(1.3624876, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.3096256, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 10032\n",
+ "Discriminator Loss: tf.Tensor(0.6366858, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.4238787, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 10033\n",
+ "Discriminator Loss: tf.Tensor(0.62393683, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.61725575, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 10034\n",
+ "Discriminator Loss: tf.Tensor(0.20483392, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.6946281, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 10035\n",
+ "Discriminator Loss: tf.Tensor(0.4960162, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.81982106, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 10036\n",
+ "Discriminator Loss: tf.Tensor(0.7292748, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.136544, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 10037\n",
+ "Discriminator Loss: tf.Tensor(2.2351193, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.728514, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 10038\n",
+ "Discriminator Loss: tf.Tensor(0.8742624, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.2059759, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 10039\n",
+ "Discriminator Loss: tf.Tensor(1.8816693, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.69595796, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 10040\n",
+ "Discriminator Loss: tf.Tensor(0.7056287, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.1195005, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 10041\n",
+ "Discriminator Loss: tf.Tensor(1.6686013, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.53902465, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 10042\n",
+ "Discriminator Loss: tf.Tensor(0.33532667, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.3135556, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 10043\n",
+ "Discriminator Loss: tf.Tensor(1.1016296, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.0024696179, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 10044\n",
+ "Discriminator Loss: tf.Tensor(0.8110134, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.8298184, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 10045\n",
+ "Discriminator Loss: tf.Tensor(1.1976542, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.027520955, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 10046\n",
+ "Discriminator Loss: tf.Tensor(0.19427922, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.2444736, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 10047\n",
+ "Discriminator Loss: tf.Tensor(0.96895576, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.40275726, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 10048\n",
+ "Discriminator Loss: tf.Tensor(0.6591474, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.0450866, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 10049\n",
+ "Discriminator Loss: tf.Tensor(0.5964793, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.5425205, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 10050\n",
+ "Discriminator Loss: tf.Tensor(0.7292612, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.3209963, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 10051\n",
+ "Discriminator Loss: tf.Tensor(0.17390035, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.98428446, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 10052\n",
+ "Discriminator Loss: tf.Tensor(0.9715264, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.8643463, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 10053\n",
+ "Discriminator Loss: tf.Tensor(0.74984276, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.5055529, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 10054\n",
+ "Discriminator Loss: tf.Tensor(1.0759188, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.1006327, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 10055\n",
+ "Discriminator Loss: tf.Tensor(0.88455486, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.3761339, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 10056\n",
+ "Discriminator Loss: tf.Tensor(0.63829195, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.1022794, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 10057\n",
+ "Discriminator Loss: tf.Tensor(1.8930869, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.684284, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 10058\n",
+ "Discriminator Loss: tf.Tensor(0.8012344, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.8338766, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 10059\n",
+ "Discriminator Loss: tf.Tensor(1.0443419, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.23458342, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 10060\n",
+ "Discriminator Loss: tf.Tensor(0.37719455, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.0672054, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 10061\n",
+ "Discriminator Loss: tf.Tensor(0.4767203, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.5711128, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 10062\n",
+ "Discriminator Loss: tf.Tensor(0.9309135, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.6628346, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 10063\n",
+ "Discriminator Loss: tf.Tensor(0.83088636, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.2493058, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 10064\n",
+ "Discriminator Loss: tf.Tensor(0.8263448, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.364772, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 10065\n",
+ "Discriminator Loss: tf.Tensor(0.44906527, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.69207114, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 10066\n",
+ "Discriminator Loss: tf.Tensor(0.41391382, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.5323126, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 10067\n",
+ "Discriminator Loss: tf.Tensor(0.1495859, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.90351516, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 10068\n",
+ "Discriminator Loss: tf.Tensor(1.3200516, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(3.0604935, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 10069\n",
+ "Discriminator Loss: tf.Tensor(1.8748807, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.20735593, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 10070\n",
+ "Discriminator Loss: tf.Tensor(0.7309674, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.8299035, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 10071\n",
+ "Discriminator Loss: tf.Tensor(1.0022391, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.23082606, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 10072\n",
+ "Discriminator Loss: tf.Tensor(0.77219546, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.5003114, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 10073\n",
+ "Discriminator Loss: tf.Tensor(0.80446416, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.26353267, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 10074\n",
+ "Discriminator Loss: tf.Tensor(0.5864261, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.570111, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 10075\n",
+ "Discriminator Loss: tf.Tensor(0.7692821, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.6007069, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 10076\n",
+ "Discriminator Loss: tf.Tensor(0.72924393, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(3.3479118, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 10077\n",
+ "Discriminator Loss: tf.Tensor(0.9358714, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.36627078, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 10078\n",
+ "Discriminator Loss: tf.Tensor(0.9362681, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(3.007295, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 10079\n",
+ "Discriminator Loss: tf.Tensor(0.2384367, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.868264, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 10080\n",
+ "Discriminator Loss: tf.Tensor(1.0531085, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(3.699603, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 10081\n",
+ "Discriminator Loss: tf.Tensor(0.21118093, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.1731507, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 10082\n",
+ "Discriminator Loss: tf.Tensor(1.1374028, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.005686261, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 10083\n",
+ "Discriminator Loss: tf.Tensor(0.101097286, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.6210248, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 10084\n",
+ "Discriminator Loss: tf.Tensor(0.9061851, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.6729101, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 10085\n",
+ "Discriminator Loss: tf.Tensor(1.1815166, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.17058055, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 10086\n",
+ "Discriminator Loss: tf.Tensor(0.86986935, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.2751243, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 10087\n",
+ "Discriminator Loss: tf.Tensor(0.76331615, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.4522213, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 10088\n",
+ "Discriminator Loss: tf.Tensor(1.1947905, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.2508888, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 10089\n",
+ "Discriminator Loss: tf.Tensor(0.56990933, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.88796043, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 10090\n",
+ "Discriminator Loss: tf.Tensor(0.51645374, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.788089, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 10091\n",
+ "Discriminator Loss: tf.Tensor(0.36195254, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.4689484, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 10092\n",
+ "Discriminator Loss: tf.Tensor(1.5683013, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.31273413, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 10093\n",
+ "Discriminator Loss: tf.Tensor(1.1261446, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.3015053, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 10094\n",
+ "Discriminator Loss: tf.Tensor(0.20218742, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.9707268, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 10095\n",
+ "Discriminator Loss: tf.Tensor(0.29429287, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.5753852, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 10096\n",
+ "Discriminator Loss: tf.Tensor(1.7976352, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.46696874, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 10097\n",
+ "Discriminator Loss: tf.Tensor(1.313139, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.4875814, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 10098\n",
+ "Discriminator Loss: tf.Tensor(1.9560905, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.5953503, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 10099\n",
+ "Discriminator Loss: tf.Tensor(0.7019446, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.8345909, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 10100\n",
+ "Discriminator Loss: tf.Tensor(0.78569317, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.0352585, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 10101\n",
+ "Discriminator Loss: tf.Tensor(2.3859353, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-1.3078579, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 10102\n",
+ "Discriminator Loss: tf.Tensor(0.8461999, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.8830059, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 10103\n",
+ "Discriminator Loss: tf.Tensor(0.99834156, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.9196901, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 10104\n",
+ "Discriminator Loss: tf.Tensor(1.2672075, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.23690383, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 10105\n",
+ "Discriminator Loss: tf.Tensor(0.62604773, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.6015304, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 10106\n",
+ "Discriminator Loss: tf.Tensor(1.1040204, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.07013645, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 10107\n",
+ "Discriminator Loss: tf.Tensor(0.40857792, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.5704318, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 10108\n",
+ "Discriminator Loss: tf.Tensor(0.8039531, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.33402976, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 10109\n",
+ "Discriminator Loss: tf.Tensor(0.9423882, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.8716165, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 10110\n",
+ "Discriminator Loss: tf.Tensor(1.428005, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.21480636, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 10111\n",
+ "Discriminator Loss: tf.Tensor(0.36094236, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.5007147, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 10112\n",
+ "Discriminator Loss: tf.Tensor(1.0137482, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.078789726, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 10113\n",
+ "Discriminator Loss: tf.Tensor(1.4339426, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.7749932, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 10114\n",
+ "Discriminator Loss: tf.Tensor(1.0051801, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.012909743, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 10115\n",
+ "Discriminator Loss: tf.Tensor(0.81771374, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.1427028, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 10116\n",
+ "Discriminator Loss: tf.Tensor(0.3985585, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.6520389, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 10117\n",
+ "Discriminator Loss: tf.Tensor(0.8437309, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(3.0571277, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 10118\n",
+ "Discriminator Loss: tf.Tensor(0.11202899, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.0479417, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 10119\n",
+ "Discriminator Loss: tf.Tensor(1.0128704, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.19835472, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 10120\n",
+ "Discriminator Loss: tf.Tensor(0.75823987, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.543852, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 10121\n",
+ "Discriminator Loss: tf.Tensor(0.5954526, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.73348314, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 10122\n",
+ "Discriminator Loss: tf.Tensor(1.5236813, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.711912, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 10123\n",
+ "Discriminator Loss: tf.Tensor(1.0307267, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.12333391, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 10124\n",
+ "Discriminator Loss: tf.Tensor(1.0914228, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.660318, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 10125\n",
+ "Discriminator Loss: tf.Tensor(1.176814, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.053185716, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 10126\n",
+ "Discriminator Loss: tf.Tensor(0.4188, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.4512612, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 10127\n",
+ "Discriminator Loss: tf.Tensor(0.92560065, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.27805594, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 10128\n",
+ "Discriminator Loss: tf.Tensor(0.9544109, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.9592177, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 10129\n",
+ "Discriminator Loss: tf.Tensor(1.1456772, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.2526555, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 10130\n",
+ "Discriminator Loss: tf.Tensor(0.66045296, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.5643553, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 10131\n",
+ "Discriminator Loss: tf.Tensor(1.837955, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.81057215, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 10132\n",
+ "Discriminator Loss: tf.Tensor(0.5342013, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.3434253, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 10133\n",
+ "Discriminator Loss: tf.Tensor(1.011142, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.3280864, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 10134\n",
+ "Discriminator Loss: tf.Tensor(0.28637844, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.1605494, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 10135\n",
+ "Discriminator Loss: tf.Tensor(0.2397215, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.9539871, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 10136\n",
+ "Discriminator Loss: tf.Tensor(0.46338266, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.297039, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 10137\n",
+ "Discriminator Loss: tf.Tensor(1.5871906, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.346579, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 10138\n",
+ "Discriminator Loss: tf.Tensor(1.0351297, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.1592977, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 10139\n",
+ "Discriminator Loss: tf.Tensor(1.5097033, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.3005447, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 10140\n",
+ "Discriminator Loss: tf.Tensor(0.7677883, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.7219601, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 10141\n",
+ "Discriminator Loss: tf.Tensor(1.4814221, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.2648475, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 10142\n",
+ "Discriminator Loss: tf.Tensor(0.76848406, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.6538137, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 10143\n",
+ "Discriminator Loss: tf.Tensor(1.0362483, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.124607496, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 10144\n",
+ "Discriminator Loss: tf.Tensor(0.2469078, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.8736391, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 10145\n",
+ "Discriminator Loss: tf.Tensor(0.22265232, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.0355035, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 10146\n",
+ "Discriminator Loss: tf.Tensor(1.1997975, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.026646407, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 10147\n",
+ "Discriminator Loss: tf.Tensor(0.7541033, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.8004833, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 10148\n",
+ "Discriminator Loss: tf.Tensor(0.36380857, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.76600695, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 10149\n",
+ "Discriminator Loss: tf.Tensor(0.71998465, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.4180222, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 10150\n",
+ "Discriminator Loss: tf.Tensor(0.60138303, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.5111585, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 10151\n",
+ "Discriminator Loss: tf.Tensor(0.97386277, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.5436876, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 10152\n",
+ "Discriminator Loss: tf.Tensor(0.25315002, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.011433, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 10153\n",
+ "Discriminator Loss: tf.Tensor(0.74677306, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.46382162, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 10154\n",
+ "Discriminator Loss: tf.Tensor(1.0543643, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.2842753, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 10155\n",
+ "Discriminator Loss: tf.Tensor(1.830548, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.6537737, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 10156\n",
+ "Discriminator Loss: tf.Tensor(1.4733882, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.431101, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 10157\n",
+ "Discriminator Loss: tf.Tensor(0.72851866, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.44750115, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 10158\n",
+ "Discriminator Loss: tf.Tensor(0.5823177, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.2286086, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 10159\n",
+ "Discriminator Loss: tf.Tensor(0.6967498, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.31884387, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 10160\n",
+ "Discriminator Loss: tf.Tensor(1.1993618, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.9087188, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 10161\n",
+ "Discriminator Loss: tf.Tensor(0.090911955, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.1790248, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 10162\n",
+ "Discriminator Loss: tf.Tensor(0.6585798, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.44081268, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 10163\n",
+ "Discriminator Loss: tf.Tensor(0.7561352, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.449436, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 10164\n",
+ "Discriminator Loss: tf.Tensor(0.71145666, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.48199585, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 10165\n",
+ "Discriminator Loss: tf.Tensor(1.1309342, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.0998354, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 10166\n",
+ "Discriminator Loss: tf.Tensor(1.3822305, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.29814622, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 10167\n",
+ "Discriminator Loss: tf.Tensor(0.70044684, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.5036048, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 10168\n",
+ "Discriminator Loss: tf.Tensor(1.0060892, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.012886199, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 10169\n",
+ "Discriminator Loss: tf.Tensor(0.66316617, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.9772736, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 10170\n",
+ "Discriminator Loss: tf.Tensor(0.69603586, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.47117367, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 10171\n",
+ "Discriminator Loss: tf.Tensor(1.2598492, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.8061054, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 10172\n",
+ "Discriminator Loss: tf.Tensor(0.79484755, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.39904127, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 10173\n",
+ "Discriminator Loss: tf.Tensor(0.4832071, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.3620083, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 10174\n",
+ "Discriminator Loss: tf.Tensor(0.24562639, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.2381803, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 10175\n",
+ "Discriminator Loss: tf.Tensor(1.4267573, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.3037397, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 10176\n",
+ "Discriminator Loss: tf.Tensor(0.9251387, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.992371, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 10177\n",
+ "Discriminator Loss: tf.Tensor(0.7114121, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.61758614, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 10178\n",
+ "Discriminator Loss: tf.Tensor(0.5311696, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.2167816, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 10179\n",
+ "Discriminator Loss: tf.Tensor(0.5514501, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.98373175, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 10180\n",
+ "Discriminator Loss: tf.Tensor(0.500227, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.2385046, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 10181\n",
+ "Discriminator Loss: tf.Tensor(0.55341685, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.678967, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 10182\n",
+ "Discriminator Loss: tf.Tensor(0.9686419, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.9134963, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 10183\n",
+ "Discriminator Loss: tf.Tensor(0.20895754, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.4656998, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 10184\n",
+ "Discriminator Loss: tf.Tensor(1.2737434, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.11874806, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 10185\n",
+ "Discriminator Loss: tf.Tensor(0.15631787, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.0247154, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 10186\n",
+ "Discriminator Loss: tf.Tensor(1.1780205, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.48538446, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 10187\n",
+ "Discriminator Loss: tf.Tensor(1.1323485, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.9422371, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 10188\n",
+ "Discriminator Loss: tf.Tensor(1.0901201, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.18220387, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 10189\n",
+ "Discriminator Loss: tf.Tensor(0.79849756, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.973067, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 10190\n",
+ "Discriminator Loss: tf.Tensor(0.41699833, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.8356536, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 10191\n",
+ "Discriminator Loss: tf.Tensor(0.6979866, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(3.0440447, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 10192\n",
+ "Discriminator Loss: tf.Tensor(0.24082199, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.0705484, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 10193\n",
+ "Discriminator Loss: tf.Tensor(1.3143666, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.18585676, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 10194\n",
+ "Discriminator Loss: tf.Tensor(1.2299998, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.9716775, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 10195\n",
+ "Discriminator Loss: tf.Tensor(0.19406134, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.060813, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 10196\n",
+ "Discriminator Loss: tf.Tensor(0.9874403, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.04437997, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 10197\n",
+ "Discriminator Loss: tf.Tensor(0.8970442, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.2956421, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 10198\n",
+ "Discriminator Loss: tf.Tensor(0.30632088, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.90465134, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 10199\n",
+ "Discriminator Loss: tf.Tensor(0.22726327, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.2561197, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 10200\n",
+ "Discriminator Loss: tf.Tensor(0.9093428, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.5214522, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 10201\n",
+ "Discriminator Loss: tf.Tensor(2.2419634, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.8710976, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 10202\n",
+ "Discriminator Loss: tf.Tensor(1.8043219, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.7448445, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 10203\n",
+ "Discriminator Loss: tf.Tensor(0.7428233, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.4539837, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 10204\n",
+ "Discriminator Loss: tf.Tensor(0.8064371, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.39516792, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 10205\n",
+ "Discriminator Loss: tf.Tensor(0.66843385, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.8327011, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 10206\n",
+ "Discriminator Loss: tf.Tensor(0.4767197, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.6842471, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 10207\n",
+ "Discriminator Loss: tf.Tensor(0.6982886, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.2588441, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 10208\n",
+ "Discriminator Loss: tf.Tensor(0.4424342, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.4167304, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 10209\n",
+ "Discriminator Loss: tf.Tensor(0.31243417, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.7216942, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 10210\n",
+ "Discriminator Loss: tf.Tensor(0.6516639, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.3440697, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 10211\n",
+ "Discriminator Loss: tf.Tensor(0.96799016, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.18841743, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 10212\n",
+ "Discriminator Loss: tf.Tensor(1.3317164, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.3661354, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 10213\n",
+ "Discriminator Loss: tf.Tensor(1.19912, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.08702046, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 10214\n",
+ "Discriminator Loss: tf.Tensor(0.5862155, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.7641236, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 10215\n",
+ "Discriminator Loss: tf.Tensor(1.2240931, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.009830601, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 10216\n",
+ "Discriminator Loss: tf.Tensor(0.94557977, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.2197354, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 10217\n",
+ "Discriminator Loss: tf.Tensor(0.6814359, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.39062548, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 10218\n",
+ "Discriminator Loss: tf.Tensor(0.75105774, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.4277337, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 10219\n",
+ "Discriminator Loss: tf.Tensor(0.22155471, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.9737527, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 10220\n",
+ "Discriminator Loss: tf.Tensor(0.7467328, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.2179124, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 10221\n",
+ "Discriminator Loss: tf.Tensor(1.5804113, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.49485373, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 10222\n",
+ "Discriminator Loss: tf.Tensor(0.4624938, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.7842989, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 10223\n",
+ "Discriminator Loss: tf.Tensor(1.2634676, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.010996622, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 10224\n",
+ "Discriminator Loss: tf.Tensor(0.8207857, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.9406365, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 10225\n",
+ "Discriminator Loss: tf.Tensor(1.0490685, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.042330947, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 10226\n",
+ "Discriminator Loss: tf.Tensor(0.47970217, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.5571344, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 10227\n",
+ "Discriminator Loss: tf.Tensor(0.12966084, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.9367728, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 10228\n",
+ "Discriminator Loss: tf.Tensor(1.5258372, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(4.5020223, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 10229\n",
+ "Discriminator Loss: tf.Tensor(0.25636744, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.6177729, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 10230\n",
+ "Discriminator Loss: tf.Tensor(0.49126628, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.8402751, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 10231\n",
+ "Discriminator Loss: tf.Tensor(0.73260945, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.8140519, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 10232\n",
+ "Discriminator Loss: tf.Tensor(0.3942699, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.5487221, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 10233\n",
+ "Discriminator Loss: tf.Tensor(0.78051585, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.4264523, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 10234\n",
+ "Discriminator Loss: tf.Tensor(0.9902055, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.6112797, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 10235\n",
+ "Discriminator Loss: tf.Tensor(0.65027356, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.3778104, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 10236\n",
+ "Discriminator Loss: tf.Tensor(0.629389, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.3676977, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 10237\n",
+ "Discriminator Loss: tf.Tensor(0.2600028, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.2250179, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 10238\n",
+ "Discriminator Loss: tf.Tensor(0.48206574, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.84673506, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 10239\n",
+ "Discriminator Loss: tf.Tensor(1.0902641, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.4796789, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 10240\n",
+ "Discriminator Loss: tf.Tensor(1.2946087, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.27467003, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 10241\n",
+ "Discriminator Loss: tf.Tensor(1.3331485, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.288617, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 10242\n",
+ "Discriminator Loss: tf.Tensor(1.0088713, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.19837062, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 10243\n",
+ "Discriminator Loss: tf.Tensor(0.5964601, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.2020748, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 10244\n",
+ "Discriminator Loss: tf.Tensor(0.7942512, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.5040561, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 10245\n",
+ "Discriminator Loss: tf.Tensor(0.70626926, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.5449867, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 10246\n",
+ "Discriminator Loss: tf.Tensor(0.22244541, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.8359456, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 10247\n",
+ "Discriminator Loss: tf.Tensor(0.4018651, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(3.125571, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 10248\n",
+ "Discriminator Loss: tf.Tensor(0.2554074, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.4511417, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 10249\n",
+ "Discriminator Loss: tf.Tensor(1.1935658, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.15704088, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 10250\n",
+ "Discriminator Loss: tf.Tensor(1.0024956, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.689397, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 10251\n",
+ "Discriminator Loss: tf.Tensor(0.29449415, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.8863558, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 10252\n",
+ "Discriminator Loss: tf.Tensor(1.1117731, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.396004, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 10253\n",
+ "Discriminator Loss: tf.Tensor(1.5653597, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.31157538, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 10254\n",
+ "Discriminator Loss: tf.Tensor(0.67569834, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.1933243, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 10255\n",
+ "Discriminator Loss: tf.Tensor(0.9456626, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.5394948, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 10256\n",
+ "Discriminator Loss: tf.Tensor(1.2461019, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.6956584, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 10257\n",
+ "Discriminator Loss: tf.Tensor(0.07830386, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.0237724, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 10258\n",
+ "Discriminator Loss: tf.Tensor(0.17378962, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.7404169, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 10259\n",
+ "Discriminator Loss: tf.Tensor(0.49812505, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.90742975, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 10260\n",
+ "Discriminator Loss: tf.Tensor(1.085301, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(3.7585723, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 10261\n",
+ "Discriminator Loss: tf.Tensor(0.21716067, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.9837664, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 10262\n",
+ "Discriminator Loss: tf.Tensor(0.73349714, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.0262902, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 10263\n",
+ "Discriminator Loss: tf.Tensor(1.4521925, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.23990715, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 10264\n",
+ "Discriminator Loss: tf.Tensor(1.0369599, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.7568733, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 10265\n",
+ "Discriminator Loss: tf.Tensor(1.5714319, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.31732222, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 10266\n",
+ "Discriminator Loss: tf.Tensor(1.0426874, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.6750488, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 10267\n",
+ "Discriminator Loss: tf.Tensor(1.2927573, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.21046817, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 10268\n",
+ "Discriminator Loss: tf.Tensor(0.47743118, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.2530079, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 10269\n",
+ "Discriminator Loss: tf.Tensor(0.9144944, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.20152985, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 10270\n",
+ "Discriminator Loss: tf.Tensor(1.0187559, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.7577206, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 10271\n",
+ "Discriminator Loss: tf.Tensor(1.1565651, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.045222208, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 10272\n",
+ "Discriminator Loss: tf.Tensor(0.27249774, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.1011736, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 10273\n",
+ "Discriminator Loss: tf.Tensor(1.2057233, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.08974668, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 10274\n",
+ "Discriminator Loss: tf.Tensor(0.85347813, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.6121887, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 10275\n",
+ "Discriminator Loss: tf.Tensor(1.0510532, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.14980197, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 10276\n",
+ "Discriminator Loss: tf.Tensor(0.6974197, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.9797233, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 10277\n",
+ "Discriminator Loss: tf.Tensor(1.0974555, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.27578583, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 10278\n",
+ "Discriminator Loss: tf.Tensor(0.36742717, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.9929013, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 10279\n",
+ "Discriminator Loss: tf.Tensor(0.48020563, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.76104647, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 10280\n",
+ "Discriminator Loss: tf.Tensor(1.0487527, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.9865673, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 10281\n",
+ "Discriminator Loss: tf.Tensor(0.5313823, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.5303969, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 10282\n",
+ "Discriminator Loss: tf.Tensor(0.81920856, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.215532, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 10283\n",
+ "Discriminator Loss: tf.Tensor(1.0501502, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.2897714, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 10284\n",
+ "Discriminator Loss: tf.Tensor(0.936681, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.147691, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 10285\n",
+ "Discriminator Loss: tf.Tensor(1.1390834, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.37802446, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 10286\n",
+ "Discriminator Loss: tf.Tensor(0.9661834, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.9949495, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 10287\n",
+ "Discriminator Loss: tf.Tensor(0.7310379, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.7488559, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 10288\n",
+ "Discriminator Loss: tf.Tensor(0.73401266, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.2111146, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 10289\n",
+ "Discriminator Loss: tf.Tensor(1.0507454, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.04808529, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 10290\n",
+ "Discriminator Loss: tf.Tensor(0.74363965, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.8151425, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 10291\n",
+ "Discriminator Loss: tf.Tensor(1.1941063, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.091338284, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 10292\n",
+ "Discriminator Loss: tf.Tensor(1.0233513, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.079104, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 10293\n",
+ "Discriminator Loss: tf.Tensor(1.0616149, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.03240675, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 10294\n",
+ "Discriminator Loss: tf.Tensor(0.65687376, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.161394, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 10295\n",
+ "Discriminator Loss: tf.Tensor(0.47723854, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.5407729, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 10296\n",
+ "Discriminator Loss: tf.Tensor(0.907614, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.8987663, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 10297\n",
+ "Discriminator Loss: tf.Tensor(0.053265058, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.3163476, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 10298\n",
+ "Discriminator Loss: tf.Tensor(0.4836272, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.70564795, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 10299\n",
+ "Discriminator Loss: tf.Tensor(1.5593556, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(3.0727472, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 10300\n",
+ "Discriminator Loss: tf.Tensor(0.27027455, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.1285996, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 10301\n",
+ "Discriminator Loss: tf.Tensor(0.9388499, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.14342046, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 10302\n",
+ "Discriminator Loss: tf.Tensor(0.45588458, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.0271564, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 10303\n",
+ "Discriminator Loss: tf.Tensor(0.8110813, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.0709218, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 10304\n",
+ "Discriminator Loss: tf.Tensor(1.4266605, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.39251408, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 10305\n",
+ "Discriminator Loss: tf.Tensor(0.37660903, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.4503922, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 10306\n",
+ "Discriminator Loss: tf.Tensor(0.9277878, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.3334109, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 10307\n",
+ "Discriminator Loss: tf.Tensor(1.4457252, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.3942494, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 10308\n",
+ "Discriminator Loss: tf.Tensor(0.6697886, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.6866324, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 10309\n",
+ "Discriminator Loss: tf.Tensor(0.6796943, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.9690822, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 10310\n",
+ "Discriminator Loss: tf.Tensor(0.58146936, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.65127635, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 10311\n",
+ "Discriminator Loss: tf.Tensor(0.92605376, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.239835, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 10312\n",
+ "Discriminator Loss: tf.Tensor(0.13681866, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.94891626, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 10313\n",
+ "Discriminator Loss: tf.Tensor(0.66455054, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.9000566, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 10314\n",
+ "Discriminator Loss: tf.Tensor(0.3351518, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.98246497, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 10315\n",
+ "Discriminator Loss: tf.Tensor(0.8697871, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.4979217, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 10316\n",
+ "Discriminator Loss: tf.Tensor(0.51628554, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.5937826, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 10317\n",
+ "Discriminator Loss: tf.Tensor(1.1822892, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.6077182, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 10318\n",
+ "Discriminator Loss: tf.Tensor(1.0192194, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.17051457, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 10319\n",
+ "Discriminator Loss: tf.Tensor(0.9548595, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.0418208, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 10320\n",
+ "Discriminator Loss: tf.Tensor(0.73506796, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.44040576, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 10321\n",
+ "Discriminator Loss: tf.Tensor(0.9836625, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.2287652, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 10322\n",
+ "Discriminator Loss: tf.Tensor(1.0544469, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.24969727, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 10323\n",
+ "Discriminator Loss: tf.Tensor(0.919515, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.1405387, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 10324\n",
+ "Discriminator Loss: tf.Tensor(0.60157406, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.46417657, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 10325\n",
+ "Discriminator Loss: tf.Tensor(0.7036598, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.1128476, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 10326\n",
+ "Discriminator Loss: tf.Tensor(0.5845296, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.58164567, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 10327\n",
+ "Discriminator Loss: tf.Tensor(0.43847147, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(3.2095935, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 10328\n",
+ "Discriminator Loss: tf.Tensor(0.13526364, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.93581825, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 10329\n",
+ "Discriminator Loss: tf.Tensor(0.6556915, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.601218, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 10330\n",
+ "Discriminator Loss: tf.Tensor(0.5357588, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.65126103, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 10331\n",
+ "Discriminator Loss: tf.Tensor(1.1540982, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.962693, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 10332\n",
+ "Discriminator Loss: tf.Tensor(0.40031517, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.63752025, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 10333\n",
+ "Discriminator Loss: tf.Tensor(0.296566, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.824067, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 10334\n",
+ "Discriminator Loss: tf.Tensor(0.5053336, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.5516949, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 10335\n",
+ "Discriminator Loss: tf.Tensor(1.095955, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.14724933, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 10336\n",
+ "Discriminator Loss: tf.Tensor(0.7224518, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.9140987, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 10337\n",
+ "Discriminator Loss: tf.Tensor(0.28510162, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.902646, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 10338\n",
+ "Discriminator Loss: tf.Tensor(0.74054444, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(3.44883, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 10339\n",
+ "Discriminator Loss: tf.Tensor(0.2646418, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.7620399, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 10340\n",
+ "Discriminator Loss: tf.Tensor(0.8458607, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(4.183151, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 10341\n",
+ "Discriminator Loss: tf.Tensor(0.6155869, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.7730651, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 10342\n",
+ "Discriminator Loss: tf.Tensor(0.8512434, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.3940735, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 10343\n",
+ "Discriminator Loss: tf.Tensor(0.8896954, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(3.3693388, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 10344\n",
+ "Discriminator Loss: tf.Tensor(0.019558445, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.6159495, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 10345\n",
+ "Discriminator Loss: tf.Tensor(68.7534, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.1145345, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 10346\n",
+ "Discriminator Loss: tf.Tensor(27.914312, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.45252833, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 10347\n",
+ "Discriminator Loss: tf.Tensor(9.696079, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.006482653, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 10348\n",
+ "Discriminator Loss: tf.Tensor(5.4039783, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.19473529, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 10349\n",
+ "Discriminator Loss: tf.Tensor(4.7409706, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.27835006, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 10350\n",
+ "Discriminator Loss: tf.Tensor(4.007432, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.289431, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 10351\n",
+ "Discriminator Loss: tf.Tensor(3.4323153, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.27503765, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 10352\n",
+ "Discriminator Loss: tf.Tensor(3.0041535, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.3208973, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 10353\n",
+ "Discriminator Loss: tf.Tensor(3.0794482, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.34401396, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 10354\n",
+ "Discriminator Loss: tf.Tensor(2.7439108, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.3378633, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 10355\n",
+ "Discriminator Loss: tf.Tensor(2.6644244, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.408787, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 10356\n",
+ "Discriminator Loss: tf.Tensor(2.447524, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.39960122, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 10357\n",
+ "Discriminator Loss: tf.Tensor(2.2887816, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.44815135, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 10358\n",
+ "Discriminator Loss: tf.Tensor(2.2923853, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.47037533, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 10359\n",
+ "Discriminator Loss: tf.Tensor(2.1823137, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.46722126, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 10360\n",
+ "Discriminator Loss: tf.Tensor(2.0626545, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.51651305, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 10361\n",
+ "Discriminator Loss: tf.Tensor(2.080323, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.53546387, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 10362\n",
+ "Discriminator Loss: tf.Tensor(2.0814497, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.54581046, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 10363\n",
+ "Discriminator Loss: tf.Tensor(1.9844067, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.57940024, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 10364\n",
+ "Discriminator Loss: tf.Tensor(2.0309286, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.5600375, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 10365\n",
+ "Discriminator Loss: tf.Tensor(1.9692168, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.566719, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 10366\n",
+ "Discriminator Loss: tf.Tensor(1.9793506, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.61938924, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 10367\n",
+ "Discriminator Loss: tf.Tensor(1.9089563, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.5919229, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 10368\n",
+ "Discriminator Loss: tf.Tensor(1.8920252, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.6000342, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 10369\n",
+ "Discriminator Loss: tf.Tensor(1.9376028, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.5987399, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 10370\n",
+ "Discriminator Loss: tf.Tensor(1.9018768, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.53859395, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 10371\n",
+ "Discriminator Loss: tf.Tensor(1.8586737, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.60780185, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 10372\n",
+ "Discriminator Loss: tf.Tensor(1.8348715, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.56385803, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 10373\n",
+ "Discriminator Loss: tf.Tensor(1.8652668, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.65732706, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 10374\n",
+ "Discriminator Loss: tf.Tensor(1.8924419, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.5085899, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 10375\n",
+ "Discriminator Loss: tf.Tensor(1.7859755, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.70754606, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 10376\n",
+ "Discriminator Loss: tf.Tensor(1.8021362, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.7036192, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 10377\n",
+ "Discriminator Loss: tf.Tensor(1.6883798, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.8286635, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 10378\n",
+ "Discriminator Loss: tf.Tensor(1.7001569, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.7683659, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 10379\n",
+ "Discriminator Loss: tf.Tensor(1.6381458, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.7536068, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 10380\n",
+ "Discriminator Loss: tf.Tensor(1.8566496, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.6715112, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 10381\n",
+ "Discriminator Loss: tf.Tensor(1.9620754, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.63286966, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 10382\n",
+ "Discriminator Loss: tf.Tensor(1.6427703, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.61032623, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 10383\n",
+ "Discriminator Loss: tf.Tensor(1.5888965, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.79512054, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 10384\n",
+ "Discriminator Loss: tf.Tensor(1.3742911, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.6970766, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 10385\n",
+ "Discriminator Loss: tf.Tensor(1.6599299, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.3489381, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 10386\n",
+ "Discriminator Loss: tf.Tensor(4.020642, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-2.7136173, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 10387\n",
+ "Discriminator Loss: tf.Tensor(1.8997508, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.15775011, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 10388\n",
+ "Discriminator Loss: tf.Tensor(1.79297, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.24355912, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 10389\n",
+ "Discriminator Loss: tf.Tensor(1.6087703, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.28535828, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 10390\n",
+ "Discriminator Loss: tf.Tensor(1.6217515, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.3603923, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 10391\n",
+ "Discriminator Loss: tf.Tensor(1.330029, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.49226674, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 10392\n",
+ "Discriminator Loss: tf.Tensor(1.280788, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.5723409, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 10393\n",
+ "Discriminator Loss: tf.Tensor(1.0500518, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.7752269, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 10394\n",
+ "Discriminator Loss: tf.Tensor(1.1626385, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.1916909, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 10395\n",
+ "Discriminator Loss: tf.Tensor(1.669251, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.62641174, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 10396\n",
+ "Discriminator Loss: tf.Tensor(1.3132327, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.4368975, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 10397\n",
+ "Discriminator Loss: tf.Tensor(1.1790711, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.61599517, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 10398\n",
+ "Discriminator Loss: tf.Tensor(1.1120696, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.7547593, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 10399\n",
+ "Discriminator Loss: tf.Tensor(1.1900551, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.16544, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 10400\n",
+ "Discriminator Loss: tf.Tensor(1.5768459, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.44313607, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 10401\n",
+ "Discriminator Loss: tf.Tensor(0.95716345, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.5461932, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 10402\n",
+ "Discriminator Loss: tf.Tensor(0.5798162, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.79910374, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 10403\n",
+ "Discriminator Loss: tf.Tensor(1.0250621, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.6944407, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 10404\n",
+ "Discriminator Loss: tf.Tensor(1.8459166, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.6925747, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 10405\n",
+ "Discriminator Loss: tf.Tensor(0.8081366, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.89832515, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 10406\n",
+ "Discriminator Loss: tf.Tensor(0.77439195, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.28304, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 10407\n",
+ "Discriminator Loss: tf.Tensor(1.9215306, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.8305435, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 10408\n",
+ "Discriminator Loss: tf.Tensor(0.89291245, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.7882046, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 10409\n",
+ "Discriminator Loss: tf.Tensor(0.87037617, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.660325, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 10410\n",
+ "Discriminator Loss: tf.Tensor(1.8380468, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.7422421, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 10411\n",
+ "Discriminator Loss: tf.Tensor(0.14574082, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.0894758, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 10412\n",
+ "Discriminator Loss: tf.Tensor(0.9069234, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.2165116, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 10413\n",
+ "Discriminator Loss: tf.Tensor(1.4135109, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.9257134, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 10414\n",
+ "Discriminator Loss: tf.Tensor(1.0084977, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.0032018842, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 10415\n",
+ "Discriminator Loss: tf.Tensor(0.5722301, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.1934763, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 10416\n",
+ "Discriminator Loss: tf.Tensor(0.87834316, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.33306658, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 10417\n",
+ "Discriminator Loss: tf.Tensor(0.44322217, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.3987626, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 10418\n",
+ "Discriminator Loss: tf.Tensor(1.0725857, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.051443968, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 10419\n",
+ "Discriminator Loss: tf.Tensor(0.86819535, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.7127804, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 10420\n",
+ "Discriminator Loss: tf.Tensor(0.6883457, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.36769983, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 10421\n",
+ "Discriminator Loss: tf.Tensor(0.41291004, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.8401079, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 10422\n",
+ "Discriminator Loss: tf.Tensor(0.5866111, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.5108625, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 10423\n",
+ "Discriminator Loss: tf.Tensor(0.63411874, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.548579, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 10424\n",
+ "Discriminator Loss: tf.Tensor(0.114431754, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.2548014, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 10425\n",
+ "Discriminator Loss: tf.Tensor(0.6663757, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.35501656, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 10426\n",
+ "Discriminator Loss: tf.Tensor(0.7730745, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(3.2631009, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 10427\n",
+ "Discriminator Loss: tf.Tensor(0.26070106, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.84357613, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 10428\n",
+ "Discriminator Loss: tf.Tensor(1.4132335, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.9823482, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 10429\n",
+ "Discriminator Loss: tf.Tensor(0.3888828, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.96097344, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 10430\n",
+ "Discriminator Loss: tf.Tensor(0.65382856, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.5319865, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 10431\n",
+ "Discriminator Loss: tf.Tensor(0.9863312, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.14369528, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 10432\n",
+ "Discriminator Loss: tf.Tensor(1.0360541, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.0912302, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 10433\n",
+ "Discriminator Loss: tf.Tensor(1.6834292, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.6436903, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 10434\n",
+ "Discriminator Loss: tf.Tensor(0.6373877, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.6376911, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 10435\n",
+ "Discriminator Loss: tf.Tensor(1.1905328, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.10906527, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 10436\n",
+ "Discriminator Loss: tf.Tensor(0.3343234, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.1141474, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 10437\n",
+ "Discriminator Loss: tf.Tensor(0.6645254, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.36650002, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 10438\n",
+ "Discriminator Loss: tf.Tensor(0.6482327, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.3449268, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 10439\n",
+ "Discriminator Loss: tf.Tensor(1.3993297, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.33807397, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 10440\n",
+ "Discriminator Loss: tf.Tensor(0.66455764, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.5726614, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 10441\n",
+ "Discriminator Loss: tf.Tensor(1.3308566, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.13818498, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 10442\n",
+ "Discriminator Loss: tf.Tensor(0.47599056, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.7018853, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 10443\n",
+ "Discriminator Loss: tf.Tensor(0.7831224, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.2978785, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 10444\n",
+ "Discriminator Loss: tf.Tensor(0.35899368, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.6974099, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 10445\n",
+ "Discriminator Loss: tf.Tensor(0.31682754, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.0253783, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 10446\n",
+ "Discriminator Loss: tf.Tensor(0.7053844, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.8119337, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 10447\n",
+ "Discriminator Loss: tf.Tensor(1.5673685, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(3.7560778, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 10448\n",
+ "Discriminator Loss: tf.Tensor(0.22769016, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.8400294, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 10449\n",
+ "Discriminator Loss: tf.Tensor(1.3002112, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(3.2197306, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 10450\n",
+ "Discriminator Loss: tf.Tensor(0.42202207, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.6290552, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 10451\n",
+ "Discriminator Loss: tf.Tensor(0.7017027, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.3930635, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 10452\n",
+ "Discriminator Loss: tf.Tensor(1.2147473, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.07838159, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 10453\n",
+ "Discriminator Loss: tf.Tensor(1.2871414, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.8798181, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 10454\n",
+ "Discriminator Loss: tf.Tensor(1.193984, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.118721984, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 10455\n",
+ "Discriminator Loss: tf.Tensor(0.25039878, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.6214405, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 10456\n",
+ "Discriminator Loss: tf.Tensor(0.34350246, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.0087371, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 10457\n",
+ "Discriminator Loss: tf.Tensor(0.25021237, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.4701315, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 10458\n",
+ "Discriminator Loss: tf.Tensor(0.31914514, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.75453836, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 10459\n",
+ "Discriminator Loss: tf.Tensor(1.6010739, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(3.7100677, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 10460\n",
+ "Discriminator Loss: tf.Tensor(0.6284724, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.5370472, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 10461\n",
+ "Discriminator Loss: tf.Tensor(0.8967035, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.7181988, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 10462\n",
+ "Discriminator Loss: tf.Tensor(0.29480237, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.90804577, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 10463\n",
+ "Discriminator Loss: tf.Tensor(0.9217829, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.8565664, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 10464\n",
+ "Discriminator Loss: tf.Tensor(1.3338381, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.11374265, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 10465\n",
+ "Discriminator Loss: tf.Tensor(1.1113896, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.407569, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 10466\n",
+ "Discriminator Loss: tf.Tensor(1.0552827, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.01915343, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 10467\n",
+ "Discriminator Loss: tf.Tensor(1.0319989, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.3369727, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 10468\n",
+ "Discriminator Loss: tf.Tensor(0.47701007, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.8101799, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 10469\n",
+ "Discriminator Loss: tf.Tensor(0.7821932, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.5583143, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 10470\n",
+ "Discriminator Loss: tf.Tensor(0.41402793, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.64532614, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 10471\n",
+ "Discriminator Loss: tf.Tensor(0.8469065, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(3.025467, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 10472\n",
+ "Discriminator Loss: tf.Tensor(0.12487562, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.1390597, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 10473\n",
+ "Discriminator Loss: tf.Tensor(1.1139239, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.01062213, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 10474\n",
+ "Discriminator Loss: tf.Tensor(0.9221834, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.699168, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 10475\n",
+ "Discriminator Loss: tf.Tensor(0.22157538, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.95266294, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 10476\n",
+ "Discriminator Loss: tf.Tensor(1.0933634, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.8805282, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 10477\n",
+ "Discriminator Loss: tf.Tensor(0.38514942, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.8514951, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 10478\n",
+ "Discriminator Loss: tf.Tensor(0.8647442, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.7790947, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 10479\n",
+ "Discriminator Loss: tf.Tensor(0.24971482, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.4932419, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 10480\n",
+ "Discriminator Loss: tf.Tensor(1.2203208, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.055969488, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 10481\n",
+ "Discriminator Loss: tf.Tensor(1.1765792, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.1856835, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 10482\n",
+ "Discriminator Loss: tf.Tensor(0.6550865, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.5618983, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 10483\n",
+ "Discriminator Loss: tf.Tensor(0.7302184, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.2990835, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 10484\n",
+ "Discriminator Loss: tf.Tensor(1.0748485, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.045985043, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 10485\n",
+ "Discriminator Loss: tf.Tensor(0.61719036, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.476849, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 10486\n",
+ "Discriminator Loss: tf.Tensor(0.9953184, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.34894964, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 10487\n",
+ "Discriminator Loss: tf.Tensor(1.1432623, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(3.2293303, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 10488\n",
+ "Discriminator Loss: tf.Tensor(0.4414173, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.73463696, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 10489\n",
+ "Discriminator Loss: tf.Tensor(0.2769919, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(3.2838776, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 10490\n",
+ "Discriminator Loss: tf.Tensor(0.39415514, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.752746, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 10491\n",
+ "Discriminator Loss: tf.Tensor(0.9389088, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.2050146, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 10492\n",
+ "Discriminator Loss: tf.Tensor(0.80729735, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.7863016, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 10493\n",
+ "Discriminator Loss: tf.Tensor(0.14180304, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.4898477, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 10494\n",
+ "Discriminator Loss: tf.Tensor(0.4561651, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.76548624, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 10495\n",
+ "Discriminator Loss: tf.Tensor(0.91608226, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.5887594, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 10496\n",
+ "Discriminator Loss: tf.Tensor(0.4463402, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.6269789, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 10497\n",
+ "Discriminator Loss: tf.Tensor(1.1815174, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.1105604, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 10498\n",
+ "Discriminator Loss: tf.Tensor(1.3152641, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.111203976, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 10499\n",
+ "Discriminator Loss: tf.Tensor(0.842484, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.9588133, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 10500\n",
+ "Discriminator Loss: tf.Tensor(0.93457496, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.21378642, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 10501\n",
+ "Discriminator Loss: tf.Tensor(0.82203436, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.9872427, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 10502\n",
+ "Discriminator Loss: tf.Tensor(0.709698, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.5313882, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 10503\n",
+ "Discriminator Loss: tf.Tensor(0.38735873, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.479566, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 10504\n",
+ "Discriminator Loss: tf.Tensor(0.32835084, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.69792765, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 10505\n",
+ "Discriminator Loss: tf.Tensor(1.0721582, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(3.757324, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 10506\n",
+ "Discriminator Loss: tf.Tensor(0.5597289, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.8649275, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 10507\n",
+ "Discriminator Loss: tf.Tensor(0.3615493, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.509092, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 10508\n",
+ "Discriminator Loss: tf.Tensor(1.1611265, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.011274104, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 10509\n",
+ "Discriminator Loss: tf.Tensor(1.3807051, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(3.3365562, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 10510\n",
+ "Discriminator Loss: tf.Tensor(0.24537009, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.1164969, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 10511\n",
+ "Discriminator Loss: tf.Tensor(1.216384, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.1658241, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 10512\n",
+ "Discriminator Loss: tf.Tensor(0.6781459, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.2257001, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 10513\n",
+ "Discriminator Loss: tf.Tensor(0.4375199, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.94716567, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 10514\n",
+ "Discriminator Loss: tf.Tensor(0.84161186, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.3370502, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 10515\n",
+ "Discriminator Loss: tf.Tensor(0.54474235, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.8464179, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 10516\n",
+ "Discriminator Loss: tf.Tensor(0.62214506, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.3346422, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 10517\n",
+ "Discriminator Loss: tf.Tensor(1.3900808, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.30518845, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 10518\n",
+ "Discriminator Loss: tf.Tensor(0.6079364, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.3808064, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 10519\n",
+ "Discriminator Loss: tf.Tensor(0.23521213, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.8251985, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 10520\n",
+ "Discriminator Loss: tf.Tensor(0.928434, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(3.724964, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 10521\n",
+ "Discriminator Loss: tf.Tensor(0.0960475, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.1620073, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 10522\n",
+ "Discriminator Loss: tf.Tensor(1.3033974, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.0252278, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 10523\n",
+ "Discriminator Loss: tf.Tensor(1.5575496, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.9837182, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 10524\n",
+ "Discriminator Loss: tf.Tensor(0.07441119, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.2056171, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 10525\n",
+ "Discriminator Loss: tf.Tensor(0.55560565, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.7681408, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 10526\n",
+ "Discriminator Loss: tf.Tensor(1.0691817, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(3.229491, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 10527\n",
+ "Discriminator Loss: tf.Tensor(0.032270733, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.4178209, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 10528\n",
+ "Discriminator Loss: tf.Tensor(68.25989, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.7440335, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 10529\n",
+ "Discriminator Loss: tf.Tensor(18.68925, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.14593059, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 10530\n",
+ "Discriminator Loss: tf.Tensor(10.797749, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.27252647, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 10531\n",
+ "Discriminator Loss: tf.Tensor(5.3905096, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.26516882, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 10532\n",
+ "Discriminator Loss: tf.Tensor(4.304689, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.35714972, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 10533\n",
+ "Discriminator Loss: tf.Tensor(3.5792727, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.42837825, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 10534\n",
+ "Discriminator Loss: tf.Tensor(3.126192, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.46410656, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 10535\n",
+ "Discriminator Loss: tf.Tensor(2.7563446, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.49769625, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 10536\n",
+ "Discriminator Loss: tf.Tensor(2.6060643, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.52766323, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 10537\n",
+ "Discriminator Loss: tf.Tensor(2.4448364, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.55185276, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 10538\n",
+ "Discriminator Loss: tf.Tensor(2.3496032, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.5959977, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 10539\n",
+ "Discriminator Loss: tf.Tensor(2.331508, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.6195311, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 10540\n",
+ "Discriminator Loss: tf.Tensor(2.2153013, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.60674876, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 10541\n",
+ "Discriminator Loss: tf.Tensor(2.0617294, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.6595643, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 10542\n",
+ "Discriminator Loss: tf.Tensor(2.1700978, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.6802678, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 10543\n",
+ "Discriminator Loss: tf.Tensor(2.120317, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.68306446, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 10544\n",
+ "Discriminator Loss: tf.Tensor(2.1555054, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.66622186, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 10545\n",
+ "Discriminator Loss: tf.Tensor(2.0448146, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.65184945, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 10546\n",
+ "Discriminator Loss: tf.Tensor(2.0400765, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.6474524, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 10547\n",
+ "Discriminator Loss: tf.Tensor(2.0289588, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.639622, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 10548\n",
+ "Discriminator Loss: tf.Tensor(2.0147414, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.6916001, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 10549\n",
+ "Discriminator Loss: tf.Tensor(1.9130386, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.6767848, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 10550\n",
+ "Discriminator Loss: tf.Tensor(1.9142482, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.63643926, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 10551\n",
+ "Discriminator Loss: tf.Tensor(1.9131949, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.647946, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 10552\n",
+ "Discriminator Loss: tf.Tensor(1.9994471, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.67778856, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 10553\n",
+ "Discriminator Loss: tf.Tensor(1.9730097, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.6324411, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 10554\n",
+ "Discriminator Loss: tf.Tensor(1.8469126, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.7248528, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 10555\n",
+ "Discriminator Loss: tf.Tensor(1.7511804, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.79291964, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 10556\n",
+ "Discriminator Loss: tf.Tensor(1.7733201, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.84596664, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 10557\n",
+ "Discriminator Loss: tf.Tensor(1.9294202, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.75446385, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 10558\n",
+ "Discriminator Loss: tf.Tensor(1.9297299, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.6505998, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 10559\n",
+ "Discriminator Loss: tf.Tensor(1.8901314, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.63851833, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 10560\n",
+ "Discriminator Loss: tf.Tensor(1.9656079, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.46094796, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 10561\n",
+ "Discriminator Loss: tf.Tensor(1.9634149, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.628551, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 10562\n",
+ "Discriminator Loss: tf.Tensor(1.7965052, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.0077566, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 10563\n",
+ "Discriminator Loss: tf.Tensor(1.9169372, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.21698712, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 10564\n",
+ "Discriminator Loss: tf.Tensor(1.4614207, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.2092129, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 10565\n",
+ "Discriminator Loss: tf.Tensor(1.4932185, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.29247186, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 10566\n",
+ "Discriminator Loss: tf.Tensor(1.7657672, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.5448546, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 10567\n",
+ "Discriminator Loss: tf.Tensor(1.9479555, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.51422423, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 10568\n",
+ "Discriminator Loss: tf.Tensor(1.6982727, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.68582267, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 10569\n",
+ "Discriminator Loss: tf.Tensor(1.5266645, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.72815305, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 10570\n",
+ "Discriminator Loss: tf.Tensor(1.5917534, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.7390172, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 10571\n",
+ "Discriminator Loss: tf.Tensor(1.5460701, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.31978402, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 10572\n",
+ "Discriminator Loss: tf.Tensor(1.4883263, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.93044853, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 10573\n",
+ "Discriminator Loss: tf.Tensor(1.2921222, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.6520452, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 10574\n",
+ "Discriminator Loss: tf.Tensor(1.5557094, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.0891546, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 10575\n",
+ "Discriminator Loss: tf.Tensor(3.1983676, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-2.0721853, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 10576\n",
+ "Discriminator Loss: tf.Tensor(1.8321021, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.30751914, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 10577\n",
+ "Discriminator Loss: tf.Tensor(1.5737301, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.3063198, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 10578\n",
+ "Discriminator Loss: tf.Tensor(1.4956738, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.3759054, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 10579\n",
+ "Discriminator Loss: tf.Tensor(1.4188286, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.49407756, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 10580\n",
+ "Discriminator Loss: tf.Tensor(1.1503795, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.7295278, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 10581\n",
+ "Discriminator Loss: tf.Tensor(0.9578453, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.9788521, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 10582\n",
+ "Discriminator Loss: tf.Tensor(1.1012106, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.2839117, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 10583\n",
+ "Discriminator Loss: tf.Tensor(2.1392703, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.9722605, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 10584\n",
+ "Discriminator Loss: tf.Tensor(1.379679, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.21588458, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 10585\n",
+ "Discriminator Loss: tf.Tensor(0.87459445, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.7348664, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 10586\n",
+ "Discriminator Loss: tf.Tensor(0.9101032, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.1245787, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 10587\n",
+ "Discriminator Loss: tf.Tensor(2.1290298, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-1.0494056, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 10588\n",
+ "Discriminator Loss: tf.Tensor(1.1809914, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.5696716, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 10589\n",
+ "Discriminator Loss: tf.Tensor(0.74341816, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.83185595, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 10590\n",
+ "Discriminator Loss: tf.Tensor(0.9011487, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.3767223, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 10591\n",
+ "Discriminator Loss: tf.Tensor(2.2949278, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-1.1771568, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 10592\n",
+ "Discriminator Loss: tf.Tensor(0.88513345, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.59352326, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 10593\n",
+ "Discriminator Loss: tf.Tensor(0.7126971, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.2345083, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 10594\n",
+ "Discriminator Loss: tf.Tensor(1.8717637, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.8014528, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 10595\n",
+ "Discriminator Loss: tf.Tensor(0.74846077, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.120245, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 10596\n",
+ "Discriminator Loss: tf.Tensor(0.97597754, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.10961479, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 10597\n",
+ "Discriminator Loss: tf.Tensor(0.2191523, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.2620404, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 10598\n",
+ "Discriminator Loss: tf.Tensor(1.0775304, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.031363823, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 10599\n",
+ "Discriminator Loss: tf.Tensor(0.85840225, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.5713105, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 10600\n",
+ "Discriminator Loss: tf.Tensor(1.3647068, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.05487637, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 10601\n",
+ "Discriminator Loss: tf.Tensor(0.55832875, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.7263484, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 10602\n",
+ "Discriminator Loss: tf.Tensor(0.69752115, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.1680336, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 10603\n",
+ "Discriminator Loss: tf.Tensor(1.2151972, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.10950784, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 10604\n",
+ "Discriminator Loss: tf.Tensor(0.6902337, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.7573266, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 10605\n",
+ "Discriminator Loss: tf.Tensor(0.77977777, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.32720456, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 10606\n",
+ "Discriminator Loss: tf.Tensor(0.9106919, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.105739, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 10607\n",
+ "Discriminator Loss: tf.Tensor(0.59511095, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.5148052, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 10608\n",
+ "Discriminator Loss: tf.Tensor(0.52624094, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.0488405, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 10609\n",
+ "Discriminator Loss: tf.Tensor(0.5682715, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.6697262, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 10610\n",
+ "Discriminator Loss: tf.Tensor(0.568668, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.4577942, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 10611\n",
+ "Discriminator Loss: tf.Tensor(0.9127854, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.5965739, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 10612\n",
+ "Discriminator Loss: tf.Tensor(0.87281513, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.2352283, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 10613\n",
+ "Discriminator Loss: tf.Tensor(1.9542633, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.8190009, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 10614\n",
+ "Discriminator Loss: tf.Tensor(0.72395444, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.8996283, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 10615\n",
+ "Discriminator Loss: tf.Tensor(0.6562004, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.43109688, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 10616\n",
+ "Discriminator Loss: tf.Tensor(0.51677823, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.334171, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 10617\n",
+ "Discriminator Loss: tf.Tensor(0.490962, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.5968975, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 10618\n",
+ "Discriminator Loss: tf.Tensor(0.6835918, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(3.013055, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 10619\n",
+ "Discriminator Loss: tf.Tensor(0.09488158, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.1598288, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 10620\n",
+ "Discriminator Loss: tf.Tensor(1.2743862, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.22794098, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 10621\n",
+ "Discriminator Loss: tf.Tensor(0.9566326, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.6378434, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 10622\n",
+ "Discriminator Loss: tf.Tensor(0.76706034, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.6151736, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 10623\n",
+ "Discriminator Loss: tf.Tensor(0.57529056, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.408212, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 10624\n",
+ "Discriminator Loss: tf.Tensor(0.61223555, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.60704607, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 10625\n",
+ "Discriminator Loss: tf.Tensor(1.1384068, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(3.2532337, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 10626\n",
+ "Discriminator Loss: tf.Tensor(1.0844152, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.10284551, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 10627\n",
+ "Discriminator Loss: tf.Tensor(0.7868496, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.3451078, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 10628\n",
+ "Discriminator Loss: tf.Tensor(1.3585159, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.15558405, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 10629\n",
+ "Discriminator Loss: tf.Tensor(0.7602407, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.0763066, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 10630\n",
+ "Discriminator Loss: tf.Tensor(0.8928226, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.2472006, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 10631\n",
+ "Discriminator Loss: tf.Tensor(0.6463903, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.3843606, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 10632\n",
+ "Discriminator Loss: tf.Tensor(0.30285823, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.89397764, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 10633\n",
+ "Discriminator Loss: tf.Tensor(1.276722, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(3.1015606, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 10634\n",
+ "Discriminator Loss: tf.Tensor(0.47677785, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.87451524, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 10635\n",
+ "Discriminator Loss: tf.Tensor(0.81750333, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.5888355, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 10636\n",
+ "Discriminator Loss: tf.Tensor(1.0716022, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.045574382, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 10637\n",
+ "Discriminator Loss: tf.Tensor(0.6512844, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.1115062, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 10638\n",
+ "Discriminator Loss: tf.Tensor(0.49568886, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.5706837, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 10639\n",
+ "Discriminator Loss: tf.Tensor(1.0568922, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(3.0013466, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 10640\n",
+ "Discriminator Loss: tf.Tensor(0.08735242, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.1707292, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 10641\n",
+ "Discriminator Loss: tf.Tensor(1.0916228, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.15789823, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 10642\n",
+ "Discriminator Loss: tf.Tensor(1.3597682, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.6611574, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 10643\n",
+ "Discriminator Loss: tf.Tensor(0.10545693, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.0109564, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 10644\n",
+ "Discriminator Loss: tf.Tensor(0.43289757, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.2912128, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 10645\n",
+ "Discriminator Loss: tf.Tensor(1.200117, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.08426842, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 10646\n",
+ "Discriminator Loss: tf.Tensor(0.99154216, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.3779514, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 10647\n",
+ "Discriminator Loss: tf.Tensor(0.3930837, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.7760281, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 10648\n",
+ "Discriminator Loss: tf.Tensor(0.80882186, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.56258, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 10649\n",
+ "Discriminator Loss: tf.Tensor(1.1931884, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.10487175, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 10650\n",
+ "Discriminator Loss: tf.Tensor(1.0646377, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.2459614, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 10651\n",
+ "Discriminator Loss: tf.Tensor(1.6725852, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.48634526, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 10652\n",
+ "Discriminator Loss: tf.Tensor(0.96550727, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.9989662, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 10653\n",
+ "Discriminator Loss: tf.Tensor(1.1663418, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.062290456, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 10654\n",
+ "Discriminator Loss: tf.Tensor(0.96720374, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.7024145, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 10655\n",
+ "Discriminator Loss: tf.Tensor(1.1237768, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.08629877, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 10656\n",
+ "Discriminator Loss: tf.Tensor(0.47428653, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.8606547, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 10657\n",
+ "Discriminator Loss: tf.Tensor(0.825126, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.40239444, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 10658\n",
+ "Discriminator Loss: tf.Tensor(0.64871055, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.42449, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 10659\n",
+ "Discriminator Loss: tf.Tensor(0.09496181, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.0771769, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 10660\n",
+ "Discriminator Loss: tf.Tensor(0.647014, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.5162758, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 10661\n",
+ "Discriminator Loss: tf.Tensor(1.8621935, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.8748808, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 10662\n",
+ "Discriminator Loss: tf.Tensor(0.9270265, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.7245238, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 10663\n",
+ "Discriminator Loss: tf.Tensor(0.62741506, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.8875209, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 10664\n",
+ "Discriminator Loss: tf.Tensor(0.63484144, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.8911009, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 10665\n",
+ "Discriminator Loss: tf.Tensor(0.72471917, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.052853, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 10666\n",
+ "Discriminator Loss: tf.Tensor(1.3103477, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.100200675, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 10667\n",
+ "Discriminator Loss: tf.Tensor(1.049737, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.5615553, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 10668\n",
+ "Discriminator Loss: tf.Tensor(1.7777383, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.4786247, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 10669\n",
+ "Discriminator Loss: tf.Tensor(0.64495045, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.5271887, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 10670\n",
+ "Discriminator Loss: tf.Tensor(1.1379933, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.10368389, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 10671\n",
+ "Discriminator Loss: tf.Tensor(1.0511475, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.735336, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 10672\n",
+ "Discriminator Loss: tf.Tensor(0.76304793, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.41781524, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 10673\n",
+ "Discriminator Loss: tf.Tensor(0.35508507, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.6790603, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 10674\n",
+ "Discriminator Loss: tf.Tensor(1.1575838, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.15354465, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 10675\n",
+ "Discriminator Loss: tf.Tensor(0.6036893, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.8566557, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 10676\n",
+ "Discriminator Loss: tf.Tensor(0.62566304, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.5106464, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 10677\n",
+ "Discriminator Loss: tf.Tensor(1.3503306, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.2476227, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 10678\n",
+ "Discriminator Loss: tf.Tensor(1.7472296, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.57283026, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 10679\n",
+ "Discriminator Loss: tf.Tensor(0.468169, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.2107489, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 10680\n",
+ "Discriminator Loss: tf.Tensor(1.0624717, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.13669287, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 10681\n",
+ "Discriminator Loss: tf.Tensor(0.51048774, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.8552448, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 10682\n",
+ "Discriminator Loss: tf.Tensor(0.5781013, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.5251524, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 10683\n",
+ "Discriminator Loss: tf.Tensor(0.69725573, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.609934, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 10684\n",
+ "Discriminator Loss: tf.Tensor(0.077831246, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.962637, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 10685\n",
+ "Discriminator Loss: tf.Tensor(1.5688384, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(3.1514056, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 10686\n",
+ "Discriminator Loss: tf.Tensor(0.5159486, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.6812413, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 10687\n",
+ "Discriminator Loss: tf.Tensor(0.7877568, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.4375765, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 10688\n",
+ "Discriminator Loss: tf.Tensor(0.95164984, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.2237457, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 10689\n",
+ "Discriminator Loss: tf.Tensor(0.7853439, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.9129944, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 10690\n",
+ "Discriminator Loss: tf.Tensor(1.5656617, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.5463271, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 10691\n",
+ "Discriminator Loss: tf.Tensor(0.7830744, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.5067626, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 10692\n",
+ "Discriminator Loss: tf.Tensor(1.4556396, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.13930336, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 10693\n",
+ "Discriminator Loss: tf.Tensor(0.41350037, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.4958353, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 10694\n",
+ "Discriminator Loss: tf.Tensor(0.79454696, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.35009596, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 10695\n",
+ "Discriminator Loss: tf.Tensor(0.9504402, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.593008, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 10696\n",
+ "Discriminator Loss: tf.Tensor(0.58018565, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.2462065, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 10697\n",
+ "Discriminator Loss: tf.Tensor(1.1484551, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.031164164, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 10698\n",
+ "Discriminator Loss: tf.Tensor(0.720379, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.0753052, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 10699\n",
+ "Discriminator Loss: tf.Tensor(0.15409799, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.1924609, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 10700\n",
+ "Discriminator Loss: tf.Tensor(1.0794837, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.09931058, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 10701\n",
+ "Discriminator Loss: tf.Tensor(0.4818356, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.7985977, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 10702\n",
+ "Discriminator Loss: tf.Tensor(0.68361306, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.4615213, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 10703\n",
+ "Discriminator Loss: tf.Tensor(0.637711, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.5342095, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 10704\n",
+ "Discriminator Loss: tf.Tensor(1.2036873, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.054885227, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 10705\n",
+ "Discriminator Loss: tf.Tensor(1.2251501, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.6077697, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 10706\n",
+ "Discriminator Loss: tf.Tensor(0.8569732, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.38218617, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 10707\n",
+ "Discriminator Loss: tf.Tensor(0.4696198, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.6724136, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 10708\n",
+ "Discriminator Loss: tf.Tensor(0.64368975, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.2196902, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 10709\n",
+ "Discriminator Loss: tf.Tensor(2.0503356, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-1.0323492, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 10710\n",
+ "Discriminator Loss: tf.Tensor(0.38558233, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.3758246, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 10711\n",
+ "Discriminator Loss: tf.Tensor(0.7308985, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.47378978, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 10712\n",
+ "Discriminator Loss: tf.Tensor(1.1441994, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.5405462, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 10713\n",
+ "Discriminator Loss: tf.Tensor(0.41854554, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.61355954, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 10714\n",
+ "Discriminator Loss: tf.Tensor(0.70500004, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.8633108, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 10715\n",
+ "Discriminator Loss: tf.Tensor(0.07648586, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.2361876, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 10716\n",
+ "Discriminator Loss: tf.Tensor(0.82147604, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.2766917, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 10717\n",
+ "Discriminator Loss: tf.Tensor(1.021615, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.7038548, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 10718\n",
+ "Discriminator Loss: tf.Tensor(0.5803924, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.6392495, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 10719\n",
+ "Discriminator Loss: tf.Tensor(0.79697764, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.6716378, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 10720\n",
+ "Discriminator Loss: tf.Tensor(0.021768197, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.3796426, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 10721\n",
+ "Discriminator Loss: tf.Tensor(49.08762, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.568065, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 10722\n",
+ "Discriminator Loss: tf.Tensor(32.657696, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.5615006, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 10723\n",
+ "Discriminator Loss: tf.Tensor(9.577712, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.0025545612, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 10724\n",
+ "Discriminator Loss: tf.Tensor(5.4122295, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.12219792, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 10725\n",
+ "Discriminator Loss: tf.Tensor(4.118621, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.13774754, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 10726\n",
+ "Discriminator Loss: tf.Tensor(3.4995885, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.15292451, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 10727\n",
+ "Discriminator Loss: tf.Tensor(3.2803435, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.19792403, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 10728\n",
+ "Discriminator Loss: tf.Tensor(2.8640447, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.23505682, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 10729\n",
+ "Discriminator Loss: tf.Tensor(2.7416167, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.2619711, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 10730\n",
+ "Discriminator Loss: tf.Tensor(2.4188068, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.27164978, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 10731\n",
+ "Discriminator Loss: tf.Tensor(2.4635038, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.29991892, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 10732\n",
+ "Discriminator Loss: tf.Tensor(2.3437467, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.30127868, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 10733\n",
+ "Discriminator Loss: tf.Tensor(2.235053, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.33031657, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 10734\n",
+ "Discriminator Loss: tf.Tensor(2.1733878, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.33940062, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 10735\n",
+ "Discriminator Loss: tf.Tensor(2.0994155, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.36097836, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 10736\n",
+ "Discriminator Loss: tf.Tensor(2.2362971, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.36620668, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 10737\n",
+ "Discriminator Loss: tf.Tensor(2.110347, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.3677903, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 10738\n",
+ "Discriminator Loss: tf.Tensor(1.9898376, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.3987389, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 10739\n",
+ "Discriminator Loss: tf.Tensor(2.0659277, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.43098453, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 10740\n",
+ "Discriminator Loss: tf.Tensor(1.9705819, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.44760934, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 10741\n",
+ "Discriminator Loss: tf.Tensor(1.9001905, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.49330863, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 10742\n",
+ "Discriminator Loss: tf.Tensor(1.8863351, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.51101464, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 10743\n",
+ "Discriminator Loss: tf.Tensor(1.9019537, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.54327005, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 10744\n",
+ "Discriminator Loss: tf.Tensor(1.9307865, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.4959242, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 10745\n",
+ "Discriminator Loss: tf.Tensor(1.8673813, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.5096286, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 10746\n",
+ "Discriminator Loss: tf.Tensor(1.8649524, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.560671, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 10747\n",
+ "Discriminator Loss: tf.Tensor(1.8747673, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.5630563, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 10748\n",
+ "Discriminator Loss: tf.Tensor(1.8515472, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.4971694, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 10749\n",
+ "Discriminator Loss: tf.Tensor(1.8634399, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.60139793, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 10750\n",
+ "Discriminator Loss: tf.Tensor(1.7842171, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.5126169, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 10751\n",
+ "Discriminator Loss: tf.Tensor(1.76944, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.603816, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 10752\n",
+ "Discriminator Loss: tf.Tensor(1.7182853, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.6379339, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 10753\n",
+ "Discriminator Loss: tf.Tensor(1.72298, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.6906516, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 10754\n",
+ "Discriminator Loss: tf.Tensor(1.7543638, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.7040022, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 10755\n",
+ "Discriminator Loss: tf.Tensor(1.6934456, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.7408202, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 10756\n",
+ "Discriminator Loss: tf.Tensor(1.8273662, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.7917355, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 10757\n",
+ "Discriminator Loss: tf.Tensor(1.6145927, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.539727, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 10758\n",
+ "Discriminator Loss: tf.Tensor(1.5983703, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.89758664, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 10759\n",
+ "Discriminator Loss: tf.Tensor(1.5223787, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.9280694, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 10760\n",
+ "Discriminator Loss: tf.Tensor(1.4991748, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.98953676, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 10761\n",
+ "Discriminator Loss: tf.Tensor(1.5990963, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.8261102, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 10762\n",
+ "Discriminator Loss: tf.Tensor(1.5571909, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.960947, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 10763\n",
+ "Discriminator Loss: tf.Tensor(1.51032, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.86620694, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 10764\n",
+ "Discriminator Loss: tf.Tensor(1.8449517, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.1201216, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 10765\n",
+ "Discriminator Loss: tf.Tensor(2.0565228, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.79011506, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 10766\n",
+ "Discriminator Loss: tf.Tensor(1.6446652, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.036278427, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 10767\n",
+ "Discriminator Loss: tf.Tensor(1.4661679, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.15697221, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 10768\n",
+ "Discriminator Loss: tf.Tensor(1.5478812, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.4839599, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 10769\n",
+ "Discriminator Loss: tf.Tensor(1.5291972, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.118273556, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 10770\n",
+ "Discriminator Loss: tf.Tensor(2.0640502, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.1874065, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 10771\n",
+ "Discriminator Loss: tf.Tensor(1.4767759, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.05091696, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 10772\n",
+ "Discriminator Loss: tf.Tensor(1.0129634, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.47361556, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 10773\n",
+ "Discriminator Loss: tf.Tensor(0.82068944, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.3621334, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 10774\n",
+ "Discriminator Loss: tf.Tensor(1.5246991, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.46442106, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 10775\n",
+ "Discriminator Loss: tf.Tensor(1.0565438, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.7935124, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 10776\n",
+ "Discriminator Loss: tf.Tensor(1.2503852, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.70436597, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 10777\n",
+ "Discriminator Loss: tf.Tensor(0.72528625, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.0366315, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 10778\n",
+ "Discriminator Loss: tf.Tensor(1.3117671, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.17366022, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 10779\n",
+ "Discriminator Loss: tf.Tensor(0.6346035, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.98091084, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 10780\n",
+ "Discriminator Loss: tf.Tensor(0.40596917, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.0039388, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 10781\n",
+ "Discriminator Loss: tf.Tensor(0.8800802, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.20066631, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 10782\n",
+ "Discriminator Loss: tf.Tensor(0.82448554, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.94253, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 10783\n",
+ "Discriminator Loss: tf.Tensor(0.41558748, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.69201905, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 10784\n",
+ "Discriminator Loss: tf.Tensor(0.54787827, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.7946831, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 10785\n",
+ "Discriminator Loss: tf.Tensor(1.6248145, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.49035776, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 10786\n",
+ "Discriminator Loss: tf.Tensor(0.67576766, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.9757407, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 10787\n",
+ "Discriminator Loss: tf.Tensor(0.66427296, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.6086726, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 10788\n",
+ "Discriminator Loss: tf.Tensor(1.1822523, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.011950227, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 10789\n",
+ "Discriminator Loss: tf.Tensor(0.8013281, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.5231047, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 10790\n",
+ "Discriminator Loss: tf.Tensor(1.5066901, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.38821343, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 10791\n",
+ "Discriminator Loss: tf.Tensor(0.7355523, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.252463, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 10792\n",
+ "Discriminator Loss: tf.Tensor(1.2925668, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.23403238, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 10793\n",
+ "Discriminator Loss: tf.Tensor(0.45775458, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.137947, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 10794\n",
+ "Discriminator Loss: tf.Tensor(0.8868991, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.24249987, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 10795\n",
+ "Discriminator Loss: tf.Tensor(0.3516708, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.8996764, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 10796\n",
+ "Discriminator Loss: tf.Tensor(0.45823526, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.6292186, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 10797\n",
+ "Discriminator Loss: tf.Tensor(0.79297256, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.3879368, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 10798\n",
+ "Discriminator Loss: tf.Tensor(0.2441291, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.9002772, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 10799\n",
+ "Discriminator Loss: tf.Tensor(0.6694344, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.5560346, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 10800\n",
+ "Discriminator Loss: tf.Tensor(0.5576322, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.60475564, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 10801\n",
+ "Discriminator Loss: tf.Tensor(0.9725317, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.342063, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 10802\n",
+ "Discriminator Loss: tf.Tensor(1.076139, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.036296923, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 10803\n",
+ "Discriminator Loss: tf.Tensor(0.8945711, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.157139, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 10804\n",
+ "Discriminator Loss: tf.Tensor(0.91182464, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.28403822, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 10805\n",
+ "Discriminator Loss: tf.Tensor(0.37428737, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.0787199, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 10806\n",
+ "Discriminator Loss: tf.Tensor(0.50206, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.56102985, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 10807\n",
+ "Discriminator Loss: tf.Tensor(0.7889893, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(3.0556853, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 10808\n",
+ "Discriminator Loss: tf.Tensor(0.3727125, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.7364321, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 10809\n",
+ "Discriminator Loss: tf.Tensor(0.67124844, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.40421692, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 10810\n",
+ "Discriminator Loss: tf.Tensor(0.6117765, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.1431434, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 10811\n",
+ "Discriminator Loss: tf.Tensor(0.7334595, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.47919998, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 10812\n",
+ "Discriminator Loss: tf.Tensor(0.5495047, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.8683956, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 10813\n",
+ "Discriminator Loss: tf.Tensor(0.36564344, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.0825344, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 10814\n",
+ "Discriminator Loss: tf.Tensor(1.3290854, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.22511144, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 10815\n",
+ "Discriminator Loss: tf.Tensor(1.5166464, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.3450177, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 10816\n",
+ "Discriminator Loss: tf.Tensor(0.35356304, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.7395168, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 10817\n",
+ "Discriminator Loss: tf.Tensor(0.56274575, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.4552193, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 10818\n",
+ "Discriminator Loss: tf.Tensor(0.42582422, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.4393067, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 10819\n",
+ "Discriminator Loss: tf.Tensor(0.75793725, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.31722677, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 10820\n",
+ "Discriminator Loss: tf.Tensor(0.66778225, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.5130656, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 10821\n",
+ "Discriminator Loss: tf.Tensor(0.22540012, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.93016845, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 10822\n",
+ "Discriminator Loss: tf.Tensor(1.0465115, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.9477825, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 10823\n",
+ "Discriminator Loss: tf.Tensor(0.5652833, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.8266985, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 10824\n",
+ "Discriminator Loss: tf.Tensor(1.0281123, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.9566677, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 10825\n",
+ "Discriminator Loss: tf.Tensor(0.30537567, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.2186819, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 10826\n",
+ "Discriminator Loss: tf.Tensor(0.9102132, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.25357914, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 10827\n",
+ "Discriminator Loss: tf.Tensor(0.26995173, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.5659065, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 10828\n",
+ "Discriminator Loss: tf.Tensor(0.19440891, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.9259863, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 10829\n",
+ "Discriminator Loss: tf.Tensor(1.3713672, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.589515, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 10830\n",
+ "Discriminator Loss: tf.Tensor(1.12802, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.44126692, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 10831\n",
+ "Discriminator Loss: tf.Tensor(0.49466345, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.2708037, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 10832\n",
+ "Discriminator Loss: tf.Tensor(0.48081514, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.61541194, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 10833\n",
+ "Discriminator Loss: tf.Tensor(0.8424939, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.6500604, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 10834\n",
+ "Discriminator Loss: tf.Tensor(1.3430983, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.15047342, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 10835\n",
+ "Discriminator Loss: tf.Tensor(1.0075666, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.8212032, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 10836\n",
+ "Discriminator Loss: tf.Tensor(1.9807124, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.7590962, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 10837\n",
+ "Discriminator Loss: tf.Tensor(0.9990738, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.9407519, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 10838\n",
+ "Discriminator Loss: tf.Tensor(1.3936758, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.33242568, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 10839\n",
+ "Discriminator Loss: tf.Tensor(1.0121784, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.4384506, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 10840\n",
+ "Discriminator Loss: tf.Tensor(0.6272987, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.49297705, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 10841\n",
+ "Discriminator Loss: tf.Tensor(0.5274958, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.2638962, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 10842\n",
+ "Discriminator Loss: tf.Tensor(0.17910793, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.0165502, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 10843\n",
+ "Discriminator Loss: tf.Tensor(0.30459982, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.3730544, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 10844\n",
+ "Discriminator Loss: tf.Tensor(1.4085909, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.096432686, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 10845\n",
+ "Discriminator Loss: tf.Tensor(1.357332, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.2893417, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 10846\n",
+ "Discriminator Loss: tf.Tensor(0.72981846, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.5028818, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 10847\n",
+ "Discriminator Loss: tf.Tensor(0.69401264, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.209014, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 10848\n",
+ "Discriminator Loss: tf.Tensor(0.47691444, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.62838256, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 10849\n",
+ "Discriminator Loss: tf.Tensor(0.50958824, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.6253662, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 10850\n",
+ "Discriminator Loss: tf.Tensor(0.14298967, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.0816773, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 10851\n",
+ "Discriminator Loss: tf.Tensor(0.8546193, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.3939571, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 10852\n",
+ "Discriminator Loss: tf.Tensor(1.3271916, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.9337654, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 10853\n",
+ "Discriminator Loss: tf.Tensor(0.2405836, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.79548377, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 10854\n",
+ "Discriminator Loss: tf.Tensor(1.1580185, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.6602833, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 10855\n",
+ "Discriminator Loss: tf.Tensor(0.5755618, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.55472976, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 10856\n",
+ "Discriminator Loss: tf.Tensor(1.1861298, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.5649128, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 10857\n",
+ "Discriminator Loss: tf.Tensor(0.858133, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.2808361, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 10858\n",
+ "Discriminator Loss: tf.Tensor(1.1081421, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.5026388, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 10859\n",
+ "Discriminator Loss: tf.Tensor(1.1930503, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.1790189, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 10860\n",
+ "Discriminator Loss: tf.Tensor(0.75427115, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.53126, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 10861\n",
+ "Discriminator Loss: tf.Tensor(0.41392174, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.3459796, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 10862\n",
+ "Discriminator Loss: tf.Tensor(0.7217008, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.30477932, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 10863\n",
+ "Discriminator Loss: tf.Tensor(0.7486627, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.3287008, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 10864\n",
+ "Discriminator Loss: tf.Tensor(0.7159836, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.62327737, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 10865\n",
+ "Discriminator Loss: tf.Tensor(0.4032929, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.7000889, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 10866\n",
+ "Discriminator Loss: tf.Tensor(1.7273798, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.4431552, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 10867\n",
+ "Discriminator Loss: tf.Tensor(1.0754123, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.2636852, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 10868\n",
+ "Discriminator Loss: tf.Tensor(1.1723185, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.017483173, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 10869\n",
+ "Discriminator Loss: tf.Tensor(0.36970106, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.7054949, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 10870\n",
+ "Discriminator Loss: tf.Tensor(1.5357047, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.44704798, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 10871\n",
+ "Discriminator Loss: tf.Tensor(0.8953031, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.7003704, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 10872\n",
+ "Discriminator Loss: tf.Tensor(0.91120934, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.24014558, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 10873\n",
+ "Discriminator Loss: tf.Tensor(0.3387494, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.8370142, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 10874\n",
+ "Discriminator Loss: tf.Tensor(0.24053797, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.0857421, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 10875\n",
+ "Discriminator Loss: tf.Tensor(0.91819274, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.150566, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 10876\n",
+ "Discriminator Loss: tf.Tensor(0.69916785, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.3924344, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 10877\n",
+ "Discriminator Loss: tf.Tensor(0.2887131, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.9638408, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 10878\n",
+ "Discriminator Loss: tf.Tensor(0.43217283, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.5371051, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 10879\n",
+ "Discriminator Loss: tf.Tensor(1.3391209, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.31287408, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 10880\n",
+ "Discriminator Loss: tf.Tensor(1.2029642, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.3363047, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 10881\n",
+ "Discriminator Loss: tf.Tensor(0.56728995, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.73110956, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 10882\n",
+ "Discriminator Loss: tf.Tensor(0.76311195, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.4167576, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 10883\n",
+ "Discriminator Loss: tf.Tensor(0.6394844, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.6564828, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 10884\n",
+ "Discriminator Loss: tf.Tensor(1.0041039, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.495521, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 10885\n",
+ "Discriminator Loss: tf.Tensor(0.5794411, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.5029638, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 10886\n",
+ "Discriminator Loss: tf.Tensor(0.8294617, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.6183302, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 10887\n",
+ "Discriminator Loss: tf.Tensor(0.46427754, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.64856774, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 10888\n",
+ "Discriminator Loss: tf.Tensor(0.49642318, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(3.3449776, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 10889\n",
+ "Discriminator Loss: tf.Tensor(0.43662155, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.0172668, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 10890\n",
+ "Discriminator Loss: tf.Tensor(0.23812655, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.4958258, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 10891\n",
+ "Discriminator Loss: tf.Tensor(1.9022298, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.7227126, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 10892\n",
+ "Discriminator Loss: tf.Tensor(1.0329485, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.5666544, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 10893\n",
+ "Discriminator Loss: tf.Tensor(0.2218337, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.2233438, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 10894\n",
+ "Discriminator Loss: tf.Tensor(0.524523, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.5753204, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 10895\n",
+ "Discriminator Loss: tf.Tensor(0.49017438, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.3417704, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 10896\n",
+ "Discriminator Loss: tf.Tensor(0.41285223, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.2330986, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 10897\n",
+ "Discriminator Loss: tf.Tensor(1.0049362, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.18746452, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 10898\n",
+ "Discriminator Loss: tf.Tensor(0.85349166, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.572354, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 10899\n",
+ "Discriminator Loss: tf.Tensor(0.3919733, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.63598037, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 10900\n",
+ "Discriminator Loss: tf.Tensor(0.94763356, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.7737389, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 10901\n",
+ "Discriminator Loss: tf.Tensor(0.36743462, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.4420891, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 10902\n",
+ "Discriminator Loss: tf.Tensor(0.58543414, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.5216203, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 10903\n",
+ "Discriminator Loss: tf.Tensor(0.66074175, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.5480492, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 10904\n",
+ "Discriminator Loss: tf.Tensor(0.20251732, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.9732296, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 10905\n",
+ "Discriminator Loss: tf.Tensor(0.5230776, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.8053856, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 10906\n",
+ "Discriminator Loss: tf.Tensor(0.49686605, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.0428296, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 10907\n",
+ "Discriminator Loss: tf.Tensor(1.5447305, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.49951777, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 10908\n",
+ "Discriminator Loss: tf.Tensor(1.1136069, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.1335948, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 10909\n",
+ "Discriminator Loss: tf.Tensor(0.5672141, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.54053, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 10910\n",
+ "Discriminator Loss: tf.Tensor(0.20701858, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.2539802, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 10911\n",
+ "Discriminator Loss: tf.Tensor(0.81280327, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.4403467, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 10912\n",
+ "Discriminator Loss: tf.Tensor(1.3227617, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.27052477, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 10913\n",
+ "Discriminator Loss: tf.Tensor(0.98769045, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.4064332, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 10914\n",
+ "Discriminator Loss: tf.Tensor(2.721569, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-1.5145693, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 10915\n",
+ "Discriminator Loss: tf.Tensor(1.5659171, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.32645342, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 10916\n",
+ "Discriminator Loss: tf.Tensor(2.7562468, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(3.8028786, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 10917\n",
+ "Discriminator Loss: tf.Tensor(1.0577998, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.5525364, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 10918\n",
+ "Discriminator Loss: tf.Tensor(0.77542853, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.4475125, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 10919\n",
+ "Discriminator Loss: tf.Tensor(1.8041425, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.7768871, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 10920\n",
+ "Discriminator Loss: tf.Tensor(0.55921733, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.1250156, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 10921\n",
+ "Discriminator Loss: tf.Tensor(1.6129578, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.5609793, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 10922\n",
+ "Discriminator Loss: tf.Tensor(0.30359003, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.98853064, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 10923\n",
+ "Discriminator Loss: tf.Tensor(0.92120486, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.3066967, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 10924\n",
+ "Discriminator Loss: tf.Tensor(1.3325737, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.2901208, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 10925\n",
+ "Discriminator Loss: tf.Tensor(1.0465158, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.2669601, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 10926\n",
+ "Discriminator Loss: tf.Tensor(0.60659826, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.53284806, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 10927\n",
+ "Discriminator Loss: tf.Tensor(0.75487924, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.7484782, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 10928\n",
+ "Discriminator Loss: tf.Tensor(0.8267867, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.26688936, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 10929\n",
+ "Discriminator Loss: tf.Tensor(1.0357475, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.7570837, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 10930\n",
+ "Discriminator Loss: tf.Tensor(0.4896399, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.9161749, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 10931\n",
+ "Discriminator Loss: tf.Tensor(0.78379047, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.8396614, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 10932\n",
+ "Discriminator Loss: tf.Tensor(0.118896276, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.94450384, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 10933\n",
+ "Discriminator Loss: tf.Tensor(1.467906, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(3.4074237, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 10934\n",
+ "Discriminator Loss: tf.Tensor(0.2745737, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.4652077, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 10935\n",
+ "Discriminator Loss: tf.Tensor(0.13626626, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.93954855, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 10936\n",
+ "Discriminator Loss: tf.Tensor(1.4000002, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.9606044, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 10937\n",
+ "Discriminator Loss: tf.Tensor(0.31646565, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.1515173, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 10938\n",
+ "Discriminator Loss: tf.Tensor(1.1848103, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.12788865, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 10939\n",
+ "Discriminator Loss: tf.Tensor(0.5158298, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.1370027, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 10940\n",
+ "Discriminator Loss: tf.Tensor(0.13046342, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.1947794, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 10941\n",
+ "Discriminator Loss: tf.Tensor(0.7981547, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.56820667, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 10942\n",
+ "Discriminator Loss: tf.Tensor(1.1036391, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.3104722, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 10943\n",
+ "Discriminator Loss: tf.Tensor(1.2101066, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.2767281, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 10944\n",
+ "Discriminator Loss: tf.Tensor(1.1829044, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.3771372, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 10945\n",
+ "Discriminator Loss: tf.Tensor(1.6319902, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.5512382, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 10946\n",
+ "Discriminator Loss: tf.Tensor(0.7224548, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.8221092, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 10947\n",
+ "Discriminator Loss: tf.Tensor(0.6441022, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.55878633, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 10948\n",
+ "Discriminator Loss: tf.Tensor(1.0588578, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.017153, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 10949\n",
+ "Discriminator Loss: tf.Tensor(1.2529454, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.19915241, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 10950\n",
+ "Discriminator Loss: tf.Tensor(0.8444516, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.4966116, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 10951\n",
+ "Discriminator Loss: tf.Tensor(0.59486175, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.5450847, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 10952\n",
+ "Discriminator Loss: tf.Tensor(0.25343525, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.1082747, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 10953\n",
+ "Discriminator Loss: tf.Tensor(1.2313187, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.05507027, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 10954\n",
+ "Discriminator Loss: tf.Tensor(0.5573175, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.9075102, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 10955\n",
+ "Discriminator Loss: tf.Tensor(0.91190314, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.5064311, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 10956\n",
+ "Discriminator Loss: tf.Tensor(0.8653579, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.154903, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 10957\n",
+ "Discriminator Loss: tf.Tensor(1.1863027, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.21254039, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 10958\n",
+ "Discriminator Loss: tf.Tensor(0.39268523, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.438948, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 10959\n",
+ "Discriminator Loss: tf.Tensor(1.7357768, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.49558434, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 10960\n",
+ "Discriminator Loss: tf.Tensor(1.4157883, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.4305522, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 10961\n",
+ "Discriminator Loss: tf.Tensor(1.0022343, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.16049498, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 10962\n",
+ "Discriminator Loss: tf.Tensor(0.5202104, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.6055006, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 10963\n",
+ "Discriminator Loss: tf.Tensor(0.7729719, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.4220725, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 10964\n",
+ "Discriminator Loss: tf.Tensor(0.63866824, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.2088687, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 10965\n",
+ "Discriminator Loss: tf.Tensor(0.68329906, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.37001777, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 10966\n",
+ "Discriminator Loss: tf.Tensor(0.5872268, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.7450705, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 10967\n",
+ "Discriminator Loss: tf.Tensor(0.27404982, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.2219509, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 10968\n",
+ "Discriminator Loss: tf.Tensor(1.3137046, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.20405258, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 10969\n",
+ "Discriminator Loss: tf.Tensor(0.6469244, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.8373535, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 10970\n",
+ "Discriminator Loss: tf.Tensor(0.37544423, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.3295109, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 10971\n",
+ "Discriminator Loss: tf.Tensor(1.6766491, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.55039376, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 10972\n",
+ "Discriminator Loss: tf.Tensor(0.60189223, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.9970398, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 10973\n",
+ "Discriminator Loss: tf.Tensor(0.39360797, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.910072, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 10974\n",
+ "Discriminator Loss: tf.Tensor(1.0200038, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(3.0440466, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 10975\n",
+ "Discriminator Loss: tf.Tensor(2.1108513, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.8270042, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 10976\n",
+ "Discriminator Loss: tf.Tensor(0.72238815, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.2525742, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 10977\n",
+ "Discriminator Loss: tf.Tensor(1.8271956, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.5813041, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 10978\n",
+ "Discriminator Loss: tf.Tensor(0.6583582, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.1244701, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 10979\n",
+ "Discriminator Loss: tf.Tensor(1.9538081, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.9066839, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 10980\n",
+ "Discriminator Loss: tf.Tensor(0.63835317, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.94871324, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 10981\n",
+ "Discriminator Loss: tf.Tensor(1.1322951, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.2343404, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 10982\n",
+ "Discriminator Loss: tf.Tensor(1.2116328, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.13442643, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 10983\n",
+ "Discriminator Loss: tf.Tensor(0.5668253, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.8211151, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 10984\n",
+ "Discriminator Loss: tf.Tensor(0.359755, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.69606966, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 10985\n",
+ "Discriminator Loss: tf.Tensor(0.7157957, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.5294378, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 10986\n",
+ "Discriminator Loss: tf.Tensor(0.617573, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.8668606, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 10987\n",
+ "Discriminator Loss: tf.Tensor(1.1107447, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.2210662, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 10988\n",
+ "Discriminator Loss: tf.Tensor(0.59426636, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.602357, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 10989\n",
+ "Discriminator Loss: tf.Tensor(0.36205846, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.0892193, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 10990\n",
+ "Discriminator Loss: tf.Tensor(0.6745333, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.5030077, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 10991\n",
+ "Discriminator Loss: tf.Tensor(0.77909887, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.599039, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 10992\n",
+ "Discriminator Loss: tf.Tensor(0.8935236, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.27177837, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 10993\n",
+ "Discriminator Loss: tf.Tensor(0.6650101, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.4935167, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 10994\n",
+ "Discriminator Loss: tf.Tensor(1.862737, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.6942422, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 10995\n",
+ "Discriminator Loss: tf.Tensor(0.8015431, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.7972238, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 10996\n",
+ "Discriminator Loss: tf.Tensor(0.42321762, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.667825, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 10997\n",
+ "Discriminator Loss: tf.Tensor(0.5991335, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(3.3589585, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 10998\n",
+ "Discriminator Loss: tf.Tensor(0.041481376, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.0879521, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 10999\n",
+ "Discriminator Loss: tf.Tensor(116.05035, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.46151257, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 11000\n",
+ "Discriminator Loss: tf.Tensor(44.051384, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.2842485, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 11001\n",
+ "Discriminator Loss: tf.Tensor(13.302881, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.15451379, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 11002\n",
+ "Discriminator Loss: tf.Tensor(7.1772184, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.0401512, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 11003\n",
+ "Discriminator Loss: tf.Tensor(5.927209, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.13070786, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 11004\n",
+ "Discriminator Loss: tf.Tensor(4.338381, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.107506834, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 11005\n",
+ "Discriminator Loss: tf.Tensor(4.122334, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.17712188, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 11006\n",
+ "Discriminator Loss: tf.Tensor(3.2612603, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.19907229, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 11007\n",
+ "Discriminator Loss: tf.Tensor(3.4064322, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.25415114, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 11008\n",
+ "Discriminator Loss: tf.Tensor(2.8522482, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.24871469, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 11009\n",
+ "Discriminator Loss: tf.Tensor(3.3231397, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.27575713, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 11010\n",
+ "Discriminator Loss: tf.Tensor(2.6163769, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.281486, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 11011\n",
+ "Discriminator Loss: tf.Tensor(2.6429694, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.3183562, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 11012\n",
+ "Discriminator Loss: tf.Tensor(2.5751348, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.34340608, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 11013\n",
+ "Discriminator Loss: tf.Tensor(2.359485, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.35880932, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 11014\n",
+ "Discriminator Loss: tf.Tensor(2.4916012, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.3921374, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 11015\n",
+ "Discriminator Loss: tf.Tensor(2.2948756, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.40882286, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 11016\n",
+ "Discriminator Loss: tf.Tensor(2.328021, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.44718102, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 11017\n",
+ "Discriminator Loss: tf.Tensor(2.272905, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.46953413, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 11018\n",
+ "Discriminator Loss: tf.Tensor(2.167094, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.5086467, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 11019\n",
+ "Discriminator Loss: tf.Tensor(2.1031466, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.5427279, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 11020\n",
+ "Discriminator Loss: tf.Tensor(2.0565262, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.5996791, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 11021\n",
+ "Discriminator Loss: tf.Tensor(1.9903105, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.6330878, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 11022\n",
+ "Discriminator Loss: tf.Tensor(1.963678, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.6701007, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 11023\n",
+ "Discriminator Loss: tf.Tensor(1.9608384, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.69222385, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 11024\n",
+ "Discriminator Loss: tf.Tensor(1.9579669, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.7105746, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 11025\n",
+ "Discriminator Loss: tf.Tensor(1.9789548, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.68817645, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 11026\n",
+ "Discriminator Loss: tf.Tensor(1.9646676, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.7110095, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 11027\n",
+ "Discriminator Loss: tf.Tensor(1.9299452, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.66490495, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 11028\n",
+ "Discriminator Loss: tf.Tensor(1.880364, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.70351905, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 11029\n",
+ "Discriminator Loss: tf.Tensor(1.9683659, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.5819455, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 11030\n",
+ "Discriminator Loss: tf.Tensor(1.9460547, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.588682, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 11031\n",
+ "Discriminator Loss: tf.Tensor(1.7571912, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.700188, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 11032\n",
+ "Discriminator Loss: tf.Tensor(1.5963495, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.77202797, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 11033\n",
+ "Discriminator Loss: tf.Tensor(1.7045742, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.74793977, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 11034\n",
+ "Discriminator Loss: tf.Tensor(1.8437873, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.64870256, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 11035\n",
+ "Discriminator Loss: tf.Tensor(1.8559401, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.6624067, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 11036\n",
+ "Discriminator Loss: tf.Tensor(1.8278211, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.7818656, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 11037\n",
+ "Discriminator Loss: tf.Tensor(1.8854489, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.85512656, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 11038\n",
+ "Discriminator Loss: tf.Tensor(1.837949, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.8332872, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 11039\n",
+ "Discriminator Loss: tf.Tensor(1.6810682, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.99352044, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 11040\n",
+ "Discriminator Loss: tf.Tensor(1.5286182, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.89916044, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 11041\n",
+ "Discriminator Loss: tf.Tensor(1.8154745, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.346186, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 11042\n",
+ "Discriminator Loss: tf.Tensor(1.9593787, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.46452928, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 11043\n",
+ "Discriminator Loss: tf.Tensor(1.6594044, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.019505227, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 11044\n",
+ "Discriminator Loss: tf.Tensor(1.5934321, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.2500402, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 11045\n",
+ "Discriminator Loss: tf.Tensor(1.4998981, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.3734226, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 11046\n",
+ "Discriminator Loss: tf.Tensor(1.5399582, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.42855236, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 11047\n",
+ "Discriminator Loss: tf.Tensor(1.4048789, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.58108014, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 11048\n",
+ "Discriminator Loss: tf.Tensor(1.6634961, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.40213433, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 11049\n",
+ "Discriminator Loss: tf.Tensor(1.3865683, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.7520525, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 11050\n",
+ "Discriminator Loss: tf.Tensor(0.97269416, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.93875283, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 11051\n",
+ "Discriminator Loss: tf.Tensor(0.60416126, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.7321873, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 11052\n",
+ "Discriminator Loss: tf.Tensor(2.0804484, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.0799544, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 11053\n",
+ "Discriminator Loss: tf.Tensor(1.4570181, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.05086867, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 11054\n",
+ "Discriminator Loss: tf.Tensor(1.0987413, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.5299562, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 11055\n",
+ "Discriminator Loss: tf.Tensor(0.8513069, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.8346831, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 11056\n",
+ "Discriminator Loss: tf.Tensor(1.231884, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.1454711, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 11057\n",
+ "Discriminator Loss: tf.Tensor(2.247889, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.89564246, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 11058\n",
+ "Discriminator Loss: tf.Tensor(1.0173713, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.36446714, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 11059\n",
+ "Discriminator Loss: tf.Tensor(0.32829675, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.8757942, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 11060\n",
+ "Discriminator Loss: tf.Tensor(1.2117286, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.7500261, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 11061\n",
+ "Discriminator Loss: tf.Tensor(0.46371594, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.6106522, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 11062\n",
+ "Discriminator Loss: tf.Tensor(0.7644161, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.0470285, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 11063\n",
+ "Discriminator Loss: tf.Tensor(1.4781005, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.4145243, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 11064\n",
+ "Discriminator Loss: tf.Tensor(1.2188743, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.80037504, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 11065\n",
+ "Discriminator Loss: tf.Tensor(0.7853207, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.863211, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 11066\n",
+ "Discriminator Loss: tf.Tensor(0.7337407, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.4524189, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 11067\n",
+ "Discriminator Loss: tf.Tensor(1.9032599, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.78849655, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 11068\n",
+ "Discriminator Loss: tf.Tensor(0.92913675, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.1094791, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 11069\n",
+ "Discriminator Loss: tf.Tensor(1.174839, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.13328576, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 11070\n",
+ "Discriminator Loss: tf.Tensor(0.51143336, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.1024522, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 11071\n",
+ "Discriminator Loss: tf.Tensor(0.8483496, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.28864834, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 11072\n",
+ "Discriminator Loss: tf.Tensor(0.49919906, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.5457879, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 11073\n",
+ "Discriminator Loss: tf.Tensor(1.2612742, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.2127974, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 11074\n",
+ "Discriminator Loss: tf.Tensor(0.29161447, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.4089541, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 11075\n",
+ "Discriminator Loss: tf.Tensor(1.3143113, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.097545065, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 11076\n",
+ "Discriminator Loss: tf.Tensor(0.9291142, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.5734636, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 11077\n",
+ "Discriminator Loss: tf.Tensor(1.1781062, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.03879353, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 11078\n",
+ "Discriminator Loss: tf.Tensor(0.3627967, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.644002, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 11079\n",
+ "Discriminator Loss: tf.Tensor(0.45989504, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.8204492, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 11080\n",
+ "Discriminator Loss: tf.Tensor(0.8064811, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.595132, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 11081\n",
+ "Discriminator Loss: tf.Tensor(0.6875811, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.38725123, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 11082\n",
+ "Discriminator Loss: tf.Tensor(0.6967144, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.2132814, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 11083\n",
+ "Discriminator Loss: tf.Tensor(0.67794293, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.5213161, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 11084\n",
+ "Discriminator Loss: tf.Tensor(1.2909577, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.3291883, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 11085\n",
+ "Discriminator Loss: tf.Tensor(1.2007531, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.1700985, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 11086\n",
+ "Discriminator Loss: tf.Tensor(0.26089185, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.7583857, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 11087\n",
+ "Discriminator Loss: tf.Tensor(0.14939816, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.92242384, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 11088\n",
+ "Discriminator Loss: tf.Tensor(0.4139744, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.5744529, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 11089\n",
+ "Discriminator Loss: tf.Tensor(1.1332525, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.034037452, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 11090\n",
+ "Discriminator Loss: tf.Tensor(0.67323637, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.1777601, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 11091\n",
+ "Discriminator Loss: tf.Tensor(1.187002, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.06851869, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 11092\n",
+ "Discriminator Loss: tf.Tensor(0.98659587, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.9164586, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 11093\n",
+ "Discriminator Loss: tf.Tensor(1.5615596, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.33892107, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 11094\n",
+ "Discriminator Loss: tf.Tensor(0.75243294, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.075907, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 11095\n",
+ "Discriminator Loss: tf.Tensor(0.6251227, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.45745495, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 11096\n",
+ "Discriminator Loss: tf.Tensor(0.8346343, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.4252505, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 11097\n",
+ "Discriminator Loss: tf.Tensor(0.5514861, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.5829006, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 11098\n",
+ "Discriminator Loss: tf.Tensor(0.92208564, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.4331005, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 11099\n",
+ "Discriminator Loss: tf.Tensor(0.2794639, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.8037235, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 11100\n",
+ "Discriminator Loss: tf.Tensor(0.44465035, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.684448, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 11101\n",
+ "Discriminator Loss: tf.Tensor(0.65132785, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.59081584, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 11102\n",
+ "Discriminator Loss: tf.Tensor(1.6609347, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(3.3491125, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 11103\n",
+ "Discriminator Loss: tf.Tensor(0.30166197, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.99991757, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 11104\n",
+ "Discriminator Loss: tf.Tensor(0.48025715, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.8142796, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 11105\n",
+ "Discriminator Loss: tf.Tensor(1.1673534, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.13564563, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 11106\n",
+ "Discriminator Loss: tf.Tensor(0.6954373, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.5915446, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 11107\n",
+ "Discriminator Loss: tf.Tensor(0.46136346, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.87194633, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 11108\n",
+ "Discriminator Loss: tf.Tensor(1.0401714, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(3.2713516, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 11109\n",
+ "Discriminator Loss: tf.Tensor(0.3948657, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.9947093, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 11110\n",
+ "Discriminator Loss: tf.Tensor(0.4794104, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.1355774, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 11111\n",
+ "Discriminator Loss: tf.Tensor(0.37738347, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.65163565, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 11112\n",
+ "Discriminator Loss: tf.Tensor(0.5092727, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.7336035, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 11113\n",
+ "Discriminator Loss: tf.Tensor(0.23719576, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.3937243, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 11114\n",
+ "Discriminator Loss: tf.Tensor(1.3825514, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.13189197, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 11115\n",
+ "Discriminator Loss: tf.Tensor(0.95483935, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.5599978, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 11116\n",
+ "Discriminator Loss: tf.Tensor(0.36331752, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.7839367, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 11117\n",
+ "Discriminator Loss: tf.Tensor(1.1291673, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.8364532, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 11118\n",
+ "Discriminator Loss: tf.Tensor(1.741933, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.59591216, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 11119\n",
+ "Discriminator Loss: tf.Tensor(0.93560344, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.835039, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 11120\n",
+ "Discriminator Loss: tf.Tensor(1.3227206, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.11223156, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 11121\n",
+ "Discriminator Loss: tf.Tensor(0.7966955, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.1868818, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 11122\n",
+ "Discriminator Loss: tf.Tensor(0.8383429, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.3176631, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 11123\n",
+ "Discriminator Loss: tf.Tensor(0.8292036, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.5556133, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 11124\n",
+ "Discriminator Loss: tf.Tensor(0.21091256, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.8954055, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 11125\n",
+ "Discriminator Loss: tf.Tensor(0.73196983, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(3.3236644, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 11126\n",
+ "Discriminator Loss: tf.Tensor(0.3314795, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.6101154, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 11127\n",
+ "Discriminator Loss: tf.Tensor(0.73291916, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.42046466, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 11128\n",
+ "Discriminator Loss: tf.Tensor(0.9791962, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(3.239846, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 11129\n",
+ "Discriminator Loss: tf.Tensor(0.08716006, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.1275008, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 11130\n",
+ "Discriminator Loss: tf.Tensor(82.60029, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.28113553, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 11131\n",
+ "Discriminator Loss: tf.Tensor(18.061375, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.018390847, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 11132\n",
+ "Discriminator Loss: tf.Tensor(8.97856, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.10122353, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 11133\n",
+ "Discriminator Loss: tf.Tensor(6.0039473, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.07489777, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 11134\n",
+ "Discriminator Loss: tf.Tensor(4.3241262, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.097938985, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 11135\n",
+ "Discriminator Loss: tf.Tensor(3.5474176, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.13482863, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 11136\n",
+ "Discriminator Loss: tf.Tensor(4.1608286, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.18604481, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 11137\n",
+ "Discriminator Loss: tf.Tensor(3.1486998, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.16263716, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 11138\n",
+ "Discriminator Loss: tf.Tensor(2.9680934, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.2541202, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 11139\n",
+ "Discriminator Loss: tf.Tensor(2.673937, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.28411302, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 11140\n",
+ "Discriminator Loss: tf.Tensor(2.7300317, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.33368507, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 11141\n",
+ "Discriminator Loss: tf.Tensor(2.624515, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.37252453, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 11142\n",
+ "Discriminator Loss: tf.Tensor(2.5529876, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.40866402, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 11143\n",
+ "Discriminator Loss: tf.Tensor(2.4555302, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.43902192, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 11144\n",
+ "Discriminator Loss: tf.Tensor(2.313049, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.46776083, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 11145\n",
+ "Discriminator Loss: tf.Tensor(2.269413, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.48811403, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 11146\n",
+ "Discriminator Loss: tf.Tensor(2.1474981, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.521864, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 11147\n",
+ "Discriminator Loss: tf.Tensor(2.0688274, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.53121895, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 11148\n",
+ "Discriminator Loss: tf.Tensor(2.0788429, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.58655566, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 11149\n",
+ "Discriminator Loss: tf.Tensor(2.0381846, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.5693729, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 11150\n",
+ "Discriminator Loss: tf.Tensor(2.0109482, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.6098104, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 11151\n",
+ "Discriminator Loss: tf.Tensor(1.9380844, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.62297815, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 11152\n",
+ "Discriminator Loss: tf.Tensor(1.9170886, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.64555806, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 11153\n",
+ "Discriminator Loss: tf.Tensor(1.9340678, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.6643852, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 11154\n",
+ "Discriminator Loss: tf.Tensor(1.8776697, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.6291884, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 11155\n",
+ "Discriminator Loss: tf.Tensor(1.8595984, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.7187915, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 11156\n",
+ "Discriminator Loss: tf.Tensor(1.8559453, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.6601946, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 11157\n",
+ "Discriminator Loss: tf.Tensor(1.8788197, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.7555172, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 11158\n",
+ "Discriminator Loss: tf.Tensor(1.8187414, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.674064, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 11159\n",
+ "Discriminator Loss: tf.Tensor(1.8693386, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.7932388, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 11160\n",
+ "Discriminator Loss: tf.Tensor(1.6874998, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.7914245, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 11161\n",
+ "Discriminator Loss: tf.Tensor(1.8286613, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.90327454, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 11162\n",
+ "Discriminator Loss: tf.Tensor(1.7291563, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.8572146, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 11163\n",
+ "Discriminator Loss: tf.Tensor(1.8476436, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.0518097, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 11164\n",
+ "Discriminator Loss: tf.Tensor(2.0264037, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.16039829, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 11165\n",
+ "Discriminator Loss: tf.Tensor(1.659533, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.15419431, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 11166\n",
+ "Discriminator Loss: tf.Tensor(1.5468462, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.14606188, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 11167\n",
+ "Discriminator Loss: tf.Tensor(1.4980574, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.15467893, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 11168\n",
+ "Discriminator Loss: tf.Tensor(2.1920848, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.09584397, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 11169\n",
+ "Discriminator Loss: tf.Tensor(1.8742393, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.36675748, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 11170\n",
+ "Discriminator Loss: tf.Tensor(1.4856784, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.62289625, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 11171\n",
+ "Discriminator Loss: tf.Tensor(1.3579098, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.7523213, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 11172\n",
+ "Discriminator Loss: tf.Tensor(1.3565168, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.9216435, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 11173\n",
+ "Discriminator Loss: tf.Tensor(1.8738968, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.24656503, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 11174\n",
+ "Discriminator Loss: tf.Tensor(1.806642, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.88622046, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 11175\n",
+ "Discriminator Loss: tf.Tensor(1.4245526, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.0155236, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 11176\n",
+ "Discriminator Loss: tf.Tensor(1.6081278, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.34120658, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 11177\n",
+ "Discriminator Loss: tf.Tensor(1.3933533, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.030760663, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 11178\n",
+ "Discriminator Loss: tf.Tensor(1.3228123, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.2036409, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 11179\n",
+ "Discriminator Loss: tf.Tensor(1.3277873, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.22445834, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 11180\n",
+ "Discriminator Loss: tf.Tensor(1.371652, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.81624365, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 11181\n",
+ "Discriminator Loss: tf.Tensor(1.0905935, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.6084015, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 11182\n",
+ "Discriminator Loss: tf.Tensor(1.5324612, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.5061727, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 11183\n",
+ "Discriminator Loss: tf.Tensor(2.2066398, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-1.1187663, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 11184\n",
+ "Discriminator Loss: tf.Tensor(1.4244878, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.499231, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 11185\n",
+ "Discriminator Loss: tf.Tensor(1.1245651, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.5874417, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 11186\n",
+ "Discriminator Loss: tf.Tensor(0.80720514, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.1126224, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 11187\n",
+ "Discriminator Loss: tf.Tensor(1.6235573, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.5699662, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 11188\n",
+ "Discriminator Loss: tf.Tensor(0.8047493, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.85160726, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 11189\n",
+ "Discriminator Loss: tf.Tensor(0.3299239, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.3020371, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 11190\n",
+ "Discriminator Loss: tf.Tensor(1.1960515, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.061625797, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 11191\n",
+ "Discriminator Loss: tf.Tensor(0.7668532, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.38104, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 11192\n",
+ "Discriminator Loss: tf.Tensor(0.8057096, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.22092013, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 11193\n",
+ "Discriminator Loss: tf.Tensor(0.66271484, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.2930295, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 11194\n",
+ "Discriminator Loss: tf.Tensor(1.8440174, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.7262729, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 11195\n",
+ "Discriminator Loss: tf.Tensor(0.69689673, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.89391595, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 11196\n",
+ "Discriminator Loss: tf.Tensor(0.7199676, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.2634735, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 11197\n",
+ "Discriminator Loss: tf.Tensor(1.5737779, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.51798624, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 11198\n",
+ "Discriminator Loss: tf.Tensor(0.96584594, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.1436418, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 11199\n",
+ "Discriminator Loss: tf.Tensor(1.2003983, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.15719669, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 11200\n",
+ "Discriminator Loss: tf.Tensor(0.19550034, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.1360308, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 11201\n",
+ "Discriminator Loss: tf.Tensor(0.78400075, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.23172195, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 11202\n",
+ "Discriminator Loss: tf.Tensor(0.5626526, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.8677107, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 11203\n",
+ "Discriminator Loss: tf.Tensor(0.49604663, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.81890255, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 11204\n",
+ "Discriminator Loss: tf.Tensor(0.5059582, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.8537909, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 11205\n",
+ "Discriminator Loss: tf.Tensor(1.1837916, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.09454465, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 11206\n",
+ "Discriminator Loss: tf.Tensor(0.74109524, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.0449548, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 11207\n",
+ "Discriminator Loss: tf.Tensor(0.30942997, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.7860911, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 11208\n",
+ "Discriminator Loss: tf.Tensor(0.82992446, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.975054, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 11209\n",
+ "Discriminator Loss: tf.Tensor(0.8206812, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.4978408, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 11210\n",
+ "Discriminator Loss: tf.Tensor(0.5420207, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.3841033, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 11211\n",
+ "Discriminator Loss: tf.Tensor(1.560864, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.47872743, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 11212\n",
+ "Discriminator Loss: tf.Tensor(0.9224923, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.5455396, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 11213\n",
+ "Discriminator Loss: tf.Tensor(0.66807806, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.47186506, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 11214\n",
+ "Discriminator Loss: tf.Tensor(0.840894, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.6313677, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 11215\n",
+ "Discriminator Loss: tf.Tensor(0.7043241, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.355685, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 11216\n",
+ "Discriminator Loss: tf.Tensor(0.75427306, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.1935647, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 11217\n",
+ "Discriminator Loss: tf.Tensor(0.5536476, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.5371721, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 11218\n",
+ "Discriminator Loss: tf.Tensor(1.3525051, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.7244682, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 11219\n",
+ "Discriminator Loss: tf.Tensor(0.39136097, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.77045506, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 11220\n",
+ "Discriminator Loss: tf.Tensor(1.0001905, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.7381322, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 11221\n",
+ "Discriminator Loss: tf.Tensor(0.48076186, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.56596893, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 11222\n",
+ "Discriminator Loss: tf.Tensor(0.7107951, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.6451175, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 11223\n",
+ "Discriminator Loss: tf.Tensor(0.5075966, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.51719385, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 11224\n",
+ "Discriminator Loss: tf.Tensor(0.72001475, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(3.4497283, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 11225\n",
+ "Discriminator Loss: tf.Tensor(0.4517107, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.3712281, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 11226\n",
+ "Discriminator Loss: tf.Tensor(2.08209, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-1.065747, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 11227\n",
+ "Discriminator Loss: tf.Tensor(0.54368097, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.805469, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 11228\n",
+ "Discriminator Loss: tf.Tensor(0.6355917, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.63758475, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 11229\n",
+ "Discriminator Loss: tf.Tensor(0.39275515, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.5053658, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 11230\n",
+ "Discriminator Loss: tf.Tensor(0.268897, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.3175389, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 11231\n",
+ "Discriminator Loss: tf.Tensor(0.77412504, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.63691777, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 11232\n",
+ "Discriminator Loss: tf.Tensor(0.9348749, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.7788284, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 11233\n",
+ "Discriminator Loss: tf.Tensor(1.0071902, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.21902983, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 11234\n",
+ "Discriminator Loss: tf.Tensor(0.8660425, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.2038016, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 11235\n",
+ "Discriminator Loss: tf.Tensor(2.048573, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-1.0319923, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 11236\n",
+ "Discriminator Loss: tf.Tensor(0.8285539, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.7183836, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 11237\n",
+ "Discriminator Loss: tf.Tensor(1.1122063, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.9942722, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 11238\n",
+ "Discriminator Loss: tf.Tensor(1.3540497, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.23453753, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 11239\n",
+ "Discriminator Loss: tf.Tensor(0.8148559, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.0911915, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 11240\n",
+ "Discriminator Loss: tf.Tensor(1.0826659, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.026362425, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 11241\n",
+ "Discriminator Loss: tf.Tensor(0.87379193, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.0055244, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 11242\n",
+ "Discriminator Loss: tf.Tensor(0.82355326, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.21852122, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 11243\n",
+ "Discriminator Loss: tf.Tensor(0.5755987, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.0715697, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 11244\n",
+ "Discriminator Loss: tf.Tensor(0.13773613, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.88509035, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 11245\n",
+ "Discriminator Loss: tf.Tensor(0.606063, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.8901684, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 11246\n",
+ "Discriminator Loss: tf.Tensor(0.82897574, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.44582295, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 11247\n",
+ "Discriminator Loss: tf.Tensor(0.64958125, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.589925, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 11248\n",
+ "Discriminator Loss: tf.Tensor(0.9186322, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.4334985, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 11249\n",
+ "Discriminator Loss: tf.Tensor(1.5488544, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(3.201978, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 11250\n",
+ "Discriminator Loss: tf.Tensor(0.52961886, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.6883591, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 11251\n",
+ "Discriminator Loss: tf.Tensor(0.84869236, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.8876908, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 11252\n",
+ "Discriminator Loss: tf.Tensor(0.22882357, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.1380348, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 11253\n",
+ "Discriminator Loss: tf.Tensor(1.0619247, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.03293844, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 11254\n",
+ "Discriminator Loss: tf.Tensor(1.0141886, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.695596, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 11255\n",
+ "Discriminator Loss: tf.Tensor(0.36691007, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.762275, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 11256\n",
+ "Discriminator Loss: tf.Tensor(1.050956, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(3.1089718, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 11257\n",
+ "Discriminator Loss: tf.Tensor(0.37325418, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.1629375, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 11258\n",
+ "Discriminator Loss: tf.Tensor(0.9242336, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.11200205, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 11259\n",
+ "Discriminator Loss: tf.Tensor(0.96736383, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(3.0025291, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 11260\n",
+ "Discriminator Loss: tf.Tensor(0.25524092, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.2915988, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 11261\n",
+ "Discriminator Loss: tf.Tensor(0.81070375, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.2733064, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 11262\n",
+ "Discriminator Loss: tf.Tensor(0.7016169, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.567851, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 11263\n",
+ "Discriminator Loss: tf.Tensor(0.23068629, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.4033661, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 11264\n",
+ "Discriminator Loss: tf.Tensor(0.730981, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.38478765, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 11265\n",
+ "Discriminator Loss: tf.Tensor(0.44714135, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.6365058, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 11266\n",
+ "Discriminator Loss: tf.Tensor(0.27622437, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.8308923, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 11267\n",
+ "Discriminator Loss: tf.Tensor(1.3395182, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(3.1359046, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 11268\n",
+ "Discriminator Loss: tf.Tensor(0.8205459, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.26371807, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 11269\n",
+ "Discriminator Loss: tf.Tensor(0.9431362, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.4738126, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 11270\n",
+ "Discriminator Loss: tf.Tensor(0.8033795, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.48181748, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 11271\n",
+ "Discriminator Loss: tf.Tensor(0.7967533, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.9762518, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 11272\n",
+ "Discriminator Loss: tf.Tensor(0.97481287, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.51810426, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 11273\n",
+ "Discriminator Loss: tf.Tensor(0.18117839, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.6509922, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 11274\n",
+ "Discriminator Loss: tf.Tensor(0.7334589, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.8850932, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 11275\n",
+ "Discriminator Loss: tf.Tensor(0.8673856, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(3.1726627, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 11276\n",
+ "Discriminator Loss: tf.Tensor(1.2341566, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.17202866, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 11277\n",
+ "Discriminator Loss: tf.Tensor(0.508891, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.2757034, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 11278\n",
+ "Discriminator Loss: tf.Tensor(0.47749934, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.7577564, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 11279\n",
+ "Discriminator Loss: tf.Tensor(1.3967335, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(3.2299366, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 11280\n",
+ "Discriminator Loss: tf.Tensor(0.45958602, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.6888245, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 11281\n",
+ "Discriminator Loss: tf.Tensor(0.73222244, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.8450077, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 11282\n",
+ "Discriminator Loss: tf.Tensor(0.33631024, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.4633069, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 11283\n",
+ "Discriminator Loss: tf.Tensor(0.75692886, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.37872425, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 11284\n",
+ "Discriminator Loss: tf.Tensor(0.803722, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.6891773, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 11285\n",
+ "Discriminator Loss: tf.Tensor(0.505728, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.3262256, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 11286\n",
+ "Discriminator Loss: tf.Tensor(1.350717, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.31937072, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 11287\n",
+ "Discriminator Loss: tf.Tensor(1.0742244, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.3975875, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 11288\n",
+ "Discriminator Loss: tf.Tensor(1.9064683, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.6013903, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 11289\n",
+ "Discriminator Loss: tf.Tensor(0.37242013, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.4070687, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 11290\n",
+ "Discriminator Loss: tf.Tensor(1.128641, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.03088797, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 11291\n",
+ "Discriminator Loss: tf.Tensor(0.82543194, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.294455, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 11292\n",
+ "Discriminator Loss: tf.Tensor(0.9386304, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.3720654, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 11293\n",
+ "Discriminator Loss: tf.Tensor(0.80747426, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.1856325, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 11294\n",
+ "Discriminator Loss: tf.Tensor(0.5626731, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.46981728, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 11295\n",
+ "Discriminator Loss: tf.Tensor(0.665255, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.7157633, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 11296\n",
+ "Discriminator Loss: tf.Tensor(0.03844309, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.3696432, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 11297\n",
+ "Discriminator Loss: tf.Tensor(1.2949638, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.30768463, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 11298\n",
+ "Discriminator Loss: tf.Tensor(2.1002064, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.87549, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 11299\n",
+ "Discriminator Loss: tf.Tensor(0.8887549, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.41202852, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 11300\n",
+ "Discriminator Loss: tf.Tensor(0.84104216, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.8456515, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 11301\n",
+ "Discriminator Loss: tf.Tensor(0.6017095, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.78153354, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 11302\n",
+ "Discriminator Loss: tf.Tensor(0.90912247, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.0188863, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 11303\n",
+ "Discriminator Loss: tf.Tensor(0.43953973, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.6374284, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 11304\n",
+ "Discriminator Loss: tf.Tensor(1.3882668, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.3287961, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 11305\n",
+ "Discriminator Loss: tf.Tensor(0.8325253, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.39649713, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 11306\n",
+ "Discriminator Loss: tf.Tensor(0.8842181, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.5725738, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 11307\n",
+ "Discriminator Loss: tf.Tensor(1.1606451, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.1527787, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 11308\n",
+ "Discriminator Loss: tf.Tensor(0.60468453, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.6147846, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 11309\n",
+ "Discriminator Loss: tf.Tensor(0.5729798, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.5747264, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 11310\n",
+ "Discriminator Loss: tf.Tensor(0.6637242, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.0235755, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 11311\n",
+ "Discriminator Loss: tf.Tensor(0.58569396, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.58190924, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 11312\n",
+ "Discriminator Loss: tf.Tensor(0.80071557, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.8574638, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 11313\n",
+ "Discriminator Loss: tf.Tensor(0.20840019, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.0239185, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 11314\n",
+ "Discriminator Loss: tf.Tensor(0.27932936, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.2031926, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 11315\n",
+ "Discriminator Loss: tf.Tensor(0.957171, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.08753117, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 11316\n",
+ "Discriminator Loss: tf.Tensor(1.7454612, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.6605957, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 11317\n",
+ "Discriminator Loss: tf.Tensor(1.2859538, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.074597836, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 11318\n",
+ "Discriminator Loss: tf.Tensor(0.3632182, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.4866209, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 11319\n",
+ "Discriminator Loss: tf.Tensor(0.9113504, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.28165802, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 11320\n",
+ "Discriminator Loss: tf.Tensor(1.1674067, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.6060526, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 11321\n",
+ "Discriminator Loss: tf.Tensor(0.31288183, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.8361554, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 11322\n",
+ "Discriminator Loss: tf.Tensor(0.30317098, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.5315716, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 11323\n",
+ "Discriminator Loss: tf.Tensor(0.2484071, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.3434356, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 11324\n",
+ "Discriminator Loss: tf.Tensor(0.67836714, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.41184258, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 11325\n",
+ "Discriminator Loss: tf.Tensor(1.4187353, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.600266, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 11326\n",
+ "Discriminator Loss: tf.Tensor(0.6342172, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.4577277, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 11327\n",
+ "Discriminator Loss: tf.Tensor(0.7880987, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.1772768, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 11328\n",
+ "Discriminator Loss: tf.Tensor(0.35683158, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.7893254, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 11329\n",
+ "Discriminator Loss: tf.Tensor(1.021046, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(3.0913744, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 11330\n",
+ "Discriminator Loss: tf.Tensor(0.94264036, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.38285133, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 11331\n",
+ "Discriminator Loss: tf.Tensor(0.38216937, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.723304, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 11332\n",
+ "Discriminator Loss: tf.Tensor(0.10584865, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.0401002, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 11333\n",
+ "Discriminator Loss: tf.Tensor(1.0534717, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.906231, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 11334\n",
+ "Discriminator Loss: tf.Tensor(0.94776237, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.10238269, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 11335\n",
+ "Discriminator Loss: tf.Tensor(1.1413491, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.3474648, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 11336\n",
+ "Discriminator Loss: tf.Tensor(0.47602648, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.5510008, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 11337\n",
+ "Discriminator Loss: tf.Tensor(0.88784707, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.5400364, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 11338\n",
+ "Discriminator Loss: tf.Tensor(0.45105746, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.2571493, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 11339\n",
+ "Discriminator Loss: tf.Tensor(1.4112319, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.11707667, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 11340\n",
+ "Discriminator Loss: tf.Tensor(0.66547096, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.9613742, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 11341\n",
+ "Discriminator Loss: tf.Tensor(0.34803247, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.80738115, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 11342\n",
+ "Discriminator Loss: tf.Tensor(0.95492697, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.534241, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 11343\n",
+ "Discriminator Loss: tf.Tensor(0.39164633, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.6324339, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 11344\n",
+ "Discriminator Loss: tf.Tensor(1.0747722, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.5064123, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 11345\n",
+ "Discriminator Loss: tf.Tensor(0.46203172, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.103527, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 11346\n",
+ "Discriminator Loss: tf.Tensor(1.0789598, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.112869255, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 11347\n",
+ "Discriminator Loss: tf.Tensor(0.802216, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.188269, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 11348\n",
+ "Discriminator Loss: tf.Tensor(0.50084186, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.671679, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 11349\n",
+ "Discriminator Loss: tf.Tensor(0.61929303, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.3552825, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 11350\n",
+ "Discriminator Loss: tf.Tensor(0.34092757, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.1807698, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 11351\n",
+ "Discriminator Loss: tf.Tensor(0.92251223, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.22817212, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 11352\n",
+ "Discriminator Loss: tf.Tensor(0.1875366, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.7441276, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 11353\n",
+ "Discriminator Loss: tf.Tensor(1.2489682, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.016856015, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 11354\n",
+ "Discriminator Loss: tf.Tensor(1.469807, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.1427958, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 11355\n",
+ "Discriminator Loss: tf.Tensor(1.0440995, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.2772052, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 11356\n",
+ "Discriminator Loss: tf.Tensor(0.40990564, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.8215437, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 11357\n",
+ "Discriminator Loss: tf.Tensor(0.7727341, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.62601465, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 11358\n",
+ "Discriminator Loss: tf.Tensor(1.5112709, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.4215715, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 11359\n",
+ "Discriminator Loss: tf.Tensor(0.93183863, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.1952911, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 11360\n",
+ "Discriminator Loss: tf.Tensor(0.52762514, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.199369, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 11361\n",
+ "Discriminator Loss: tf.Tensor(0.6490449, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.46826974, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 11362\n",
+ "Discriminator Loss: tf.Tensor(1.7373142, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(3.197936, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 11363\n",
+ "Discriminator Loss: tf.Tensor(0.46621776, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.8007142, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 11364\n",
+ "Discriminator Loss: tf.Tensor(0.7662929, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.6983707, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 11365\n",
+ "Discriminator Loss: tf.Tensor(0.8236287, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.25140947, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 11366\n",
+ "Discriminator Loss: tf.Tensor(1.0902908, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.9453952, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 11367\n",
+ "Discriminator Loss: tf.Tensor(0.20769888, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.2412726, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 11368\n",
+ "Discriminator Loss: tf.Tensor(0.51497805, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.57524806, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 11369\n",
+ "Discriminator Loss: tf.Tensor(1.2290294, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(3.1851654, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 11370\n",
+ "Discriminator Loss: tf.Tensor(1.5665046, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.4891663, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 11371\n",
+ "Discriminator Loss: tf.Tensor(0.6567315, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.9885097, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 11372\n",
+ "Discriminator Loss: tf.Tensor(0.33142468, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.7863829, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 11373\n",
+ "Discriminator Loss: tf.Tensor(0.862677, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.8805397, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 11374\n",
+ "Discriminator Loss: tf.Tensor(0.9326331, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.28658924, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 11375\n",
+ "Discriminator Loss: tf.Tensor(0.7076073, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.6979475, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 11376\n",
+ "Discriminator Loss: tf.Tensor(2.306139, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-1.2742529, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 11377\n",
+ "Discriminator Loss: tf.Tensor(0.8249526, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.44885275, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 11378\n",
+ "Discriminator Loss: tf.Tensor(0.93667006, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(3.1223793, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 11379\n",
+ "Discriminator Loss: tf.Tensor(0.5325122, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.5414138, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 11380\n",
+ "Discriminator Loss: tf.Tensor(0.6180175, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.9346516, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 11381\n",
+ "Discriminator Loss: tf.Tensor(0.16730824, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.2313966, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 11382\n",
+ "Discriminator Loss: tf.Tensor(1.1913865, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.027233629, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 11383\n",
+ "Discriminator Loss: tf.Tensor(0.6107888, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.1402113, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 11384\n",
+ "Discriminator Loss: tf.Tensor(0.17107563, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.88506824, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 11385\n",
+ "Discriminator Loss: tf.Tensor(0.8995395, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(3.144228, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 11386\n",
+ "Discriminator Loss: tf.Tensor(0.45526, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.4579769, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 11387\n",
+ "Discriminator Loss: tf.Tensor(0.91095805, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.24190105, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 11388\n",
+ "Discriminator Loss: tf.Tensor(1.1787163, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.4412835, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 11389\n",
+ "Discriminator Loss: tf.Tensor(0.24828139, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.96691257, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 11390\n",
+ "Discriminator Loss: tf.Tensor(0.9064749, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.7909555, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 11391\n",
+ "Discriminator Loss: tf.Tensor(0.12497549, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.3228744, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 11392\n",
+ "Discriminator Loss: tf.Tensor(0.671368, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.4276407, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 11393\n",
+ "Discriminator Loss: tf.Tensor(1.2481337, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(3.2045047, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 11394\n",
+ "Discriminator Loss: tf.Tensor(0.25734723, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.8700418, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 11395\n",
+ "Discriminator Loss: tf.Tensor(1.1265719, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(3.61284, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 11396\n",
+ "Discriminator Loss: tf.Tensor(1.0827714, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.09085584, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 11397\n",
+ "Discriminator Loss: tf.Tensor(1.2595717, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(3.3193, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 11398\n",
+ "Discriminator Loss: tf.Tensor(0.28012916, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.86423284, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 11399\n",
+ "Discriminator Loss: tf.Tensor(0.937414, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(3.4499397, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 11400\n",
+ "Discriminator Loss: tf.Tensor(0.23244388, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.3116608, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 11401\n",
+ "Discriminator Loss: tf.Tensor(1.0332057, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.010245689, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 11402\n",
+ "Discriminator Loss: tf.Tensor(1.0310559, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(3.0481768, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 11403\n",
+ "Discriminator Loss: tf.Tensor(0.3818465, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.94816226, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 11404\n",
+ "Discriminator Loss: tf.Tensor(0.5449703, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.716748, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 11405\n",
+ "Discriminator Loss: tf.Tensor(0.14547914, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.0951939, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 11406\n",
+ "Discriminator Loss: tf.Tensor(1.1762972, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.02004565, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 11407\n",
+ "Discriminator Loss: tf.Tensor(1.6988261, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(3.595394, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 11408\n",
+ "Discriminator Loss: tf.Tensor(0.63141924, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.2731038, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 11409\n",
+ "Discriminator Loss: tf.Tensor(1.3717796, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.28779325, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 11410\n",
+ "Discriminator Loss: tf.Tensor(0.83803046, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.6889524, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 11411\n",
+ "Discriminator Loss: tf.Tensor(0.8993898, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.5399136, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 11412\n",
+ "Discriminator Loss: tf.Tensor(0.69346094, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.8707672, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 11413\n",
+ "Discriminator Loss: tf.Tensor(0.4562612, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.916032, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 11414\n",
+ "Discriminator Loss: tf.Tensor(1.1397805, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.757107, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 11415\n",
+ "Discriminator Loss: tf.Tensor(0.27201676, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.8361504, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 11416\n",
+ "Discriminator Loss: tf.Tensor(0.7696436, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.2332208, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 11417\n",
+ "Discriminator Loss: tf.Tensor(0.16078448, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.0847825, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 11418\n",
+ "Discriminator Loss: tf.Tensor(0.11250055, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.9205558, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 11419\n",
+ "Discriminator Loss: tf.Tensor(1.8528718, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(3.3105614, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 11420\n",
+ "Discriminator Loss: tf.Tensor(0.6545352, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.7485185, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 11421\n",
+ "Discriminator Loss: tf.Tensor(0.4344927, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.0713253, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 11422\n",
+ "Discriminator Loss: tf.Tensor(0.21535099, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.1841239, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 11423\n",
+ "Discriminator Loss: tf.Tensor(1.0104394, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.15133624, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 11424\n",
+ "Discriminator Loss: tf.Tensor(0.608239, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.9021403, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 11425\n",
+ "Discriminator Loss: tf.Tensor(1.2096941, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.14877868, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 11426\n",
+ "Discriminator Loss: tf.Tensor(0.9571307, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.080219, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 11427\n",
+ "Discriminator Loss: tf.Tensor(1.2488395, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.17705591, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 11428\n",
+ "Discriminator Loss: tf.Tensor(1.3121765, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.8731478, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 11429\n",
+ "Discriminator Loss: tf.Tensor(1.0967299, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.08429638, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 11430\n",
+ "Discriminator Loss: tf.Tensor(0.45479923, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.5182967, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 11431\n",
+ "Discriminator Loss: tf.Tensor(0.6281223, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.451759, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 11432\n",
+ "Discriminator Loss: tf.Tensor(0.84849405, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.174445, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 11433\n",
+ "Discriminator Loss: tf.Tensor(0.7057325, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.4244187, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 11434\n",
+ "Discriminator Loss: tf.Tensor(0.70989025, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.7195107, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 11435\n",
+ "Discriminator Loss: tf.Tensor(0.52808094, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.7599829, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 11436\n",
+ "Discriminator Loss: tf.Tensor(0.561015, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.7187932, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 11437\n",
+ "Discriminator Loss: tf.Tensor(0.50907946, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.6823468, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 11438\n",
+ "Discriminator Loss: tf.Tensor(0.68956554, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.46362475, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 11439\n",
+ "Discriminator Loss: tf.Tensor(0.7268521, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.4980059, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 11440\n",
+ "Discriminator Loss: tf.Tensor(0.3397377, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.84391946, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 11441\n",
+ "Discriminator Loss: tf.Tensor(0.8698615, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.6931982, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 11442\n",
+ "Discriminator Loss: tf.Tensor(0.57859176, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.66592723, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 11443\n",
+ "Discriminator Loss: tf.Tensor(0.32893363, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.598592, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 11444\n",
+ "Discriminator Loss: tf.Tensor(0.7618712, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.4951073, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 11445\n",
+ "Discriminator Loss: tf.Tensor(1.1638763, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.13332754, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 11446\n",
+ "Discriminator Loss: tf.Tensor(0.51870847, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.1663227, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 11447\n",
+ "Discriminator Loss: tf.Tensor(0.3459075, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.7878208, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 11448\n",
+ "Discriminator Loss: tf.Tensor(0.69193393, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(3.3788493, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 11449\n",
+ "Discriminator Loss: tf.Tensor(0.031457394, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.1054038, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 11450\n",
+ "Discriminator Loss: tf.Tensor(60.541542, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.37148508, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 11451\n",
+ "Discriminator Loss: tf.Tensor(39.446682, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.23113024, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 11452\n",
+ "Discriminator Loss: tf.Tensor(14.358801, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.40433183, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 11453\n",
+ "Discriminator Loss: tf.Tensor(7.0553985, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.39889613, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 11454\n",
+ "Discriminator Loss: tf.Tensor(4.872992, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.4229392, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 11455\n",
+ "Discriminator Loss: tf.Tensor(3.9417522, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.44982612, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 11456\n",
+ "Discriminator Loss: tf.Tensor(3.3266902, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.46057037, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 11457\n",
+ "Discriminator Loss: tf.Tensor(3.06411, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.46770835, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 11458\n",
+ "Discriminator Loss: tf.Tensor(2.7385468, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.49589753, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 11459\n",
+ "Discriminator Loss: tf.Tensor(2.643065, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.4743072, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 11460\n",
+ "Discriminator Loss: tf.Tensor(2.3217926, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.44525862, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 11461\n",
+ "Discriminator Loss: tf.Tensor(2.5317924, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.40450752, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 11462\n",
+ "Discriminator Loss: tf.Tensor(2.3814063, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.3917184, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 11463\n",
+ "Discriminator Loss: tf.Tensor(2.488419, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.38727465, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 11464\n",
+ "Discriminator Loss: tf.Tensor(2.416371, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.39308417, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 11465\n",
+ "Discriminator Loss: tf.Tensor(2.2378335, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.3998593, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 11466\n",
+ "Discriminator Loss: tf.Tensor(2.1196387, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.411281, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 11467\n",
+ "Discriminator Loss: tf.Tensor(2.2760966, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.40836048, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 11468\n",
+ "Discriminator Loss: tf.Tensor(2.2159128, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.43373194, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 11469\n",
+ "Discriminator Loss: tf.Tensor(2.2029624, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.4484918, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 11470\n",
+ "Discriminator Loss: tf.Tensor(2.1146016, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.49281934, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 11471\n",
+ "Discriminator Loss: tf.Tensor(2.1700022, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.51217693, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 11472\n",
+ "Discriminator Loss: tf.Tensor(2.055578, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.5255702, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 11473\n",
+ "Discriminator Loss: tf.Tensor(2.0140896, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.54977155, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 11474\n",
+ "Discriminator Loss: tf.Tensor(2.050777, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.53865045, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 11475\n",
+ "Discriminator Loss: tf.Tensor(1.9983547, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.5428584, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 11476\n",
+ "Discriminator Loss: tf.Tensor(2.0070305, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.527962, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 11477\n",
+ "Discriminator Loss: tf.Tensor(1.9632175, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.54486895, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 11478\n",
+ "Discriminator Loss: tf.Tensor(1.9147692, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.5342806, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 11479\n",
+ "Discriminator Loss: tf.Tensor(1.9076904, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.5126377, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 11480\n",
+ "Discriminator Loss: tf.Tensor(1.786335, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.5893716, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 11481\n",
+ "Discriminator Loss: tf.Tensor(1.7075237, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.6484127, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 11482\n",
+ "Discriminator Loss: tf.Tensor(1.6991504, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.58197063, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 11483\n",
+ "Discriminator Loss: tf.Tensor(1.7652199, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.44058672, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 11484\n",
+ "Discriminator Loss: tf.Tensor(1.6281532, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.4190127, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 11485\n",
+ "Discriminator Loss: tf.Tensor(1.843586, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.4596366, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 11486\n",
+ "Discriminator Loss: tf.Tensor(1.7563008, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.5531158, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 11487\n",
+ "Discriminator Loss: tf.Tensor(1.7562851, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.5785495, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 11488\n",
+ "Discriminator Loss: tf.Tensor(1.7804437, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.7292893, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 11489\n",
+ "Discriminator Loss: tf.Tensor(1.7252566, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.6035946, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 11490\n",
+ "Discriminator Loss: tf.Tensor(1.5254779, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.78983146, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 11491\n",
+ "Discriminator Loss: tf.Tensor(1.2738793, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.007785, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 11492\n",
+ "Discriminator Loss: tf.Tensor(1.5987395, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.11424152, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 11493\n",
+ "Discriminator Loss: tf.Tensor(1.28095, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.14923503, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 11494\n",
+ "Discriminator Loss: tf.Tensor(1.1498847, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.37415028, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 11495\n",
+ "Discriminator Loss: tf.Tensor(1.4666348, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.4544127, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 11496\n",
+ "Discriminator Loss: tf.Tensor(1.6065121, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.7340753, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 11497\n",
+ "Discriminator Loss: tf.Tensor(1.1974876, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.87857944, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 11498\n",
+ "Discriminator Loss: tf.Tensor(0.8133791, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.0333208, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 11499\n",
+ "Discriminator Loss: tf.Tensor(3.5870821, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-2.332441, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 11500\n",
+ "Discriminator Loss: tf.Tensor(1.740429, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.6108317, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 11501\n",
+ "Discriminator Loss: tf.Tensor(1.3994354, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.87087923, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 11502\n",
+ "Discriminator Loss: tf.Tensor(1.2085657, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.0941051, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 11503\n",
+ "Discriminator Loss: tf.Tensor(1.2577597, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.1517948, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 11504\n",
+ "Discriminator Loss: tf.Tensor(1.0552334, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.2956381, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 11505\n",
+ "Discriminator Loss: tf.Tensor(0.59945977, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.6379612, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 11506\n",
+ "Discriminator Loss: tf.Tensor(0.796684, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.4221324, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 11507\n",
+ "Discriminator Loss: tf.Tensor(1.0811759, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.07117131, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 11508\n",
+ "Discriminator Loss: tf.Tensor(0.75999385, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.93811804, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 11509\n",
+ "Discriminator Loss: tf.Tensor(0.5962194, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.89178365, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 11510\n",
+ "Discriminator Loss: tf.Tensor(1.4146436, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.219227, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 11511\n",
+ "Discriminator Loss: tf.Tensor(1.4052374, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.23332293, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 11512\n",
+ "Discriminator Loss: tf.Tensor(1.0057565, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.1698712, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 11513\n",
+ "Discriminator Loss: tf.Tensor(1.4182423, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.122920096, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 11514\n",
+ "Discriminator Loss: tf.Tensor(0.70174676, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.8595221, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 11515\n",
+ "Discriminator Loss: tf.Tensor(0.62908506, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.5140232, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 11516\n",
+ "Discriminator Loss: tf.Tensor(1.558682, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.49823913, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 11517\n",
+ "Discriminator Loss: tf.Tensor(0.77524793, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.92390174, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 11518\n",
+ "Discriminator Loss: tf.Tensor(0.8528345, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.3668814, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 11519\n",
+ "Discriminator Loss: tf.Tensor(1.4620538, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.40957746, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 11520\n",
+ "Discriminator Loss: tf.Tensor(0.6753971, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.2639498, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 11521\n",
+ "Discriminator Loss: tf.Tensor(0.7729614, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.25294182, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 11522\n",
+ "Discriminator Loss: tf.Tensor(0.20179431, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.5996424, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 11523\n",
+ "Discriminator Loss: tf.Tensor(1.074496, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.026962793, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 11524\n",
+ "Discriminator Loss: tf.Tensor(0.7022923, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.510199, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 11525\n",
+ "Discriminator Loss: tf.Tensor(0.97310376, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.098369606, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 11526\n",
+ "Discriminator Loss: tf.Tensor(0.69648695, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.6460576, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 11527\n",
+ "Discriminator Loss: tf.Tensor(0.91088223, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.11446395, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 11528\n",
+ "Discriminator Loss: tf.Tensor(1.0508583, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.7794455, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 11529\n",
+ "Discriminator Loss: tf.Tensor(1.9703139, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.8174405, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 11530\n",
+ "Discriminator Loss: tf.Tensor(0.6546137, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.8059146, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 11531\n",
+ "Discriminator Loss: tf.Tensor(0.65003514, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.8910316, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 11532\n",
+ "Discriminator Loss: tf.Tensor(1.2172134, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.07859256, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 11533\n",
+ "Discriminator Loss: tf.Tensor(0.6240886, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.977047, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 11534\n",
+ "Discriminator Loss: tf.Tensor(0.48128816, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.8082176, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 11535\n",
+ "Discriminator Loss: tf.Tensor(0.47563714, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.5627475, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 11536\n",
+ "Discriminator Loss: tf.Tensor(0.37172496, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.0039736, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 11537\n",
+ "Discriminator Loss: tf.Tensor(0.088862084, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.4130964, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 11538\n",
+ "Discriminator Loss: tf.Tensor(1.5721557, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.6651518, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 11539\n",
+ "Discriminator Loss: tf.Tensor(1.6453133, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.2820044, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 11540\n",
+ "Discriminator Loss: tf.Tensor(1.2020677, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.15950064, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 11541\n",
+ "Discriminator Loss: tf.Tensor(0.7235935, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.2360616, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 11542\n",
+ "Discriminator Loss: tf.Tensor(1.2454557, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.04100424, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 11543\n",
+ "Discriminator Loss: tf.Tensor(0.7308012, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.2351776, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 11544\n",
+ "Discriminator Loss: tf.Tensor(1.4042549, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.11631597, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 11545\n",
+ "Discriminator Loss: tf.Tensor(0.6748836, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.93156385, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 11546\n",
+ "Discriminator Loss: tf.Tensor(0.6773665, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.6798563, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 11547\n",
+ "Discriminator Loss: tf.Tensor(1.6669153, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.457961, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 11548\n",
+ "Discriminator Loss: tf.Tensor(1.081469, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.6345215, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 11549\n",
+ "Discriminator Loss: tf.Tensor(0.61228955, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.572372, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 11550\n",
+ "Discriminator Loss: tf.Tensor(0.41318643, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.7930193, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 11551\n",
+ "Discriminator Loss: tf.Tensor(0.48911723, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.98453856, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 11552\n",
+ "Discriminator Loss: tf.Tensor(0.7037288, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.0609505, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 11553\n",
+ "Discriminator Loss: tf.Tensor(0.7909928, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.47953093, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 11554\n",
+ "Discriminator Loss: tf.Tensor(0.7296437, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.0244153, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 11555\n",
+ "Discriminator Loss: tf.Tensor(0.7847017, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.3386977, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 11556\n",
+ "Discriminator Loss: tf.Tensor(0.6488196, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.2770154, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 11557\n",
+ "Discriminator Loss: tf.Tensor(0.28871772, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.97580785, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 11558\n",
+ "Discriminator Loss: tf.Tensor(0.52571374, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.588998, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 11559\n",
+ "Discriminator Loss: tf.Tensor(0.37347558, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.8237872, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 11560\n",
+ "Discriminator Loss: tf.Tensor(1.4671192, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.9063728, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 11561\n",
+ "Discriminator Loss: tf.Tensor(0.6111292, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.43779922, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 11562\n",
+ "Discriminator Loss: tf.Tensor(0.5743111, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.242716, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 11563\n",
+ "Discriminator Loss: tf.Tensor(0.2978238, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.88751173, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 11564\n",
+ "Discriminator Loss: tf.Tensor(1.1958663, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.3128428, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 11565\n",
+ "Discriminator Loss: tf.Tensor(0.85142934, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.19295861, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 11566\n",
+ "Discriminator Loss: tf.Tensor(0.4192578, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.2745142, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 11567\n",
+ "Discriminator Loss: tf.Tensor(0.32076314, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.1557215, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 11568\n",
+ "Discriminator Loss: tf.Tensor(0.8959191, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.34527424, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 11569\n",
+ "Discriminator Loss: tf.Tensor(0.7147528, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.491596, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 11570\n",
+ "Discriminator Loss: tf.Tensor(0.51264066, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.62219363, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 11571\n",
+ "Discriminator Loss: tf.Tensor(0.7868359, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.8451202, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 11572\n",
+ "Discriminator Loss: tf.Tensor(0.28699687, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.1184725, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 11573\n",
+ "Discriminator Loss: tf.Tensor(1.4979708, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.42134094, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 11574\n",
+ "Discriminator Loss: tf.Tensor(0.94106865, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.3760393, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 11575\n",
+ "Discriminator Loss: tf.Tensor(0.55185145, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.5827268, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 11576\n",
+ "Discriminator Loss: tf.Tensor(0.63781804, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.8863633, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 11577\n",
+ "Discriminator Loss: tf.Tensor(0.3509062, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.2854221, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 11578\n",
+ "Discriminator Loss: tf.Tensor(1.2330648, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.20127898, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 11579\n",
+ "Discriminator Loss: tf.Tensor(0.3930059, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.6450517, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 11580\n",
+ "Discriminator Loss: tf.Tensor(0.34254083, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.2652508, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 11581\n",
+ "Discriminator Loss: tf.Tensor(1.3023583, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.026902212, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 11582\n",
+ "Discriminator Loss: tf.Tensor(1.0168403, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.2205741, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 11583\n",
+ "Discriminator Loss: tf.Tensor(0.7650173, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.28833535, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 11584\n",
+ "Discriminator Loss: tf.Tensor(0.52344066, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.1544626, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 11585\n",
+ "Discriminator Loss: tf.Tensor(0.14602955, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.96106464, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 11586\n",
+ "Discriminator Loss: tf.Tensor(1.2977496, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.7739332, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 11587\n",
+ "Discriminator Loss: tf.Tensor(0.16458559, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.88495475, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 11588\n",
+ "Discriminator Loss: tf.Tensor(0.6423222, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.6477032, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 11589\n",
+ "Discriminator Loss: tf.Tensor(0.44679382, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.6401653, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 11590\n",
+ "Discriminator Loss: tf.Tensor(0.6513245, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.43479362, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 11591\n",
+ "Discriminator Loss: tf.Tensor(0.37556195, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.4315813, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 11592\n",
+ "Discriminator Loss: tf.Tensor(0.1609724, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.5467569, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 11593\n",
+ "Discriminator Loss: tf.Tensor(0.7885018, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.3676653, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 11594\n",
+ "Discriminator Loss: tf.Tensor(1.0712187, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.8867986, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 11595\n",
+ "Discriminator Loss: tf.Tensor(0.61794984, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.4313202, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 11596\n",
+ "Discriminator Loss: tf.Tensor(0.9615564, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.33019546, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 11597\n",
+ "Discriminator Loss: tf.Tensor(1.2647815, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.0911295, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 11598\n",
+ "Discriminator Loss: tf.Tensor(0.54850805, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.7352176, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 11599\n",
+ "Discriminator Loss: tf.Tensor(0.9550361, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.0609462, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 11600\n",
+ "Discriminator Loss: tf.Tensor(0.22340351, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.0783222, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 11601\n",
+ "Discriminator Loss: tf.Tensor(0.9846918, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.33190924, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 11602\n",
+ "Discriminator Loss: tf.Tensor(0.5474342, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.0185115, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 11603\n",
+ "Discriminator Loss: tf.Tensor(0.20263834, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.88430744, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 11604\n",
+ "Discriminator Loss: tf.Tensor(0.73967814, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.8135107, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 11605\n",
+ "Discriminator Loss: tf.Tensor(0.51162934, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.1587867, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 11606\n",
+ "Discriminator Loss: tf.Tensor(1.3066002, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.1792143, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 11607\n",
+ "Discriminator Loss: tf.Tensor(0.39970684, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.9378471, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 11608\n",
+ "Discriminator Loss: tf.Tensor(0.39303613, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.8867135, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 11609\n",
+ "Discriminator Loss: tf.Tensor(0.60464716, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(3.0001214, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 11610\n",
+ "Discriminator Loss: tf.Tensor(0.42379954, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.0785128, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 11611\n",
+ "Discriminator Loss: tf.Tensor(0.3166734, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.4359754, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 11612\n",
+ "Discriminator Loss: tf.Tensor(0.976592, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.066002734, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 11613\n",
+ "Discriminator Loss: tf.Tensor(1.2703103, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.5417252, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 11614\n",
+ "Discriminator Loss: tf.Tensor(0.8503001, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.53508085, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 11615\n",
+ "Discriminator Loss: tf.Tensor(0.40837157, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.4554672, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 11616\n",
+ "Discriminator Loss: tf.Tensor(0.37916547, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.1721611, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 11617\n",
+ "Discriminator Loss: tf.Tensor(2.0153658, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.9426654, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 11618\n",
+ "Discriminator Loss: tf.Tensor(0.51651394, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.6679653, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 11619\n",
+ "Discriminator Loss: tf.Tensor(0.777598, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.44768372, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 11620\n",
+ "Discriminator Loss: tf.Tensor(1.2515236, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.298721, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 11621\n",
+ "Discriminator Loss: tf.Tensor(0.5881665, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.6258914, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 11622\n",
+ "Discriminator Loss: tf.Tensor(0.61868876, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.275267, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 11623\n",
+ "Discriminator Loss: tf.Tensor(0.4431576, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.676132, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 11624\n",
+ "Discriminator Loss: tf.Tensor(0.30601597, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.616474, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 11625\n",
+ "Discriminator Loss: tf.Tensor(0.49907535, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.378481, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 11626\n",
+ "Discriminator Loss: tf.Tensor(1.622841, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.4921756, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 11627\n",
+ "Discriminator Loss: tf.Tensor(0.7201627, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.2204733, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 11628\n",
+ "Discriminator Loss: tf.Tensor(0.6568909, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.4278303, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 11629\n",
+ "Discriminator Loss: tf.Tensor(0.57493246, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.492139, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 11630\n",
+ "Discriminator Loss: tf.Tensor(1.0374157, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.17660369, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 11631\n",
+ "Discriminator Loss: tf.Tensor(1.3364339, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.04981, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 11632\n",
+ "Discriminator Loss: tf.Tensor(0.84148425, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.29584384, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 11633\n",
+ "Discriminator Loss: tf.Tensor(0.9724677, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.4053304, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 11634\n",
+ "Discriminator Loss: tf.Tensor(0.30614427, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.7107617, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 11635\n",
+ "Discriminator Loss: tf.Tensor(0.5745576, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.5978737, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 11636\n",
+ "Discriminator Loss: tf.Tensor(0.31452346, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.1385086, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 11637\n",
+ "Discriminator Loss: tf.Tensor(1.4551501, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.4006031, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 11638\n",
+ "Discriminator Loss: tf.Tensor(0.6876509, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.2032387, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 11639\n",
+ "Discriminator Loss: tf.Tensor(0.32313743, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.69475985, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 11640\n",
+ "Discriminator Loss: tf.Tensor(1.1918966, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(3.1379464, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 11641\n",
+ "Discriminator Loss: tf.Tensor(0.63001627, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.59836066, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 11642\n",
+ "Discriminator Loss: tf.Tensor(0.6404709, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.886626, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 11643\n",
+ "Discriminator Loss: tf.Tensor(0.17988774, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.359264, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 11644\n",
+ "Discriminator Loss: tf.Tensor(1.0038575, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.0511511, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 11645\n",
+ "Discriminator Loss: tf.Tensor(0.96268046, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(3.4088128, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 11646\n",
+ "Discriminator Loss: tf.Tensor(0.07082829, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.5698313, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 11647\n",
+ "Discriminator Loss: tf.Tensor(1.1444921, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.50235933, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 11648\n",
+ "Discriminator Loss: tf.Tensor(2.7422926, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(3.0055275, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 11649\n",
+ "Discriminator Loss: tf.Tensor(0.5970426, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.078153, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 11650\n",
+ "Discriminator Loss: tf.Tensor(1.5378994, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.28709778, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 11651\n",
+ "Discriminator Loss: tf.Tensor(0.7853824, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.2424754, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 11652\n",
+ "Discriminator Loss: tf.Tensor(1.2189624, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.12218109, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 11653\n",
+ "Discriminator Loss: tf.Tensor(0.59890014, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.2272403, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 11654\n",
+ "Discriminator Loss: tf.Tensor(0.7558947, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.49315366, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 11655\n",
+ "Discriminator Loss: tf.Tensor(1.1795516, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.6399231, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 11656\n",
+ "Discriminator Loss: tf.Tensor(0.96332526, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.21128078, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 11657\n",
+ "Discriminator Loss: tf.Tensor(0.45819327, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.4683112, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 11658\n",
+ "Discriminator Loss: tf.Tensor(0.99036866, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.4225171, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 11659\n",
+ "Discriminator Loss: tf.Tensor(0.6415592, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.4945503, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 11660\n",
+ "Discriminator Loss: tf.Tensor(1.9180855, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.67412376, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 11661\n",
+ "Discriminator Loss: tf.Tensor(0.9954431, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.2742212, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 11662\n",
+ "Discriminator Loss: tf.Tensor(1.0492009, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.011495613, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 11663\n",
+ "Discriminator Loss: tf.Tensor(0.4334776, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.4985312, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 11664\n",
+ "Discriminator Loss: tf.Tensor(0.46817642, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.7363071, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 11665\n",
+ "Discriminator Loss: tf.Tensor(0.41728652, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.8318764, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 11666\n",
+ "Discriminator Loss: tf.Tensor(1.2574267, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.026327267, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 11667\n",
+ "Discriminator Loss: tf.Tensor(0.7473996, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.8881912, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 11668\n",
+ "Discriminator Loss: tf.Tensor(0.5332699, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.88176745, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 11669\n",
+ "Discriminator Loss: tf.Tensor(1.4835076, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.2693007, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 11670\n",
+ "Discriminator Loss: tf.Tensor(1.3730528, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.008210923, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 11671\n",
+ "Discriminator Loss: tf.Tensor(0.3379831, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.3968167, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 11672\n",
+ "Discriminator Loss: tf.Tensor(0.86870676, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.4857954, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 11673\n",
+ "Discriminator Loss: tf.Tensor(1.1966772, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.142206, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 11674\n",
+ "Discriminator Loss: tf.Tensor(1.3348994, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.23508869, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 11675\n",
+ "Discriminator Loss: tf.Tensor(1.0328637, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.6543866, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 11676\n",
+ "Discriminator Loss: tf.Tensor(0.8534833, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.27416775, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 11677\n",
+ "Discriminator Loss: tf.Tensor(0.45009738, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.052138, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 11678\n",
+ "Discriminator Loss: tf.Tensor(0.4276716, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.7076052, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 11679\n",
+ "Discriminator Loss: tf.Tensor(0.55971575, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.6842315, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 11680\n",
+ "Discriminator Loss: tf.Tensor(0.26158464, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.3784657, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 11681\n",
+ "Discriminator Loss: tf.Tensor(0.813066, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.37608325, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 11682\n",
+ "Discriminator Loss: tf.Tensor(0.64145035, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.4350898, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 11683\n",
+ "Discriminator Loss: tf.Tensor(0.32118973, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.7491092, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 11684\n",
+ "Discriminator Loss: tf.Tensor(1.2779018, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.7155135, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 11685\n",
+ "Discriminator Loss: tf.Tensor(0.83735645, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.19177918, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 11686\n",
+ "Discriminator Loss: tf.Tensor(0.83762944, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.4372296, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 11687\n",
+ "Discriminator Loss: tf.Tensor(0.48508924, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.5861793, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 11688\n",
+ "Discriminator Loss: tf.Tensor(0.9355477, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.463843, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 11689\n",
+ "Discriminator Loss: tf.Tensor(0.13509427, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.96723175, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 11690\n",
+ "Discriminator Loss: tf.Tensor(0.5369607, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.4713001, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 11691\n",
+ "Discriminator Loss: tf.Tensor(0.19741797, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.8676087, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 11692\n",
+ "Discriminator Loss: tf.Tensor(1.2161372, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(3.0015526, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 11693\n",
+ "Discriminator Loss: tf.Tensor(0.044192363, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.1715201, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 11694\n",
+ "Discriminator Loss: tf.Tensor(1.3208148, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.198566, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 11695\n",
+ "Discriminator Loss: tf.Tensor(1.8764389, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.6437972, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 11696\n",
+ "Discriminator Loss: tf.Tensor(0.68317056, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.73353505, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 11697\n",
+ "Discriminator Loss: tf.Tensor(0.43090707, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.7575012, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 11698\n",
+ "Discriminator Loss: tf.Tensor(0.4580824, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.0604855, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 11699\n",
+ "Discriminator Loss: tf.Tensor(0.668996, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.6232087, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 11700\n",
+ "Discriminator Loss: tf.Tensor(1.0072834, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.0496395, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 11701\n",
+ "Discriminator Loss: tf.Tensor(0.91499233, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.4812963, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 11702\n",
+ "Discriminator Loss: tf.Tensor(1.3976533, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.0462198, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 11703\n",
+ "Discriminator Loss: tf.Tensor(0.8114783, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.30711648, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 11704\n",
+ "Discriminator Loss: tf.Tensor(1.0013454, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.6128832, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 11705\n",
+ "Discriminator Loss: tf.Tensor(0.7679439, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.3025888, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 11706\n",
+ "Discriminator Loss: tf.Tensor(0.948451, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.6520463, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 11707\n",
+ "Discriminator Loss: tf.Tensor(1.3112878, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.030751638, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 11708\n",
+ "Discriminator Loss: tf.Tensor(0.5895027, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.3175474, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 11709\n",
+ "Discriminator Loss: tf.Tensor(1.0898523, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.030630514, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 11710\n",
+ "Discriminator Loss: tf.Tensor(0.52440566, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.5993332, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 11711\n",
+ "Discriminator Loss: tf.Tensor(0.63393855, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.57089937, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 11712\n",
+ "Discriminator Loss: tf.Tensor(0.41995785, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.9621435, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 11713\n",
+ "Discriminator Loss: tf.Tensor(0.355986, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.83657, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 11714\n",
+ "Discriminator Loss: tf.Tensor(0.900326, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.4444902, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 11715\n",
+ "Discriminator Loss: tf.Tensor(0.64704335, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.6332161, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 11716\n",
+ "Discriminator Loss: tf.Tensor(0.96977276, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.6162543, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 11717\n",
+ "Discriminator Loss: tf.Tensor(0.66585124, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.40854943, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 11718\n",
+ "Discriminator Loss: tf.Tensor(1.0267979, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.7769718, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 11719\n",
+ "Discriminator Loss: tf.Tensor(0.44720122, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.82907677, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 11720\n",
+ "Discriminator Loss: tf.Tensor(0.7269901, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.4991276, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 11721\n",
+ "Discriminator Loss: tf.Tensor(1.4340836, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.29115734, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 11722\n",
+ "Discriminator Loss: tf.Tensor(0.5555679, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.5361857, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 11723\n",
+ "Discriminator Loss: tf.Tensor(0.2737879, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.553091, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 11724\n",
+ "Discriminator Loss: tf.Tensor(1.0009425, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.134501, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 11725\n",
+ "Discriminator Loss: tf.Tensor(0.5694227, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.5697749, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 11726\n",
+ "Discriminator Loss: tf.Tensor(0.09026311, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.0853604, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 11727\n",
+ "Discriminator Loss: tf.Tensor(1.3727456, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.25451735, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 11728\n",
+ "Discriminator Loss: tf.Tensor(1.005779, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.207068, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 11729\n",
+ "Discriminator Loss: tf.Tensor(0.23182797, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.93945307, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 11730\n",
+ "Discriminator Loss: tf.Tensor(0.71924603, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.7648735, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 11731\n",
+ "Discriminator Loss: tf.Tensor(0.3225859, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.3336338, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 11732\n",
+ "Discriminator Loss: tf.Tensor(1.2097182, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.15798564, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 11733\n",
+ "Discriminator Loss: tf.Tensor(0.5635885, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.9718663, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 11734\n",
+ "Discriminator Loss: tf.Tensor(0.6406341, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.52888054, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 11735\n",
+ "Discriminator Loss: tf.Tensor(1.4091058, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.242376, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 11736\n",
+ "Discriminator Loss: tf.Tensor(1.2723236, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.12535675, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 11737\n",
+ "Discriminator Loss: tf.Tensor(0.8072951, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.6709768, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 11738\n",
+ "Discriminator Loss: tf.Tensor(0.95943964, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.077487685, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 11739\n",
+ "Discriminator Loss: tf.Tensor(0.5826163, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.123936, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 11740\n",
+ "Discriminator Loss: tf.Tensor(0.5686895, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.5609197, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 11741\n",
+ "Discriminator Loss: tf.Tensor(0.6515465, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.2593234, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 11742\n",
+ "Discriminator Loss: tf.Tensor(0.35154822, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.3030883, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 11743\n",
+ "Discriminator Loss: tf.Tensor(1.2043587, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.015409883, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 11744\n",
+ "Discriminator Loss: tf.Tensor(0.9107427, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.0146914, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 11745\n",
+ "Discriminator Loss: tf.Tensor(0.3779356, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.0917839, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 11746\n",
+ "Discriminator Loss: tf.Tensor(0.9833334, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.15546091, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 11747\n",
+ "Discriminator Loss: tf.Tensor(0.22264382, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.8624506, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 11748\n",
+ "Discriminator Loss: tf.Tensor(0.06013508, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.0030776, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 11749\n",
+ "Discriminator Loss: tf.Tensor(0.9036132, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.037145, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 11750\n",
+ "Discriminator Loss: tf.Tensor(1.007004, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.2599754, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 11751\n",
+ "Discriminator Loss: tf.Tensor(1.381305, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.232978, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 11752\n",
+ "Discriminator Loss: tf.Tensor(1.1350338, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.0022753167, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 11753\n",
+ "Discriminator Loss: tf.Tensor(0.25039467, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.4791456, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 11754\n",
+ "Discriminator Loss: tf.Tensor(0.50454295, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.8316877, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 11755\n",
+ "Discriminator Loss: tf.Tensor(0.26647037, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.2958138, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 11756\n",
+ "Discriminator Loss: tf.Tensor(0.7024791, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.72308844, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 11757\n",
+ "Discriminator Loss: tf.Tensor(2.0021234, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.6927102, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 11758\n",
+ "Discriminator Loss: tf.Tensor(0.9303722, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.17831512, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 11759\n",
+ "Discriminator Loss: tf.Tensor(0.5168227, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.160971, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 11760\n",
+ "Discriminator Loss: tf.Tensor(0.39994192, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.77436066, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 11761\n",
+ "Discriminator Loss: tf.Tensor(0.42608005, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.5775626, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 11762\n",
+ "Discriminator Loss: tf.Tensor(0.39466, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.5089855, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 11763\n",
+ "Discriminator Loss: tf.Tensor(0.9451204, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.19314295, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 11764\n",
+ "Discriminator Loss: tf.Tensor(1.4339278, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.6666315, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 11765\n",
+ "Discriminator Loss: tf.Tensor(0.5763733, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.800042, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 11766\n",
+ "Discriminator Loss: tf.Tensor(0.7381953, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.0879028, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 11767\n",
+ "Discriminator Loss: tf.Tensor(1.568745, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.31314197, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 11768\n",
+ "Discriminator Loss: tf.Tensor(0.5199182, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.1841563, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 11769\n",
+ "Discriminator Loss: tf.Tensor(1.5280427, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.19668627, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 11770\n",
+ "Discriminator Loss: tf.Tensor(0.8599824, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.4517248, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 11771\n",
+ "Discriminator Loss: tf.Tensor(0.30193803, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.962817, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 11772\n",
+ "Discriminator Loss: tf.Tensor(0.43286908, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.6193116, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 11773\n",
+ "Discriminator Loss: tf.Tensor(0.13349253, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.1494244, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 11774\n",
+ "Discriminator Loss: tf.Tensor(1.5061553, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.43768987, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 11775\n",
+ "Discriminator Loss: tf.Tensor(0.731509, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.445079, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 11776\n",
+ "Discriminator Loss: tf.Tensor(0.3008214, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.5005332, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 11777\n",
+ "Discriminator Loss: tf.Tensor(0.11281504, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.9155924, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 11778\n",
+ "Discriminator Loss: tf.Tensor(1.002906, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.762593, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 11779\n",
+ "Discriminator Loss: tf.Tensor(0.595556, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.0057589, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 11780\n",
+ "Discriminator Loss: tf.Tensor(0.31196788, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.7814824, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 11781\n",
+ "Discriminator Loss: tf.Tensor(2.023571, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(3.384197, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 11782\n",
+ "Discriminator Loss: tf.Tensor(1.2408056, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.07302336, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 11783\n",
+ "Discriminator Loss: tf.Tensor(0.4483627, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.4028711, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 11784\n",
+ "Discriminator Loss: tf.Tensor(1.1008089, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.302933, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 11785\n",
+ "Discriminator Loss: tf.Tensor(0.7105769, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.5619955, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 11786\n",
+ "Discriminator Loss: tf.Tensor(0.66681415, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.6331963, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 11787\n",
+ "Discriminator Loss: tf.Tensor(0.40225232, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.8156717, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 11788\n",
+ "Discriminator Loss: tf.Tensor(0.11259342, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.5073744, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 11789\n",
+ "Discriminator Loss: tf.Tensor(1.7046181, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.11306851, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 11790\n",
+ "Discriminator Loss: tf.Tensor(1.4395261, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.893467, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 11791\n",
+ "Discriminator Loss: tf.Tensor(0.16621546, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.8638374, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 11792\n",
+ "Discriminator Loss: tf.Tensor(0.9877556, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.8801115, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 11793\n",
+ "Discriminator Loss: tf.Tensor(0.21843496, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.6201841, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 11794\n",
+ "Discriminator Loss: tf.Tensor(0.51791763, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.7581343, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 11795\n",
+ "Discriminator Loss: tf.Tensor(0.7581562, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.964548, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 11796\n",
+ "Discriminator Loss: tf.Tensor(0.11443025, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.2851763, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 11797\n",
+ "Discriminator Loss: tf.Tensor(1.1748486, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.13927539, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 11798\n",
+ "Discriminator Loss: tf.Tensor(1.4412515, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.3745458, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 11799\n",
+ "Discriminator Loss: tf.Tensor(0.9565888, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.40868065, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 11800\n",
+ "Discriminator Loss: tf.Tensor(0.7251616, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.7772589, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 11801\n",
+ "Discriminator Loss: tf.Tensor(0.7250016, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.74832684, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 11802\n",
+ "Discriminator Loss: tf.Tensor(0.38247216, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.8735628, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 11803\n",
+ "Discriminator Loss: tf.Tensor(0.7498337, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.62936914, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 11804\n",
+ "Discriminator Loss: tf.Tensor(1.2192606, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.5997677, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 11805\n",
+ "Discriminator Loss: tf.Tensor(0.22874795, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.96090645, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 11806\n",
+ "Discriminator Loss: tf.Tensor(0.4820516, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.011384, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 11807\n",
+ "Discriminator Loss: tf.Tensor(0.6336569, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.40769646, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 11808\n",
+ "Discriminator Loss: tf.Tensor(0.7017697, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.5161376, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 11809\n",
+ "Discriminator Loss: tf.Tensor(1.1189431, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.114771366, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 11810\n",
+ "Discriminator Loss: tf.Tensor(0.66138387, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.0608866, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 11811\n",
+ "Discriminator Loss: tf.Tensor(0.93163323, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.08771012, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 11812\n",
+ "Discriminator Loss: tf.Tensor(0.6496157, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.4478354, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 11813\n",
+ "Discriminator Loss: tf.Tensor(0.49534327, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.7824405, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 11814\n",
+ "Discriminator Loss: tf.Tensor(0.8607027, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.5048656, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 11815\n",
+ "Discriminator Loss: tf.Tensor(1.1961688, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.05731233, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 11816\n",
+ "Discriminator Loss: tf.Tensor(0.88391674, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.2970047, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 11817\n",
+ "Discriminator Loss: tf.Tensor(0.56650174, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.53502, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 11818\n",
+ "Discriminator Loss: tf.Tensor(0.48664582, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.662845, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 11819\n",
+ "Discriminator Loss: tf.Tensor(0.37712735, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.5371872, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 11820\n",
+ "Discriminator Loss: tf.Tensor(0.77109593, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.38799524, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 11821\n",
+ "Discriminator Loss: tf.Tensor(0.7443155, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.7821324, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 11822\n",
+ "Discriminator Loss: tf.Tensor(0.35342425, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.93379325, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 11823\n",
+ "Discriminator Loss: tf.Tensor(0.63613945, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.7521133, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 11824\n",
+ "Discriminator Loss: tf.Tensor(0.73774487, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.35090813, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 11825\n",
+ "Discriminator Loss: tf.Tensor(1.3989606, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.4338605, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 11826\n",
+ "Discriminator Loss: tf.Tensor(0.572286, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.7745013, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 11827\n",
+ "Discriminator Loss: tf.Tensor(0.41789073, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(3.0690415, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 11828\n",
+ "Discriminator Loss: tf.Tensor(0.29983294, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.75917196, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 11829\n",
+ "Discriminator Loss: tf.Tensor(1.8442218, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(3.595424, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 11830\n",
+ "Discriminator Loss: tf.Tensor(0.6039165, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.6540668, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 11831\n",
+ "Discriminator Loss: tf.Tensor(0.89869606, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(3.0105278, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 11832\n",
+ "Discriminator Loss: tf.Tensor(0.32317933, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.8735979, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 11833\n",
+ "Discriminator Loss: tf.Tensor(0.98725736, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(3.3606167, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 11834\n",
+ "Discriminator Loss: tf.Tensor(0.52417046, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.5683374, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 11835\n",
+ "Discriminator Loss: tf.Tensor(1.2243441, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.16624473, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 11836\n",
+ "Discriminator Loss: tf.Tensor(0.77641517, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(3.2985392, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 11837\n",
+ "Discriminator Loss: tf.Tensor(0.19805032, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.5874325, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 11838\n",
+ "Discriminator Loss: tf.Tensor(0.34322637, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.9124449, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 11839\n",
+ "Discriminator Loss: tf.Tensor(0.86867964, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(3.3026876, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 11840\n",
+ "Discriminator Loss: tf.Tensor(0.20928918, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.4053413, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 11841\n",
+ "Discriminator Loss: tf.Tensor(0.7341022, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.3080672, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 11842\n",
+ "Discriminator Loss: tf.Tensor(0.47928542, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(3.2350445, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 11843\n",
+ "Discriminator Loss: tf.Tensor(1.5071461, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.3313158, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 11844\n",
+ "Discriminator Loss: tf.Tensor(0.77941597, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.45647693, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 11845\n",
+ "Discriminator Loss: tf.Tensor(0.35055646, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.2473967, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 11846\n",
+ "Discriminator Loss: tf.Tensor(0.564842, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.2737784, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 11847\n",
+ "Discriminator Loss: tf.Tensor(1.469767, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.17934208, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 11848\n",
+ "Discriminator Loss: tf.Tensor(0.54538864, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.7629243, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 11849\n",
+ "Discriminator Loss: tf.Tensor(0.6791571, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.55812746, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 11850\n",
+ "Discriminator Loss: tf.Tensor(0.71071637, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.4440014, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 11851\n",
+ "Discriminator Loss: tf.Tensor(0.6959864, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.5663414, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 11852\n",
+ "Discriminator Loss: tf.Tensor(0.9610012, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.0424147, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 11853\n",
+ "Discriminator Loss: tf.Tensor(1.8505489, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.64878374, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 11854\n",
+ "Discriminator Loss: tf.Tensor(0.33759838, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.2424831, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 11855\n",
+ "Discriminator Loss: tf.Tensor(1.61253, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.39278555, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 11856\n",
+ "Discriminator Loss: tf.Tensor(0.71726394, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.8855991, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 11857\n",
+ "Discriminator Loss: tf.Tensor(1.2975081, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.26397368, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 11858\n",
+ "Discriminator Loss: tf.Tensor(0.79889107, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.1511064, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 11859\n",
+ "Discriminator Loss: tf.Tensor(1.1447091, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.079768695, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 11860\n",
+ "Discriminator Loss: tf.Tensor(0.46553534, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.5447565, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 11861\n",
+ "Discriminator Loss: tf.Tensor(1.4725261, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.34753785, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 11862\n",
+ "Discriminator Loss: tf.Tensor(0.9909181, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.9335709, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 11863\n",
+ "Discriminator Loss: tf.Tensor(0.9012197, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.3323991, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 11864\n",
+ "Discriminator Loss: tf.Tensor(0.58938634, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.7544891, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 11865\n",
+ "Discriminator Loss: tf.Tensor(1.3100427, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.22093938, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 11866\n",
+ "Discriminator Loss: tf.Tensor(0.5279609, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.6688923, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 11867\n",
+ "Discriminator Loss: tf.Tensor(0.8977459, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.1854036, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 11868\n",
+ "Discriminator Loss: tf.Tensor(1.1742768, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.4675992, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 11869\n",
+ "Discriminator Loss: tf.Tensor(0.89438605, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.1303194, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 11870\n",
+ "Discriminator Loss: tf.Tensor(1.0800476, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.1347945, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 11871\n",
+ "Discriminator Loss: tf.Tensor(0.51129687, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.72429156, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 11872\n",
+ "Discriminator Loss: tf.Tensor(0.8304747, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.4537215, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 11873\n",
+ "Discriminator Loss: tf.Tensor(0.8403679, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.317707, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 11874\n",
+ "Discriminator Loss: tf.Tensor(0.2704761, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.6168644, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 11875\n",
+ "Discriminator Loss: tf.Tensor(0.08732799, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.3522443, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 11876\n",
+ "Discriminator Loss: tf.Tensor(1.2648238, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.18513519, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 11877\n",
+ "Discriminator Loss: tf.Tensor(1.7659729, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(3.1325014, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 11878\n",
+ "Discriminator Loss: tf.Tensor(0.107044525, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.0071343, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 11879\n",
+ "Discriminator Loss: tf.Tensor(0.5605513, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.9672179, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 11880\n",
+ "Discriminator Loss: tf.Tensor(0.30361348, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.8681083, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 11881\n",
+ "Discriminator Loss: tf.Tensor(1.1916604, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.7953606, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 11882\n",
+ "Discriminator Loss: tf.Tensor(0.5769756, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.0045971, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 11883\n",
+ "Discriminator Loss: tf.Tensor(0.54820406, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.71636766, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 11884\n",
+ "Discriminator Loss: tf.Tensor(1.4485462, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(3.149805, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 11885\n",
+ "Discriminator Loss: tf.Tensor(0.36480898, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.3161232, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 11886\n",
+ "Discriminator Loss: tf.Tensor(0.8659369, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.25824508, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 11887\n",
+ "Discriminator Loss: tf.Tensor(0.40013805, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.942141, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 11888\n",
+ "Discriminator Loss: tf.Tensor(0.07336268, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.1610497, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 11889\n",
+ "Discriminator Loss: tf.Tensor(1.2518175, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.39594015, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 11890\n",
+ "Discriminator Loss: tf.Tensor(0.66388917, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.4801562, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 11891\n",
+ "Discriminator Loss: tf.Tensor(0.24634004, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.9813983, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 11892\n",
+ "Discriminator Loss: tf.Tensor(0.53369606, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.9443902, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 11893\n",
+ "Discriminator Loss: tf.Tensor(0.48734084, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.6415598, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 11894\n",
+ "Discriminator Loss: tf.Tensor(0.9389784, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.2998044, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 11895\n",
+ "Discriminator Loss: tf.Tensor(0.16197212, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.8685414, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 11896\n",
+ "Discriminator Loss: tf.Tensor(1.2095802, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.6000865, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 11897\n",
+ "Discriminator Loss: tf.Tensor(0.42219496, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.71518254, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 11898\n",
+ "Discriminator Loss: tf.Tensor(1.0364418, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.2697256, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 11899\n",
+ "Discriminator Loss: tf.Tensor(1.1504076, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.1113104, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 11900\n",
+ "Discriminator Loss: tf.Tensor(0.89138275, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.6766809, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 11901\n",
+ "Discriminator Loss: tf.Tensor(1.0764495, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.023535788, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 11902\n",
+ "Discriminator Loss: tf.Tensor(0.6703123, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.0671985, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 11903\n",
+ "Discriminator Loss: tf.Tensor(0.6696812, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.45027077, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 11904\n",
+ "Discriminator Loss: tf.Tensor(0.8747069, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.3073604, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 11905\n",
+ "Discriminator Loss: tf.Tensor(0.85456824, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.5600464, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 11906\n",
+ "Discriminator Loss: tf.Tensor(0.5863507, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.0225222, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 11907\n",
+ "Discriminator Loss: tf.Tensor(1.4627703, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.37419304, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 11908\n",
+ "Discriminator Loss: tf.Tensor(0.48900294, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.323951, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 11909\n",
+ "Discriminator Loss: tf.Tensor(0.1449252, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.0940368, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 11910\n",
+ "Discriminator Loss: tf.Tensor(0.9061165, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.29213408, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 11911\n",
+ "Discriminator Loss: tf.Tensor(1.0511018, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.5212903, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 11912\n",
+ "Discriminator Loss: tf.Tensor(0.28826666, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.7610906, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 11913\n",
+ "Discriminator Loss: tf.Tensor(0.183074, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.668523, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 11914\n",
+ "Discriminator Loss: tf.Tensor(2.5340316, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.8946948, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 11915\n",
+ "Discriminator Loss: tf.Tensor(1.38213, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.18384242, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 11916\n",
+ "Discriminator Loss: tf.Tensor(1.4807208, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.5045619, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 11917\n",
+ "Discriminator Loss: tf.Tensor(1.4375125, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.2129976, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 11918\n",
+ "Discriminator Loss: tf.Tensor(0.16128707, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.9816434, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 11919\n",
+ "Discriminator Loss: tf.Tensor(1.7478175, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.0918849, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 11920\n",
+ "Discriminator Loss: tf.Tensor(0.68063354, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.62395144, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 11921\n",
+ "Discriminator Loss: tf.Tensor(0.6284996, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.563521, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 11922\n",
+ "Discriminator Loss: tf.Tensor(0.88312674, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.5723946, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 11923\n",
+ "Discriminator Loss: tf.Tensor(0.89120245, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.7581172, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 11924\n",
+ "Discriminator Loss: tf.Tensor(0.6522362, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.46686497, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 11925\n",
+ "Discriminator Loss: tf.Tensor(0.6805175, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.8813251, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 11926\n",
+ "Discriminator Loss: tf.Tensor(0.47465527, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.0121055, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 11927\n",
+ "Discriminator Loss: tf.Tensor(0.117211714, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.929776, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 11928\n",
+ "Discriminator Loss: tf.Tensor(1.9598876, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.9927266, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 11929\n",
+ "Discriminator Loss: tf.Tensor(0.970247, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.4507049, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 11930\n",
+ "Discriminator Loss: tf.Tensor(0.7622624, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.6109835, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 11931\n",
+ "Discriminator Loss: tf.Tensor(0.63526165, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.6324851, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 11932\n",
+ "Discriminator Loss: tf.Tensor(0.77664346, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.8359741, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 11933\n",
+ "Discriminator Loss: tf.Tensor(0.7814064, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.32980528, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 11934\n",
+ "Discriminator Loss: tf.Tensor(0.73917687, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.0073183, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 11935\n",
+ "Discriminator Loss: tf.Tensor(0.23067656, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.8897359, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 11936\n",
+ "Discriminator Loss: tf.Tensor(0.88106465, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.8898516, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 11937\n",
+ "Discriminator Loss: tf.Tensor(0.27776656, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.8664639, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 11938\n",
+ "Discriminator Loss: tf.Tensor(1.0204804, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.5629408, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 11939\n",
+ "Discriminator Loss: tf.Tensor(0.4789161, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.5588215, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 11940\n",
+ "Discriminator Loss: tf.Tensor(0.38523507, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.5159698, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 11941\n",
+ "Discriminator Loss: tf.Tensor(0.3215886, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.204636, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 11942\n",
+ "Discriminator Loss: tf.Tensor(1.4676739, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.3422276, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 11943\n",
+ "Discriminator Loss: tf.Tensor(0.4263156, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.7782103, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 11944\n",
+ "Discriminator Loss: tf.Tensor(1.1126022, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.45515606, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 11945\n",
+ "Discriminator Loss: tf.Tensor(0.6894375, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.3010027, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 11946\n",
+ "Discriminator Loss: tf.Tensor(0.8114556, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.27012107, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 11947\n",
+ "Discriminator Loss: tf.Tensor(1.0320482, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.5139182, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 11948\n",
+ "Discriminator Loss: tf.Tensor(0.114638865, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.0097356, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 11949\n",
+ "Discriminator Loss: tf.Tensor(0.62906325, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.6894617, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 11950\n",
+ "Discriminator Loss: tf.Tensor(1.1021461, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.060467232, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 11951\n",
+ "Discriminator Loss: tf.Tensor(0.58484495, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.3940556, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 11952\n",
+ "Discriminator Loss: tf.Tensor(0.37607896, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.7309435, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 11953\n",
+ "Discriminator Loss: tf.Tensor(1.1483091, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.9406693, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 11954\n",
+ "Discriminator Loss: tf.Tensor(0.20321885, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.2865098, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 11955\n",
+ "Discriminator Loss: tf.Tensor(0.9199248, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.39288995, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 11956\n",
+ "Discriminator Loss: tf.Tensor(0.6694299, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.6494482, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 11957\n",
+ "Discriminator Loss: tf.Tensor(0.3143826, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.0215173, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 11958\n",
+ "Discriminator Loss: tf.Tensor(0.8593472, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.28420413, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 11959\n",
+ "Discriminator Loss: tf.Tensor(1.6756077, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.7084954, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 11960\n",
+ "Discriminator Loss: tf.Tensor(1.2950207, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.23194201, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 11961\n",
+ "Discriminator Loss: tf.Tensor(0.38285092, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.7663145, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 11962\n",
+ "Discriminator Loss: tf.Tensor(2.5865564, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-1.1776332, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 11963\n",
+ "Discriminator Loss: tf.Tensor(0.9630859, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.3258721, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 11964\n",
+ "Discriminator Loss: tf.Tensor(1.6627514, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.5503321, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 11965\n",
+ "Discriminator Loss: tf.Tensor(0.73508686, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.7016157, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 11966\n",
+ "Discriminator Loss: tf.Tensor(0.994712, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.05210431, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 11967\n",
+ "Discriminator Loss: tf.Tensor(0.5920042, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.9259135, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 11968\n",
+ "Discriminator Loss: tf.Tensor(0.5955566, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.6709451, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 11969\n",
+ "Discriminator Loss: tf.Tensor(0.7002859, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.6466138, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 11970\n",
+ "Discriminator Loss: tf.Tensor(0.37595916, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.72666377, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 11971\n",
+ "Discriminator Loss: tf.Tensor(1.3063903, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.8837156, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 11972\n",
+ "Discriminator Loss: tf.Tensor(0.32845828, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.8343985, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 11973\n",
+ "Discriminator Loss: tf.Tensor(0.3589722, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(3.0598824, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 11974\n",
+ "Discriminator Loss: tf.Tensor(0.7710613, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.8609046, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 11975\n",
+ "Discriminator Loss: tf.Tensor(0.74206764, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.36553654, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 11976\n",
+ "Discriminator Loss: tf.Tensor(0.67803985, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.873211, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 11977\n",
+ "Discriminator Loss: tf.Tensor(0.32179397, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.391002, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 11978\n",
+ "Discriminator Loss: tf.Tensor(0.8562732, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.17066725, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 11979\n",
+ "Discriminator Loss: tf.Tensor(0.5830868, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.46231, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 11980\n",
+ "Discriminator Loss: tf.Tensor(0.13503347, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.1933217, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 11981\n",
+ "Discriminator Loss: tf.Tensor(0.85327876, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.39043543, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 11982\n",
+ "Discriminator Loss: tf.Tensor(1.1086092, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.5985844, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 11983\n",
+ "Discriminator Loss: tf.Tensor(0.463771, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.9635067, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 11984\n",
+ "Discriminator Loss: tf.Tensor(0.5328343, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.2287245, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 11985\n",
+ "Discriminator Loss: tf.Tensor(0.7679289, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.27498966, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 11986\n",
+ "Discriminator Loss: tf.Tensor(1.3968678, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.676387, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 11987\n",
+ "Discriminator Loss: tf.Tensor(0.110380106, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.9896558, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 11988\n",
+ "Discriminator Loss: tf.Tensor(1.2763734, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.8121765, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 11989\n",
+ "Discriminator Loss: tf.Tensor(0.46583426, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.1428556, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 11990\n",
+ "Discriminator Loss: tf.Tensor(0.85992616, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.3163246, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 11991\n",
+ "Discriminator Loss: tf.Tensor(0.527252, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.445996, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 11992\n",
+ "Discriminator Loss: tf.Tensor(0.2183843, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.1426396, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 11993\n",
+ "Discriminator Loss: tf.Tensor(1.3168712, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.12751703, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 11994\n",
+ "Discriminator Loss: tf.Tensor(0.9730079, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.8112354, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 11995\n",
+ "Discriminator Loss: tf.Tensor(0.95040035, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.40990904, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 11996\n",
+ "Discriminator Loss: tf.Tensor(0.4692757, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.7841707, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 11997\n",
+ "Discriminator Loss: tf.Tensor(1.0025244, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.25389865, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 11998\n",
+ "Discriminator Loss: tf.Tensor(0.6529125, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.288871, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 11999\n",
+ "Discriminator Loss: tf.Tensor(0.36525607, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.9089811, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 12000\n",
+ "Discriminator Loss: tf.Tensor(0.73178625, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.8963928, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 12001\n",
+ "Discriminator Loss: tf.Tensor(0.3072086, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.8376966, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 12002\n",
+ "Discriminator Loss: tf.Tensor(1.5087665, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(3.33677, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 12003\n",
+ "Discriminator Loss: tf.Tensor(0.115115196, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.0083636, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 12004\n",
+ "Discriminator Loss: tf.Tensor(0.72492546, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.4707989, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 12005\n",
+ "Discriminator Loss: tf.Tensor(1.0652153, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.114640914, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 12006\n",
+ "Discriminator Loss: tf.Tensor(0.9384196, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.1454108, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 12007\n",
+ "Discriminator Loss: tf.Tensor(0.59518206, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.49317932, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 12008\n",
+ "Discriminator Loss: tf.Tensor(1.059364, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.1760862, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 12009\n",
+ "Discriminator Loss: tf.Tensor(0.75721663, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.4352722, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 12010\n",
+ "Discriminator Loss: tf.Tensor(0.59269154, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.537728, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 12011\n",
+ "Discriminator Loss: tf.Tensor(0.33248246, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.7615941, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 12012\n",
+ "Discriminator Loss: tf.Tensor(0.5408927, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(3.2835834, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 12013\n",
+ "Discriminator Loss: tf.Tensor(0.6023848, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.5386581, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 12014\n",
+ "Discriminator Loss: tf.Tensor(1.3403307, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.32358807, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 12015\n",
+ "Discriminator Loss: tf.Tensor(0.6154483, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.1155415, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 12016\n",
+ "Discriminator Loss: tf.Tensor(0.096055366, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.928874, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 12017\n",
+ "Discriminator Loss: tf.Tensor(0.7948565, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.925361, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 12018\n",
+ "Discriminator Loss: tf.Tensor(0.4173739, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.88564044, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 12019\n",
+ "Discriminator Loss: tf.Tensor(1.2719162, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.6893356, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 12020\n",
+ "Discriminator Loss: tf.Tensor(1.1192987, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.58036435, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 12021\n",
+ "Discriminator Loss: tf.Tensor(0.53087336, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.317169, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 12022\n",
+ "Discriminator Loss: tf.Tensor(0.46041572, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.7194717, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 12023\n",
+ "Discriminator Loss: tf.Tensor(0.7918613, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.4315984, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 12024\n",
+ "Discriminator Loss: tf.Tensor(0.37273842, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.77883464, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 12025\n",
+ "Discriminator Loss: tf.Tensor(0.9501831, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(3.4622393, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 12026\n",
+ "Discriminator Loss: tf.Tensor(0.14865631, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.92897844, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 12027\n",
+ "Discriminator Loss: tf.Tensor(0.90381604, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.643942, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 12028\n",
+ "Discriminator Loss: tf.Tensor(0.4839223, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.8230313, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 12029\n",
+ "Discriminator Loss: tf.Tensor(0.2664161, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.0427189, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 12030\n",
+ "Discriminator Loss: tf.Tensor(0.30891538, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.2810376, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 12031\n",
+ "Discriminator Loss: tf.Tensor(0.31822184, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.374955, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 12032\n",
+ "Discriminator Loss: tf.Tensor(0.9687319, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.123795785, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 12033\n",
+ "Discriminator Loss: tf.Tensor(0.38461018, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.5724337, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 12034\n",
+ "Discriminator Loss: tf.Tensor(0.64284235, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.777313, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 12035\n",
+ "Discriminator Loss: tf.Tensor(1.6502526, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(3.5052307, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 12036\n",
+ "Discriminator Loss: tf.Tensor(0.6812656, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.70666176, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 12037\n",
+ "Discriminator Loss: tf.Tensor(0.8611532, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.4388285, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 12038\n",
+ "Discriminator Loss: tf.Tensor(0.81187284, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.42278707, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 12039\n",
+ "Discriminator Loss: tf.Tensor(0.8176243, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.7502768, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 12040\n",
+ "Discriminator Loss: tf.Tensor(0.89559984, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.0035038, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 12041\n",
+ "Discriminator Loss: tf.Tensor(0.642714, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.0061136, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 12042\n",
+ "Discriminator Loss: tf.Tensor(0.7065654, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.80128413, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 12043\n",
+ "Discriminator Loss: tf.Tensor(1.6072495, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(3.2022114, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 12044\n",
+ "Discriminator Loss: tf.Tensor(0.839513, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.2574794, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 12045\n",
+ "Discriminator Loss: tf.Tensor(0.58612484, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.2946033, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 12046\n",
+ "Discriminator Loss: tf.Tensor(0.38905457, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.82969904, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 12047\n",
+ "Discriminator Loss: tf.Tensor(0.7735746, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(3.0388281, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 12048\n",
+ "Discriminator Loss: tf.Tensor(0.30411786, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.2314023, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 12049\n",
+ "Discriminator Loss: tf.Tensor(1.4312927, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.33098415, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 12050\n",
+ "Discriminator Loss: tf.Tensor(0.7731164, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.7502707, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 12051\n",
+ "Discriminator Loss: tf.Tensor(1.4567543, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.3319919, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 12052\n",
+ "Discriminator Loss: tf.Tensor(0.4159573, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.0958054, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 12053\n",
+ "Discriminator Loss: tf.Tensor(0.57431495, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.69395274, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 12054\n",
+ "Discriminator Loss: tf.Tensor(0.9075161, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.794812, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 12055\n",
+ "Discriminator Loss: tf.Tensor(0.5132991, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.5714145, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 12056\n",
+ "Discriminator Loss: tf.Tensor(1.0271101, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.15771692, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 12057\n",
+ "Discriminator Loss: tf.Tensor(0.6493233, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.235655, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 12058\n",
+ "Discriminator Loss: tf.Tensor(0.42637548, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.80330944, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 12059\n",
+ "Discriminator Loss: tf.Tensor(1.4052788, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.661986, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 12060\n",
+ "Discriminator Loss: tf.Tensor(1.1083682, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.06968967, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 12061\n",
+ "Discriminator Loss: tf.Tensor(1.2200915, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.9161566, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 12062\n",
+ "Discriminator Loss: tf.Tensor(0.8945056, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.24496911, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 12063\n",
+ "Discriminator Loss: tf.Tensor(0.6148705, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.2078986, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 12064\n",
+ "Discriminator Loss: tf.Tensor(0.21524733, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.0860409, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 12065\n",
+ "Discriminator Loss: tf.Tensor(0.85889703, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.2838768, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 12066\n",
+ "Discriminator Loss: tf.Tensor(1.297266, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.6724958, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 12067\n",
+ "Discriminator Loss: tf.Tensor(0.23771328, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.8713538, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 12068\n",
+ "Discriminator Loss: tf.Tensor(0.56001645, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.7113922, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 12069\n",
+ "Discriminator Loss: tf.Tensor(0.22312105, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.6789331, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 12070\n",
+ "Discriminator Loss: tf.Tensor(0.2399588, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.7770838, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 12071\n",
+ "Discriminator Loss: tf.Tensor(0.977342, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(3.247537, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 12072\n",
+ "Discriminator Loss: tf.Tensor(0.4640283, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.6949226, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 12073\n",
+ "Discriminator Loss: tf.Tensor(0.96743894, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.06864525, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 12074\n",
+ "Discriminator Loss: tf.Tensor(0.9592038, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.9259319, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 12075\n",
+ "Discriminator Loss: tf.Tensor(1.2258463, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.17619546, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 12076\n",
+ "Discriminator Loss: tf.Tensor(0.5287717, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.5945113, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 12077\n",
+ "Discriminator Loss: tf.Tensor(1.1553999, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.0127057815, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 12078\n",
+ "Discriminator Loss: tf.Tensor(0.7678032, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.070073, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 12079\n",
+ "Discriminator Loss: tf.Tensor(0.7515179, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.26429984, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 12080\n",
+ "Discriminator Loss: tf.Tensor(0.58051753, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.3471758, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 12081\n",
+ "Discriminator Loss: tf.Tensor(0.61696136, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.2296462, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 12082\n",
+ "Discriminator Loss: tf.Tensor(0.93825155, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.1072692, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 12083\n",
+ "Discriminator Loss: tf.Tensor(0.35535103, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.1536758, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 12084\n",
+ "Discriminator Loss: tf.Tensor(0.5548969, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.64993626, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 12085\n",
+ "Discriminator Loss: tf.Tensor(0.7307852, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(3.0971823, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 12086\n",
+ "Discriminator Loss: tf.Tensor(0.43989122, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.3481808, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 12087\n",
+ "Discriminator Loss: tf.Tensor(1.1807452, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.02461189, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 12088\n",
+ "Discriminator Loss: tf.Tensor(0.69563556, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.96116, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 12089\n",
+ "Discriminator Loss: tf.Tensor(0.32274935, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.255024, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 12090\n",
+ "Discriminator Loss: tf.Tensor(1.2591821, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.09060521, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 12091\n",
+ "Discriminator Loss: tf.Tensor(1.0066091, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.2115657, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 12092\n",
+ "Discriminator Loss: tf.Tensor(0.3249597, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.7221225, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 12093\n",
+ "Discriminator Loss: tf.Tensor(0.5416042, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.797063, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 12094\n",
+ "Discriminator Loss: tf.Tensor(0.22847131, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.6715221, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 12095\n",
+ "Discriminator Loss: tf.Tensor(0.48261598, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.76241875, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 12096\n",
+ "Discriminator Loss: tf.Tensor(0.9071256, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(3.2996712, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 12097\n",
+ "Discriminator Loss: tf.Tensor(0.2883026, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.61299, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 12098\n",
+ "Discriminator Loss: tf.Tensor(1.6447463, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.20723379, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 12099\n",
+ "Discriminator Loss: tf.Tensor(0.5572521, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.980868, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 12100\n",
+ "Discriminator Loss: tf.Tensor(0.61938953, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.5553914, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 12101\n",
+ "Discriminator Loss: tf.Tensor(0.5920315, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.4326105, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 12102\n",
+ "Discriminator Loss: tf.Tensor(1.1575787, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.22135854, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 12103\n",
+ "Discriminator Loss: tf.Tensor(1.1424308, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.3784783, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 12104\n",
+ "Discriminator Loss: tf.Tensor(1.0647117, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.23386645, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 12105\n",
+ "Discriminator Loss: tf.Tensor(0.51671195, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.3663328, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 12106\n",
+ "Discriminator Loss: tf.Tensor(0.27634305, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.2338601, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 12107\n",
+ "Discriminator Loss: tf.Tensor(0.9040413, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.13417011, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 12108\n",
+ "Discriminator Loss: tf.Tensor(0.5371236, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.4836938, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 12109\n",
+ "Discriminator Loss: tf.Tensor(0.25602245, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.5451622, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 12110\n",
+ "Discriminator Loss: tf.Tensor(0.7879443, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.609866, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 12111\n",
+ "Discriminator Loss: tf.Tensor(0.45168182, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.630557, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 12112\n",
+ "Discriminator Loss: tf.Tensor(1.5565294, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.15737736, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 12113\n",
+ "Discriminator Loss: tf.Tensor(1.0840168, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.7600963, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 12114\n",
+ "Discriminator Loss: tf.Tensor(1.0653073, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.29819492, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 12115\n",
+ "Discriminator Loss: tf.Tensor(0.77747035, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.1178284, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 12116\n",
+ "Discriminator Loss: tf.Tensor(1.1247942, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.029980121, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 12117\n",
+ "Discriminator Loss: tf.Tensor(0.8845571, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.3114302, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 12118\n",
+ "Discriminator Loss: tf.Tensor(0.82074577, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.30021653, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 12119\n",
+ "Discriminator Loss: tf.Tensor(0.94131005, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.4133377, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 12120\n",
+ "Discriminator Loss: tf.Tensor(0.43392047, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.75643396, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 12121\n",
+ "Discriminator Loss: tf.Tensor(0.8833102, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.953557, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 12122\n",
+ "Discriminator Loss: tf.Tensor(0.26090074, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.2998432, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 12123\n",
+ "Discriminator Loss: tf.Tensor(0.88522863, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.22583519, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 12124\n",
+ "Discriminator Loss: tf.Tensor(0.74299395, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.6233096, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 12125\n",
+ "Discriminator Loss: tf.Tensor(0.18398514, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.0476836, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 12126\n",
+ "Discriminator Loss: tf.Tensor(1.1371822, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.019153418, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 12127\n",
+ "Discriminator Loss: tf.Tensor(1.1793773, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.4719505, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 12128\n",
+ "Discriminator Loss: tf.Tensor(0.5246153, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.678768, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 12129\n",
+ "Discriminator Loss: tf.Tensor(1.4303944, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.521744, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 12130\n",
+ "Discriminator Loss: tf.Tensor(0.9780145, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.26539412, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 12131\n",
+ "Discriminator Loss: tf.Tensor(0.6490369, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.1684394, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 12132\n",
+ "Discriminator Loss: tf.Tensor(0.12494357, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.1566352, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 12133\n",
+ "Discriminator Loss: tf.Tensor(0.57109195, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.48887494, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 12134\n",
+ "Discriminator Loss: tf.Tensor(0.734324, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.7736943, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 12135\n",
+ "Discriminator Loss: tf.Tensor(0.32291576, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.6254653, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 12136\n",
+ "Discriminator Loss: tf.Tensor(0.18381402, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.9137452, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 12137\n",
+ "Discriminator Loss: tf.Tensor(1.1004162, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(3.1105378, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 12138\n",
+ "Discriminator Loss: tf.Tensor(0.44178084, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.79405874, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 12139\n",
+ "Discriminator Loss: tf.Tensor(0.90734553, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.8600247, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 12140\n",
+ "Discriminator Loss: tf.Tensor(0.9729674, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.54092807, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 12141\n",
+ "Discriminator Loss: tf.Tensor(1.0558964, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.2374623, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 12142\n",
+ "Discriminator Loss: tf.Tensor(1.0801939, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.20774078, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 12143\n",
+ "Discriminator Loss: tf.Tensor(1.3624253, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.2455237, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 12144\n",
+ "Discriminator Loss: tf.Tensor(1.0321519, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.22959869, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 12145\n",
+ "Discriminator Loss: tf.Tensor(0.49910754, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.3063776, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 12146\n",
+ "Discriminator Loss: tf.Tensor(0.26866657, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.1457924, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 12147\n",
+ "Discriminator Loss: tf.Tensor(0.6686458, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.4016862, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 12148\n",
+ "Discriminator Loss: tf.Tensor(1.0044113, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.8837223, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 12149\n",
+ "Discriminator Loss: tf.Tensor(0.33204508, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.0263436, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 12150\n",
+ "Discriminator Loss: tf.Tensor(1.3393252, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.26193273, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 12151\n",
+ "Discriminator Loss: tf.Tensor(1.0779258, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.901958, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 12152\n",
+ "Discriminator Loss: tf.Tensor(0.35622662, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.8782069, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 12153\n",
+ "Discriminator Loss: tf.Tensor(0.2250708, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.5622313, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 12154\n",
+ "Discriminator Loss: tf.Tensor(0.41780144, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.8939797, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 12155\n",
+ "Discriminator Loss: tf.Tensor(1.4360664, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(3.2844162, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 12156\n",
+ "Discriminator Loss: tf.Tensor(0.8668769, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.73896927, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 12157\n",
+ "Discriminator Loss: tf.Tensor(1.2661223, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.3847005, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 12158\n",
+ "Discriminator Loss: tf.Tensor(0.32868266, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.8562229, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 12159\n",
+ "Discriminator Loss: tf.Tensor(0.8635529, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.8226178, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 12160\n",
+ "Discriminator Loss: tf.Tensor(0.2906105, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.6338977, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 12161\n",
+ "Discriminator Loss: tf.Tensor(0.65870166, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.4290545, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 12162\n",
+ "Discriminator Loss: tf.Tensor(0.9599758, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.8181524, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 12163\n",
+ "Discriminator Loss: tf.Tensor(0.47417998, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.9043908, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 12164\n",
+ "Discriminator Loss: tf.Tensor(1.224594, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.740738, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 12165\n",
+ "Discriminator Loss: tf.Tensor(0.34714046, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.9138582, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 12166\n",
+ "Discriminator Loss: tf.Tensor(0.7858692, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.2294476, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 12167\n",
+ "Discriminator Loss: tf.Tensor(0.59994346, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.576884, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 12168\n",
+ "Discriminator Loss: tf.Tensor(1.4205921, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.8294747, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 12169\n",
+ "Discriminator Loss: tf.Tensor(0.730656, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.3234304, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 12170\n",
+ "Discriminator Loss: tf.Tensor(1.464406, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.4385674, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 12171\n",
+ "Discriminator Loss: tf.Tensor(0.28019512, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.882121, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 12172\n",
+ "Discriminator Loss: tf.Tensor(0.64647996, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.7033215, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 12173\n",
+ "Discriminator Loss: tf.Tensor(0.3737951, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.3431183, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 12174\n",
+ "Discriminator Loss: tf.Tensor(0.71295464, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.3124334, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 12175\n",
+ "Discriminator Loss: tf.Tensor(0.48354787, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.851436, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 12176\n",
+ "Discriminator Loss: tf.Tensor(0.2737918, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.228594, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 12177\n",
+ "Discriminator Loss: tf.Tensor(2.1795774, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.8910281, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 12178\n",
+ "Discriminator Loss: tf.Tensor(1.2341484, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.7719351, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 12179\n",
+ "Discriminator Loss: tf.Tensor(1.2327744, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.020184208, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 12180\n",
+ "Discriminator Loss: tf.Tensor(0.48515847, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.4343615, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 12181\n",
+ "Discriminator Loss: tf.Tensor(0.83698946, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.17899708, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 12182\n",
+ "Discriminator Loss: tf.Tensor(0.8072451, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.6899798, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 12183\n",
+ "Discriminator Loss: tf.Tensor(0.21992533, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.9242637, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 12184\n",
+ "Discriminator Loss: tf.Tensor(0.7758987, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(3.0072925, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 12185\n",
+ "Discriminator Loss: tf.Tensor(0.15925488, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.0539807, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 12186\n",
+ "Discriminator Loss: tf.Tensor(0.6912008, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.48190808, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 12187\n",
+ "Discriminator Loss: tf.Tensor(1.4342902, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(3.1897686, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 12188\n",
+ "Discriminator Loss: tf.Tensor(0.6563308, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.6329042, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 12189\n",
+ "Discriminator Loss: tf.Tensor(0.7260733, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.6908505, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 12190\n",
+ "Discriminator Loss: tf.Tensor(0.6764183, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.0361985, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 12191\n",
+ "Discriminator Loss: tf.Tensor(1.3938464, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.27516967, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 12192\n",
+ "Discriminator Loss: tf.Tensor(0.34309778, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.4057524, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 12193\n",
+ "Discriminator Loss: tf.Tensor(0.39775103, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.0318977, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 12194\n",
+ "Discriminator Loss: tf.Tensor(0.8196631, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.26621792, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 12195\n",
+ "Discriminator Loss: tf.Tensor(1.039445, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(3.2347653, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 12196\n",
+ "Discriminator Loss: tf.Tensor(0.45951292, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.61824244, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 12197\n",
+ "Discriminator Loss: tf.Tensor(1.1199092, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.6451855, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 12198\n",
+ "Discriminator Loss: tf.Tensor(0.3728627, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.1510082, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 12199\n",
+ "Discriminator Loss: tf.Tensor(0.9648706, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.10521261, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 12200\n",
+ "Discriminator Loss: tf.Tensor(0.76710314, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.4061227, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 12201\n",
+ "Discriminator Loss: tf.Tensor(0.31536645, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.83460444, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 12202\n",
+ "Discriminator Loss: tf.Tensor(0.7416256, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.7406235, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 12203\n",
+ "Discriminator Loss: tf.Tensor(0.2387241, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.1442227, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 12204\n",
+ "Discriminator Loss: tf.Tensor(1.6846579, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.46274272, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 12205\n",
+ "Discriminator Loss: tf.Tensor(0.62759894, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.752016, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 12206\n",
+ "Discriminator Loss: tf.Tensor(0.4742006, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.6497639, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 12207\n",
+ "Discriminator Loss: tf.Tensor(0.42785555, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.6473413, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 12208\n",
+ "Discriminator Loss: tf.Tensor(0.25836742, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.2947212, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 12209\n",
+ "Discriminator Loss: tf.Tensor(0.914801, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.29912195, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 12210\n",
+ "Discriminator Loss: tf.Tensor(0.8990257, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(3.0534394, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 12211\n",
+ "Discriminator Loss: tf.Tensor(0.12207471, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.4744802, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 12212\n",
+ "Discriminator Loss: tf.Tensor(0.57516307, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.8741188, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 12213\n",
+ "Discriminator Loss: tf.Tensor(0.8829944, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.7158449, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 12214\n",
+ "Discriminator Loss: tf.Tensor(0.689137, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.7202015, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 12215\n",
+ "Discriminator Loss: tf.Tensor(0.3278565, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.0358622, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 12216\n",
+ "Discriminator Loss: tf.Tensor(0.57138413, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.79630464, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 12217\n",
+ "Discriminator Loss: tf.Tensor(0.9171033, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(3.415107, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 12218\n",
+ "Discriminator Loss: tf.Tensor(0.22677293, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.4742814, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 12219\n",
+ "Discriminator Loss: tf.Tensor(0.2956658, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.7356348, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 12220\n",
+ "Discriminator Loss: tf.Tensor(0.8094876, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(4.548536, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 12221\n",
+ "Discriminator Loss: tf.Tensor(0.040776238, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.1141412, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 12222\n",
+ "Discriminator Loss: tf.Tensor(0.13482372, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.2882156, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 12223\n",
+ "Discriminator Loss: tf.Tensor(9.025216, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.7163364, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 12224\n",
+ "Discriminator Loss: tf.Tensor(59.159023, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.6718243, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 12225\n",
+ "Discriminator Loss: tf.Tensor(12.348808, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.40689003, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 12226\n",
+ "Discriminator Loss: tf.Tensor(5.7838492, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.46416855, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 12227\n",
+ "Discriminator Loss: tf.Tensor(3.9355354, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.47489393, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 12228\n",
+ "Discriminator Loss: tf.Tensor(3.4176724, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.5882123, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 12229\n",
+ "Discriminator Loss: tf.Tensor(2.9150972, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.72723913, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 12230\n",
+ "Discriminator Loss: tf.Tensor(2.6845584, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.7888758, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 12231\n",
+ "Discriminator Loss: tf.Tensor(2.6380482, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.94391376, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 12232\n",
+ "Discriminator Loss: tf.Tensor(2.3140996, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.83752966, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 12233\n",
+ "Discriminator Loss: tf.Tensor(2.7978828, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.96407956, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 12234\n",
+ "Discriminator Loss: tf.Tensor(2.8087654, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.37808535, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 12235\n",
+ "Discriminator Loss: tf.Tensor(2.4805503, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.4191264, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 12236\n",
+ "Discriminator Loss: tf.Tensor(2.3679216, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.41875923, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 12237\n",
+ "Discriminator Loss: tf.Tensor(2.2412872, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.41590467, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 12238\n",
+ "Discriminator Loss: tf.Tensor(2.1876252, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.4251287, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 12239\n",
+ "Discriminator Loss: tf.Tensor(2.1991808, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.41941348, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 12240\n",
+ "Discriminator Loss: tf.Tensor(2.0748293, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.42982492, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 12241\n",
+ "Discriminator Loss: tf.Tensor(1.9787599, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.43655005, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 12242\n",
+ "Discriminator Loss: tf.Tensor(1.9877964, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.45416716, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 12243\n",
+ "Discriminator Loss: tf.Tensor(1.9821686, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.45652166, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 12244\n",
+ "Discriminator Loss: tf.Tensor(1.8927203, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.49366537, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 12245\n",
+ "Discriminator Loss: tf.Tensor(1.9629939, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.5032453, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 12246\n",
+ "Discriminator Loss: tf.Tensor(1.8879881, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.5190299, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 12247\n",
+ "Discriminator Loss: tf.Tensor(1.948476, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.5089056, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 12248\n",
+ "Discriminator Loss: tf.Tensor(1.8551447, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.57248336, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 12249\n",
+ "Discriminator Loss: tf.Tensor(1.8417209, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.53870004, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 12250\n",
+ "Discriminator Loss: tf.Tensor(1.8807669, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.59622663, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 12251\n",
+ "Discriminator Loss: tf.Tensor(1.834822, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.562102, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 12252\n",
+ "Discriminator Loss: tf.Tensor(1.7883282, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.61087245, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 12253\n",
+ "Discriminator Loss: tf.Tensor(1.8044027, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.6042426, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 12254\n",
+ "Discriminator Loss: tf.Tensor(1.7497388, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.6111452, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 12255\n",
+ "Discriminator Loss: tf.Tensor(1.6896317, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.60014623, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 12256\n",
+ "Discriminator Loss: tf.Tensor(1.751644, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.5726684, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 12257\n",
+ "Discriminator Loss: tf.Tensor(1.7703705, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.60399836, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 12258\n",
+ "Discriminator Loss: tf.Tensor(1.6685219, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.6167473, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 12259\n",
+ "Discriminator Loss: tf.Tensor(1.684272, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.77970535, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 12260\n",
+ "Discriminator Loss: tf.Tensor(1.6255597, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.76990634, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 12261\n",
+ "Discriminator Loss: tf.Tensor(1.5687051, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.991679, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 12262\n",
+ "Discriminator Loss: tf.Tensor(1.6624055, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.73702, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 12263\n",
+ "Discriminator Loss: tf.Tensor(1.5986233, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.81850904, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 12264\n",
+ "Discriminator Loss: tf.Tensor(1.8042336, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.7550071, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 12265\n",
+ "Discriminator Loss: tf.Tensor(1.5049818, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.939284, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 12266\n",
+ "Discriminator Loss: tf.Tensor(1.6516871, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.1978494, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 12267\n",
+ "Discriminator Loss: tf.Tensor(1.7580576, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.4758227, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 12268\n",
+ "Discriminator Loss: tf.Tensor(1.6186389, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.0789241, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 12269\n",
+ "Discriminator Loss: tf.Tensor(1.2923988, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.018059734, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 12270\n",
+ "Discriminator Loss: tf.Tensor(1.2195511, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.4911976, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 12271\n",
+ "Discriminator Loss: tf.Tensor(1.1071817, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.45671535, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 12272\n",
+ "Discriminator Loss: tf.Tensor(1.4449651, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.896432, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 12273\n",
+ "Discriminator Loss: tf.Tensor(1.382424, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.72829866, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 12274\n",
+ "Discriminator Loss: tf.Tensor(1.2229335, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.0124366, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 12275\n",
+ "Discriminator Loss: tf.Tensor(1.3038208, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.15704553, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 12276\n",
+ "Discriminator Loss: tf.Tensor(1.1727802, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.7428954, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 12277\n",
+ "Discriminator Loss: tf.Tensor(0.6468184, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.1226739, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 12278\n",
+ "Discriminator Loss: tf.Tensor(1.6811297, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.568343, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 12279\n",
+ "Discriminator Loss: tf.Tensor(0.92727584, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.9181752, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 12280\n",
+ "Discriminator Loss: tf.Tensor(0.87680554, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.2402167, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 12281\n",
+ "Discriminator Loss: tf.Tensor(2.2028542, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-1.1138841, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 12282\n",
+ "Discriminator Loss: tf.Tensor(0.85106647, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.93073815, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 12283\n",
+ "Discriminator Loss: tf.Tensor(0.65992624, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.498212, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 12284\n",
+ "Discriminator Loss: tf.Tensor(1.420779, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.17595279, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 12285\n",
+ "Discriminator Loss: tf.Tensor(0.63728625, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.8166754, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 12286\n",
+ "Discriminator Loss: tf.Tensor(0.6747538, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.6979309, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 12287\n",
+ "Discriminator Loss: tf.Tensor(1.0153823, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.07913295, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 12288\n",
+ "Discriminator Loss: tf.Tensor(0.6754825, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.5050896, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 12289\n",
+ "Discriminator Loss: tf.Tensor(0.6585901, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.3967533, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 12290\n",
+ "Discriminator Loss: tf.Tensor(0.5488001, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.7919534, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 12291\n",
+ "Discriminator Loss: tf.Tensor(0.94366455, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.3071825, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 12292\n",
+ "Discriminator Loss: tf.Tensor(0.72683585, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.5682931, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 12293\n",
+ "Discriminator Loss: tf.Tensor(1.0726908, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.011816221, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 12294\n",
+ "Discriminator Loss: tf.Tensor(0.68959624, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.8997725, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 12295\n",
+ "Discriminator Loss: tf.Tensor(0.633997, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.4175731, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 12296\n",
+ "Discriminator Loss: tf.Tensor(0.4853727, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.0870824, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 12297\n",
+ "Discriminator Loss: tf.Tensor(0.22197354, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.967815, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 12298\n",
+ "Discriminator Loss: tf.Tensor(1.1166694, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.7664826, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 12299\n",
+ "Discriminator Loss: tf.Tensor(0.42477208, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.6821478, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 12300\n",
+ "Discriminator Loss: tf.Tensor(0.89526916, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.3501287, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 12301\n",
+ "Discriminator Loss: tf.Tensor(0.5857441, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.7614546, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 12302\n",
+ "Discriminator Loss: tf.Tensor(0.7432278, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.589445, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 12303\n",
+ "Discriminator Loss: tf.Tensor(0.81919456, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.24744898, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 12304\n",
+ "Discriminator Loss: tf.Tensor(0.73256373, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.0961297, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 12305\n",
+ "Discriminator Loss: tf.Tensor(0.4344281, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.6330796, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 12306\n",
+ "Discriminator Loss: tf.Tensor(0.5256101, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.9124374, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 12307\n",
+ "Discriminator Loss: tf.Tensor(0.28533372, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.81658727, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 12308\n",
+ "Discriminator Loss: tf.Tensor(0.82912713, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.7969036, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 12309\n",
+ "Discriminator Loss: tf.Tensor(0.62781376, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.39697123, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 12310\n",
+ "Discriminator Loss: tf.Tensor(0.6213, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.2880356, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 12311\n",
+ "Discriminator Loss: tf.Tensor(0.75222075, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.4833119, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 12312\n",
+ "Discriminator Loss: tf.Tensor(0.88730735, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(3.0759156, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 12313\n",
+ "Discriminator Loss: tf.Tensor(0.4513469, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.76393336, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 12314\n",
+ "Discriminator Loss: tf.Tensor(1.0501418, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(3.2290456, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 12315\n",
+ "Discriminator Loss: tf.Tensor(0.20934314, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.8198948, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 12316\n",
+ "Discriminator Loss: tf.Tensor(0.8635453, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(3.6516874, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 12317\n",
+ "Discriminator Loss: tf.Tensor(0.18416536, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.76124, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 12318\n",
+ "Discriminator Loss: tf.Tensor(0.34688988, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.688526, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 12319\n",
+ "Discriminator Loss: tf.Tensor(0.92688715, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(3.7387724, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 12320\n",
+ "Discriminator Loss: tf.Tensor(0.43958998, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.937395, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 12321\n",
+ "Discriminator Loss: tf.Tensor(0.75560987, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.2705241, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 12322\n",
+ "Discriminator Loss: tf.Tensor(0.7242329, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(3.1964219, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 12323\n",
+ "Discriminator Loss: tf.Tensor(0.42953926, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.5186887, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 12324\n",
+ "Discriminator Loss: tf.Tensor(0.65650535, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.53446, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 12325\n",
+ "Discriminator Loss: tf.Tensor(0.701507, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(3.0672407, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 12326\n",
+ "Discriminator Loss: tf.Tensor(0.08871142, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.7508274, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 12327\n",
+ "Discriminator Loss: tf.Tensor(0.12578845, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.94108516, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 12328\n",
+ "Discriminator Loss: tf.Tensor(1.7958641, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(3.347832, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 12329\n",
+ "Discriminator Loss: tf.Tensor(0.43929094, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.85684234, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 12330\n",
+ "Discriminator Loss: tf.Tensor(1.0415385, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(3.091596, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 12331\n",
+ "Discriminator Loss: tf.Tensor(0.31215, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.3067452, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 12332\n",
+ "Discriminator Loss: tf.Tensor(1.1651167, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.017896036, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 12333\n",
+ "Discriminator Loss: tf.Tensor(0.8903495, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.2866561, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 12334\n",
+ "Discriminator Loss: tf.Tensor(0.5540445, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.9150758, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 12335\n",
+ "Discriminator Loss: tf.Tensor(0.903577, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.2584617, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 12336\n",
+ "Discriminator Loss: tf.Tensor(1.2153568, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.25691524, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 12337\n",
+ "Discriminator Loss: tf.Tensor(1.0861617, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.9660574, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 12338\n",
+ "Discriminator Loss: tf.Tensor(0.7844127, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.30119124, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 12339\n",
+ "Discriminator Loss: tf.Tensor(0.48947698, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.0545933, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 12340\n",
+ "Discriminator Loss: tf.Tensor(0.27635917, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.3428931, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 12341\n",
+ "Discriminator Loss: tf.Tensor(0.6315906, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.5592351, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 12342\n",
+ "Discriminator Loss: tf.Tensor(0.5670121, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.5482576, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 12343\n",
+ "Discriminator Loss: tf.Tensor(0.7561143, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.44246474, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 12344\n",
+ "Discriminator Loss: tf.Tensor(1.3449343, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.4567301, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 12345\n",
+ "Discriminator Loss: tf.Tensor(0.9509512, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.29035088, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 12346\n",
+ "Discriminator Loss: tf.Tensor(0.7076347, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.7570794, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 12347\n",
+ "Discriminator Loss: tf.Tensor(0.68435544, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.4961238, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 12348\n",
+ "Discriminator Loss: tf.Tensor(0.6829494, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.8190897, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 12349\n",
+ "Discriminator Loss: tf.Tensor(0.5267529, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.6271466, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 12350\n",
+ "Discriminator Loss: tf.Tensor(1.0231394, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.8924916, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 12351\n",
+ "Discriminator Loss: tf.Tensor(0.19806254, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.1062223, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 12352\n",
+ "Discriminator Loss: tf.Tensor(1.1902031, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.05876246, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 12353\n",
+ "Discriminator Loss: tf.Tensor(1.1159154, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(3.0281868, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 12354\n",
+ "Discriminator Loss: tf.Tensor(0.86671454, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.51181847, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 12355\n",
+ "Discriminator Loss: tf.Tensor(0.75531244, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(3.0152044, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 12356\n",
+ "Discriminator Loss: tf.Tensor(0.21233031, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.0855598, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 12357\n",
+ "Discriminator Loss: tf.Tensor(0.4760532, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.57815874, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 12358\n",
+ "Discriminator Loss: tf.Tensor(1.2993572, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(3.2118645, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 12359\n",
+ "Discriminator Loss: tf.Tensor(0.09532773, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.145312, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 12360\n",
+ "Discriminator Loss: tf.Tensor(1.3022317, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.27342615, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 12361\n",
+ "Discriminator Loss: tf.Tensor(1.2201011, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.1509695, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 12362\n",
+ "Discriminator Loss: tf.Tensor(0.9597981, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.21462363, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 12363\n",
+ "Discriminator Loss: tf.Tensor(0.5538703, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.027993, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 12364\n",
+ "Discriminator Loss: tf.Tensor(0.8938406, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.32015002, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 12365\n",
+ "Discriminator Loss: tf.Tensor(0.7134203, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.035635, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 12366\n",
+ "Discriminator Loss: tf.Tensor(0.6831231, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.5786479, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 12367\n",
+ "Discriminator Loss: tf.Tensor(1.0516276, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.8844268, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 12368\n",
+ "Discriminator Loss: tf.Tensor(0.3468155, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.980248, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 12369\n",
+ "Discriminator Loss: tf.Tensor(1.057907, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.5979125, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 12370\n",
+ "Discriminator Loss: tf.Tensor(0.94464105, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.37411556, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 12371\n",
+ "Discriminator Loss: tf.Tensor(0.5802991, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.2913678, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 12372\n",
+ "Discriminator Loss: tf.Tensor(0.5197953, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.6046544, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 12373\n",
+ "Discriminator Loss: tf.Tensor(0.5996995, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.9980204, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 12374\n",
+ "Discriminator Loss: tf.Tensor(0.20272407, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.1157955, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 12375\n",
+ "Discriminator Loss: tf.Tensor(1.9417261, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.85372275, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 12376\n",
+ "Discriminator Loss: tf.Tensor(1.2780734, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.2073212, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 12377\n",
+ "Discriminator Loss: tf.Tensor(0.8485746, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.48434147, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 12378\n",
+ "Discriminator Loss: tf.Tensor(0.7318578, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.029912, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 12379\n",
+ "Discriminator Loss: tf.Tensor(0.6207387, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.5625003, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 12380\n",
+ "Discriminator Loss: tf.Tensor(0.6510904, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.751198, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 12381\n",
+ "Discriminator Loss: tf.Tensor(0.5647973, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.69643146, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 12382\n",
+ "Discriminator Loss: tf.Tensor(0.26355582, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.9082882, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 12383\n",
+ "Discriminator Loss: tf.Tensor(0.12506586, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.4795974, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 12384\n",
+ "Discriminator Loss: tf.Tensor(1.2685732, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.3549544, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 12385\n",
+ "Discriminator Loss: tf.Tensor(1.1964632, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(3.6784942, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 12386\n",
+ "Discriminator Loss: tf.Tensor(0.06993363, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.1387306, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 12387\n",
+ "Discriminator Loss: tf.Tensor(32.915577, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.2411102, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 12388\n",
+ "Discriminator Loss: tf.Tensor(24.10398, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.38310134, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 12389\n",
+ "Discriminator Loss: tf.Tensor(6.300869, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.072832726, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 12390\n",
+ "Discriminator Loss: tf.Tensor(4.115168, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.14562792, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 12391\n",
+ "Discriminator Loss: tf.Tensor(3.7647614, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.09854612, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 12392\n",
+ "Discriminator Loss: tf.Tensor(3.281532, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.13164306, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 12393\n",
+ "Discriminator Loss: tf.Tensor(2.8668613, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.13187599, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 12394\n",
+ "Discriminator Loss: tf.Tensor(2.6733496, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.15128773, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 12395\n",
+ "Discriminator Loss: tf.Tensor(2.5637555, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.1455269, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 12396\n",
+ "Discriminator Loss: tf.Tensor(2.6492012, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.16762698, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 12397\n",
+ "Discriminator Loss: tf.Tensor(2.3370948, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.15506957, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 12398\n",
+ "Discriminator Loss: tf.Tensor(2.372377, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.21077794, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 12399\n",
+ "Discriminator Loss: tf.Tensor(2.3571105, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.21446101, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 12400\n",
+ "Discriminator Loss: tf.Tensor(2.2138362, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.24862047, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 12401\n",
+ "Discriminator Loss: tf.Tensor(2.1628504, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.25755182, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 12402\n",
+ "Discriminator Loss: tf.Tensor(2.0680807, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.2944454, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 12403\n",
+ "Discriminator Loss: tf.Tensor(2.0709891, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.27829897, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 12404\n",
+ "Discriminator Loss: tf.Tensor(2.0980825, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.3431038, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 12405\n",
+ "Discriminator Loss: tf.Tensor(2.07131, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.3188005, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 12406\n",
+ "Discriminator Loss: tf.Tensor(2.0226996, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.32604107, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 12407\n",
+ "Discriminator Loss: tf.Tensor(1.9413743, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.33775774, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 12408\n",
+ "Discriminator Loss: tf.Tensor(1.986236, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.43133244, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 12409\n",
+ "Discriminator Loss: tf.Tensor(1.8970433, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.34525108, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 12410\n",
+ "Discriminator Loss: tf.Tensor(1.8844643, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.4357376, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 12411\n",
+ "Discriminator Loss: tf.Tensor(1.8991305, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.4606456, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 12412\n",
+ "Discriminator Loss: tf.Tensor(1.9190501, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.44279394, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 12413\n",
+ "Discriminator Loss: tf.Tensor(1.8715203, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.4279314, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 12414\n",
+ "Discriminator Loss: tf.Tensor(1.87894, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.4842051, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 12415\n",
+ "Discriminator Loss: tf.Tensor(1.856965, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.4215703, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 12416\n",
+ "Discriminator Loss: tf.Tensor(1.798239, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.40810147, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 12417\n",
+ "Discriminator Loss: tf.Tensor(1.8259792, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.5322546, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 12418\n",
+ "Discriminator Loss: tf.Tensor(1.7837129, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.4749404, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 12419\n",
+ "Discriminator Loss: tf.Tensor(1.8637699, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.53236437, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 12420\n",
+ "Discriminator Loss: tf.Tensor(1.7094289, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.562252, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 12421\n",
+ "Discriminator Loss: tf.Tensor(1.6108954, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.75357133, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 12422\n",
+ "Discriminator Loss: tf.Tensor(1.4079523, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.66951805, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 12423\n",
+ "Discriminator Loss: tf.Tensor(5.7941027, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.899928, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 12424\n",
+ "Discriminator Loss: tf.Tensor(2.1451392, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.8562948, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 12425\n",
+ "Discriminator Loss: tf.Tensor(1.8592852, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.097525716, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 12426\n",
+ "Discriminator Loss: tf.Tensor(1.7334281, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.06261333, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 12427\n",
+ "Discriminator Loss: tf.Tensor(1.525058, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.12058154, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 12428\n",
+ "Discriminator Loss: tf.Tensor(1.8957164, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.43474218, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 12429\n",
+ "Discriminator Loss: tf.Tensor(1.9889734, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.25952634, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 12430\n",
+ "Discriminator Loss: tf.Tensor(2.0845165, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.14013056, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 12431\n",
+ "Discriminator Loss: tf.Tensor(1.5681478, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.27747846, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 12432\n",
+ "Discriminator Loss: tf.Tensor(1.3161683, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.12640558, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 12433\n",
+ "Discriminator Loss: tf.Tensor(1.4286581, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.26872748, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 12434\n",
+ "Discriminator Loss: tf.Tensor(1.6645157, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.9240422, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 12435\n",
+ "Discriminator Loss: tf.Tensor(1.547368, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.0089464, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 12436\n",
+ "Discriminator Loss: tf.Tensor(1.7377412, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.075201884, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 12437\n",
+ "Discriminator Loss: tf.Tensor(1.6656175, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.32930443, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 12438\n",
+ "Discriminator Loss: tf.Tensor(1.472371, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.53631544, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 12439\n",
+ "Discriminator Loss: tf.Tensor(1.313993, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.6953433, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 12440\n",
+ "Discriminator Loss: tf.Tensor(0.9940202, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.0380172, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 12441\n",
+ "Discriminator Loss: tf.Tensor(2.053784, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.8204673, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 12442\n",
+ "Discriminator Loss: tf.Tensor(1.2394792, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.31217974, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 12443\n",
+ "Discriminator Loss: tf.Tensor(0.95925254, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.60898316, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 12444\n",
+ "Discriminator Loss: tf.Tensor(0.8499798, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.1949733, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 12445\n",
+ "Discriminator Loss: tf.Tensor(1.9871886, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.9124961, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 12446\n",
+ "Discriminator Loss: tf.Tensor(1.0995375, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.69864196, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 12447\n",
+ "Discriminator Loss: tf.Tensor(0.37367767, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.1031685, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 12448\n",
+ "Discriminator Loss: tf.Tensor(1.4413627, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.10663963, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 12449\n",
+ "Discriminator Loss: tf.Tensor(0.78595877, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.93073195, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 12450\n",
+ "Discriminator Loss: tf.Tensor(0.583102, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.7529966, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 12451\n",
+ "Discriminator Loss: tf.Tensor(1.5114055, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.3892498, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 12452\n",
+ "Discriminator Loss: tf.Tensor(1.0370448, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.2219522, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 12453\n",
+ "Discriminator Loss: tf.Tensor(0.42016682, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.2391565, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 12454\n",
+ "Discriminator Loss: tf.Tensor(0.9296648, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.09259987, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 12455\n",
+ "Discriminator Loss: tf.Tensor(0.7846333, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.3830404, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 12456\n",
+ "Discriminator Loss: tf.Tensor(1.2230117, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.1284097, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 12457\n",
+ "Discriminator Loss: tf.Tensor(0.5797749, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.3500686, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 12458\n",
+ "Discriminator Loss: tf.Tensor(1.1152745, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.048003007, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 12459\n",
+ "Discriminator Loss: tf.Tensor(0.4366138, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.6989965, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 12460\n",
+ "Discriminator Loss: tf.Tensor(0.49740857, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.58960104, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 12461\n",
+ "Discriminator Loss: tf.Tensor(0.8339743, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.4277558, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 12462\n",
+ "Discriminator Loss: tf.Tensor(0.9206589, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.17916115, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 12463\n",
+ "Discriminator Loss: tf.Tensor(0.709418, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.171532, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 12464\n",
+ "Discriminator Loss: tf.Tensor(0.28221384, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.8490928, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 12465\n",
+ "Discriminator Loss: tf.Tensor(0.4193082, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.391387, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 12466\n",
+ "Discriminator Loss: tf.Tensor(1.2211565, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.13579777, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 12467\n",
+ "Discriminator Loss: tf.Tensor(1.3524885, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.9378749, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 12468\n",
+ "Discriminator Loss: tf.Tensor(2.4690037, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-1.0906441, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 12469\n",
+ "Discriminator Loss: tf.Tensor(0.4878047, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.2158476, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 12470\n",
+ "Discriminator Loss: tf.Tensor(1.3907051, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.31909952, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 12471\n",
+ "Discriminator Loss: tf.Tensor(0.69359064, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.7108612, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 12472\n",
+ "Discriminator Loss: tf.Tensor(0.8675582, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.28961685, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 12473\n",
+ "Discriminator Loss: tf.Tensor(0.36350262, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.7727686, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 12474\n",
+ "Discriminator Loss: tf.Tensor(0.5249611, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.538528, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 12475\n",
+ "Discriminator Loss: tf.Tensor(0.59221625, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.4561799, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 12476\n",
+ "Discriminator Loss: tf.Tensor(0.36695138, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.80819654, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 12477\n",
+ "Discriminator Loss: tf.Tensor(1.0944749, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.8479755, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 12478\n",
+ "Discriminator Loss: tf.Tensor(0.5574575, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.5552621, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 12479\n",
+ "Discriminator Loss: tf.Tensor(0.82970226, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.5106409, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 12480\n",
+ "Discriminator Loss: tf.Tensor(0.11236104, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.1889223, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 12481\n",
+ "Discriminator Loss: tf.Tensor(0.6363039, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.63014096, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 12482\n",
+ "Discriminator Loss: tf.Tensor(0.80015373, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.961171, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 12483\n",
+ "Discriminator Loss: tf.Tensor(0.39733142, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.7389729, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 12484\n",
+ "Discriminator Loss: tf.Tensor(1.0750421, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.9588192, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 12485\n",
+ "Discriminator Loss: tf.Tensor(0.54880595, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.3689626, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 12486\n",
+ "Discriminator Loss: tf.Tensor(0.8924911, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.1262651, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 12487\n",
+ "Discriminator Loss: tf.Tensor(0.70876384, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.2823398, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 12488\n",
+ "Discriminator Loss: tf.Tensor(0.11741825, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.1989244, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 12489\n",
+ "Discriminator Loss: tf.Tensor(0.8361395, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.30373034, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 12490\n",
+ "Discriminator Loss: tf.Tensor(1.3117431, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.6456645, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 12491\n",
+ "Discriminator Loss: tf.Tensor(0.29575935, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.8533988, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 12492\n",
+ "Discriminator Loss: tf.Tensor(0.90823525, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.8440611, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 12493\n",
+ "Discriminator Loss: tf.Tensor(0.1768954, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.1126472, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 12494\n",
+ "Discriminator Loss: tf.Tensor(0.8676212, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.14736496, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 12495\n",
+ "Discriminator Loss: tf.Tensor(0.50451225, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.829076, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 12496\n",
+ "Discriminator Loss: tf.Tensor(0.14062247, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.6240596, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 12497\n",
+ "Discriminator Loss: tf.Tensor(0.4830926, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.7026553, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 12498\n",
+ "Discriminator Loss: tf.Tensor(0.4044634, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(3.1935797, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 12499\n",
+ "Discriminator Loss: tf.Tensor(0.32349235, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.1693181, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 12500\n",
+ "Discriminator Loss: tf.Tensor(1.9671274, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.783397, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 12501\n",
+ "Discriminator Loss: tf.Tensor(1.7096646, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.6147805, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 12502\n",
+ "Discriminator Loss: tf.Tensor(1.7058833, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.5572935, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 12503\n",
+ "Discriminator Loss: tf.Tensor(0.89783, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.3376936, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 12504\n",
+ "Discriminator Loss: tf.Tensor(1.3090537, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.23872514, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 12505\n",
+ "Discriminator Loss: tf.Tensor(0.6473779, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.9600731, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 12506\n",
+ "Discriminator Loss: tf.Tensor(0.5648824, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.633864, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 12507\n",
+ "Discriminator Loss: tf.Tensor(0.6547147, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.361552, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 12508\n",
+ "Discriminator Loss: tf.Tensor(0.6983441, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.35703847, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 12509\n",
+ "Discriminator Loss: tf.Tensor(0.806387, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.703601, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 12510\n",
+ "Discriminator Loss: tf.Tensor(0.28635812, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.9411481, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 12511\n",
+ "Discriminator Loss: tf.Tensor(0.9067575, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.9064043, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 12512\n",
+ "Discriminator Loss: tf.Tensor(0.4706264, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.7921999, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 12513\n",
+ "Discriminator Loss: tf.Tensor(0.7108585, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.7666607, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 12514\n",
+ "Discriminator Loss: tf.Tensor(0.37080002, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.9762972, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 12515\n",
+ "Discriminator Loss: tf.Tensor(0.53775704, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.3843117, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 12516\n",
+ "Discriminator Loss: tf.Tensor(1.534083, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.4240866, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 12517\n",
+ "Discriminator Loss: tf.Tensor(0.63999385, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.7369776, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 12518\n",
+ "Discriminator Loss: tf.Tensor(0.4071775, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.1027719, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 12519\n",
+ "Discriminator Loss: tf.Tensor(0.5653345, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.5923359, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 12520\n",
+ "Discriminator Loss: tf.Tensor(0.46081784, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(3.5503452, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 12521\n",
+ "Discriminator Loss: tf.Tensor(0.19103695, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.9996952, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 12522\n",
+ "Discriminator Loss: tf.Tensor(0.49029005, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.1172434, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 12523\n",
+ "Discriminator Loss: tf.Tensor(2.0622556, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.9442007, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 12524\n",
+ "Discriminator Loss: tf.Tensor(0.46862155, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.8694104, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 12525\n",
+ "Discriminator Loss: tf.Tensor(0.33289972, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.8464841, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 12526\n",
+ "Discriminator Loss: tf.Tensor(0.9411119, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.7542915, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 12527\n",
+ "Discriminator Loss: tf.Tensor(0.33529872, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.86746645, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 12528\n",
+ "Discriminator Loss: tf.Tensor(0.7973026, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.8752992, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 12529\n",
+ "Discriminator Loss: tf.Tensor(0.48025894, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.2997888, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 12530\n",
+ "Discriminator Loss: tf.Tensor(2.0143933, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.7387534, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 12531\n",
+ "Discriminator Loss: tf.Tensor(0.61633337, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.6813325, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 12532\n",
+ "Discriminator Loss: tf.Tensor(1.1248808, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.09311083, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 12533\n",
+ "Discriminator Loss: tf.Tensor(1.381162, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.9606578, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 12534\n",
+ "Discriminator Loss: tf.Tensor(0.4397125, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.6311842, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 12535\n",
+ "Discriminator Loss: tf.Tensor(0.43853608, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.8277867, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 12536\n",
+ "Discriminator Loss: tf.Tensor(0.22081722, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.6183859, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 12537\n",
+ "Discriminator Loss: tf.Tensor(0.6045485, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.575959, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 12538\n",
+ "Discriminator Loss: tf.Tensor(0.47063482, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.8861768, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 12539\n",
+ "Discriminator Loss: tf.Tensor(0.40508848, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.6024817, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 12540\n",
+ "Discriminator Loss: tf.Tensor(1.2465001, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.099987365, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 12541\n",
+ "Discriminator Loss: tf.Tensor(1.0620713, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.6825821, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 12542\n",
+ "Discriminator Loss: tf.Tensor(0.32541716, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.1456264, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 12543\n",
+ "Discriminator Loss: tf.Tensor(0.82455516, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.252575, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 12544\n",
+ "Discriminator Loss: tf.Tensor(0.6912124, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.433625, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 12545\n",
+ "Discriminator Loss: tf.Tensor(0.42417905, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.9770184, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 12546\n",
+ "Discriminator Loss: tf.Tensor(0.31192297, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.7696937, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 12547\n",
+ "Discriminator Loss: tf.Tensor(0.8771134, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.4490207, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 12548\n",
+ "Discriminator Loss: tf.Tensor(1.3521491, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.6336305, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 12549\n",
+ "Discriminator Loss: tf.Tensor(2.133882, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-1.0212117, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 12550\n",
+ "Discriminator Loss: tf.Tensor(0.32068568, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.7270002, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 12551\n",
+ "Discriminator Loss: tf.Tensor(0.6412693, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.48432946, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 12552\n",
+ "Discriminator Loss: tf.Tensor(0.624116, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.4384172, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 12553\n",
+ "Discriminator Loss: tf.Tensor(1.5347855, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.4367106, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 12554\n",
+ "Discriminator Loss: tf.Tensor(0.41766787, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.9225154, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 12555\n",
+ "Discriminator Loss: tf.Tensor(0.269814, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.80010706, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 12556\n",
+ "Discriminator Loss: tf.Tensor(1.3264675, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(3.1531382, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 12557\n",
+ "Discriminator Loss: tf.Tensor(0.18222871, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.0119289, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 12558\n",
+ "Discriminator Loss: tf.Tensor(0.30317453, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.2491825, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 12559\n",
+ "Discriminator Loss: tf.Tensor(0.40675306, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.75446755, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 12560\n",
+ "Discriminator Loss: tf.Tensor(1.2876706, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(3.3902988, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 12561\n",
+ "Discriminator Loss: tf.Tensor(0.115002, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.1605259, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 12562\n",
+ "Discriminator Loss: tf.Tensor(0.66823894, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.38209727, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 12563\n",
+ "Discriminator Loss: tf.Tensor(1.9850289, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(3.0497398, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 12564\n",
+ "Discriminator Loss: tf.Tensor(0.676523, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.43041968, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 12565\n",
+ "Discriminator Loss: tf.Tensor(0.70456654, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.4946444, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 12566\n",
+ "Discriminator Loss: tf.Tensor(0.3630935, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.73909146, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 12567\n",
+ "Discriminator Loss: tf.Tensor(0.928929, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(3.0750992, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 12568\n",
+ "Discriminator Loss: tf.Tensor(0.43101835, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.2419372, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 12569\n",
+ "Discriminator Loss: tf.Tensor(1.8244483, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.5122966, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 12570\n",
+ "Discriminator Loss: tf.Tensor(0.43879429, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.8291363, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 12571\n",
+ "Discriminator Loss: tf.Tensor(0.85598725, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.43942276, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 12572\n",
+ "Discriminator Loss: tf.Tensor(0.55099964, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.3410618, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 12573\n",
+ "Discriminator Loss: tf.Tensor(0.98330265, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.16747975, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 12574\n",
+ "Discriminator Loss: tf.Tensor(1.0133715, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.1732457, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 12575\n",
+ "Discriminator Loss: tf.Tensor(0.26974267, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.7708821, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 12576\n",
+ "Discriminator Loss: tf.Tensor(1.1847552, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.8424866, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 12577\n",
+ "Discriminator Loss: tf.Tensor(0.4778943, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.78228694, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 12578\n",
+ "Discriminator Loss: tf.Tensor(0.7322191, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.2998056, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 12579\n",
+ "Discriminator Loss: tf.Tensor(0.8963275, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.26687273, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 12580\n",
+ "Discriminator Loss: tf.Tensor(0.56362766, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.2996273, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 12581\n",
+ "Discriminator Loss: tf.Tensor(0.42649314, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.9069505, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 12582\n",
+ "Discriminator Loss: tf.Tensor(1.1114552, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(3.5732892, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 12583\n",
+ "Discriminator Loss: tf.Tensor(0.2569855, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.97567254, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 12584\n",
+ "Discriminator Loss: tf.Tensor(1.5374196, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.7711754, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 12585\n",
+ "Discriminator Loss: tf.Tensor(0.48283988, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.7015851, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 12586\n",
+ "Discriminator Loss: tf.Tensor(0.6366144, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.165122, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 12587\n",
+ "Discriminator Loss: tf.Tensor(0.208603, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.1194606, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 12588\n",
+ "Discriminator Loss: tf.Tensor(1.0879624, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.22121215, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 12589\n",
+ "Discriminator Loss: tf.Tensor(0.74629474, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.3440096, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 12590\n",
+ "Discriminator Loss: tf.Tensor(0.8519184, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.7787807, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 12591\n",
+ "Discriminator Loss: tf.Tensor(0.6399308, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.3399913, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 12592\n",
+ "Discriminator Loss: tf.Tensor(0.80838406, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.34068266, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 12593\n",
+ "Discriminator Loss: tf.Tensor(0.9650723, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.879411, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 12594\n",
+ "Discriminator Loss: tf.Tensor(0.48966825, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.73112917, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 12595\n",
+ "Discriminator Loss: tf.Tensor(1.0506821, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.7392094, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 12596\n",
+ "Discriminator Loss: tf.Tensor(0.42267954, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.8950551, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 12597\n",
+ "Discriminator Loss: tf.Tensor(0.6162673, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.8668032, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 12598\n",
+ "Discriminator Loss: tf.Tensor(0.012911278, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.3339802, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 12599\n",
+ "Discriminator Loss: tf.Tensor(13.349181, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.03318855, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 12600\n",
+ "Discriminator Loss: tf.Tensor(55.202847, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.0113635, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 12601\n",
+ "Discriminator Loss: tf.Tensor(9.73509, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.16160746, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 12602\n",
+ "Discriminator Loss: tf.Tensor(4.3816857, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.14442289, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 12603\n",
+ "Discriminator Loss: tf.Tensor(4.4054103, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.16635253, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 12604\n",
+ "Discriminator Loss: tf.Tensor(3.4297318, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.20563899, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 12605\n",
+ "Discriminator Loss: tf.Tensor(3.284687, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.23557116, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 12606\n",
+ "Discriminator Loss: tf.Tensor(2.9004757, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.29750064, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 12607\n",
+ "Discriminator Loss: tf.Tensor(2.6839716, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.33925113, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 12608\n",
+ "Discriminator Loss: tf.Tensor(2.7276838, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.39462912, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 12609\n",
+ "Discriminator Loss: tf.Tensor(2.4899745, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.38599524, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 12610\n",
+ "Discriminator Loss: tf.Tensor(2.5463176, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.4359481, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 12611\n",
+ "Discriminator Loss: tf.Tensor(2.3285694, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.39039576, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 12612\n",
+ "Discriminator Loss: tf.Tensor(2.3358784, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.4335849, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 12613\n",
+ "Discriminator Loss: tf.Tensor(2.182907, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.37420416, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 12614\n",
+ "Discriminator Loss: tf.Tensor(2.14339, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.44533572, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 12615\n",
+ "Discriminator Loss: tf.Tensor(2.2429078, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.3638537, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 12616\n",
+ "Discriminator Loss: tf.Tensor(2.1185312, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.43554166, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 12617\n",
+ "Discriminator Loss: tf.Tensor(2.0180633, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.4493245, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 12618\n",
+ "Discriminator Loss: tf.Tensor(2.014364, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.45043564, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 12619\n",
+ "Discriminator Loss: tf.Tensor(1.9625772, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.4538938, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 12620\n",
+ "Discriminator Loss: tf.Tensor(1.9689223, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.42359114, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 12621\n",
+ "Discriminator Loss: tf.Tensor(1.9403349, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.4378467, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 12622\n",
+ "Discriminator Loss: tf.Tensor(1.877546, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.42722878, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 12623\n",
+ "Discriminator Loss: tf.Tensor(1.8528922, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.46397403, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 12624\n",
+ "Discriminator Loss: tf.Tensor(1.9773726, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.40495387, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 12625\n",
+ "Discriminator Loss: tf.Tensor(1.9332069, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.4400816, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 12626\n",
+ "Discriminator Loss: tf.Tensor(1.8357934, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.47379664, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 12627\n",
+ "Discriminator Loss: tf.Tensor(1.7840178, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.56698394, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 12628\n",
+ "Discriminator Loss: tf.Tensor(1.8069813, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.5010994, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 12629\n",
+ "Discriminator Loss: tf.Tensor(1.8788137, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.52700067, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 12630\n",
+ "Discriminator Loss: tf.Tensor(1.7470376, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.57045454, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 12631\n",
+ "Discriminator Loss: tf.Tensor(1.7336341, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.6181086, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 12632\n",
+ "Discriminator Loss: tf.Tensor(1.7696176, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.5856326, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 12633\n",
+ "Discriminator Loss: tf.Tensor(1.6142955, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.52120835, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 12634\n",
+ "Discriminator Loss: tf.Tensor(1.5810053, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.52895457, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 12635\n",
+ "Discriminator Loss: tf.Tensor(1.6703451, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.08276328, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 12636\n",
+ "Discriminator Loss: tf.Tensor(1.9530025, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.39284632, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 12637\n",
+ "Discriminator Loss: tf.Tensor(1.8904681, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.75420064, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 12638\n",
+ "Discriminator Loss: tf.Tensor(1.6384765, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.720511, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 12639\n",
+ "Discriminator Loss: tf.Tensor(1.5206348, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.9709483, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 12640\n",
+ "Discriminator Loss: tf.Tensor(1.9212046, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.3940458, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 12641\n",
+ "Discriminator Loss: tf.Tensor(2.0007217, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.64378697, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 12642\n",
+ "Discriminator Loss: tf.Tensor(1.7428461, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.36127946, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 12643\n",
+ "Discriminator Loss: tf.Tensor(1.6362851, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.18658425, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 12644\n",
+ "Discriminator Loss: tf.Tensor(1.564086, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.0650905, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 12645\n",
+ "Discriminator Loss: tf.Tensor(1.4789299, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.14930803, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 12646\n",
+ "Discriminator Loss: tf.Tensor(1.5108526, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.16266106, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 12647\n",
+ "Discriminator Loss: tf.Tensor(1.4812394, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.18777145, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 12648\n",
+ "Discriminator Loss: tf.Tensor(1.2746085, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.24332948, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 12649\n",
+ "Discriminator Loss: tf.Tensor(1.2046446, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.57908064, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 12650\n",
+ "Discriminator Loss: tf.Tensor(0.7949115, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.0561861, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 12651\n",
+ "Discriminator Loss: tf.Tensor(2.7346566, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-1.6315359, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 12652\n",
+ "Discriminator Loss: tf.Tensor(1.1701733, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.5905729, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 12653\n",
+ "Discriminator Loss: tf.Tensor(1.0036831, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.78341323, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 12654\n",
+ "Discriminator Loss: tf.Tensor(1.0112772, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.9999733, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 12655\n",
+ "Discriminator Loss: tf.Tensor(1.1066625, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.2077256, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 12656\n",
+ "Discriminator Loss: tf.Tensor(1.0174754, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.8882522, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 12657\n",
+ "Discriminator Loss: tf.Tensor(0.5737609, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.95127535, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 12658\n",
+ "Discriminator Loss: tf.Tensor(0.7553538, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.36471406, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 12659\n",
+ "Discriminator Loss: tf.Tensor(2.0109034, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.9444853, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 12660\n",
+ "Discriminator Loss: tf.Tensor(1.1752831, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.1720611, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 12661\n",
+ "Discriminator Loss: tf.Tensor(0.4130029, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.8062765, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 12662\n",
+ "Discriminator Loss: tf.Tensor(0.5511719, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.4973575, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 12663\n",
+ "Discriminator Loss: tf.Tensor(1.3308301, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.28473613, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 12664\n",
+ "Discriminator Loss: tf.Tensor(0.8313837, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.3553504, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 12665\n",
+ "Discriminator Loss: tf.Tensor(1.1447471, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.07715597, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 12666\n",
+ "Discriminator Loss: tf.Tensor(0.39236075, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.1386857, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 12667\n",
+ "Discriminator Loss: tf.Tensor(1.0775597, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.015238139, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 12668\n",
+ "Discriminator Loss: tf.Tensor(0.7002267, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.6082649, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 12669\n",
+ "Discriminator Loss: tf.Tensor(1.217229, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.23282392, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 12670\n",
+ "Discriminator Loss: tf.Tensor(0.94243, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.7574816, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 12671\n",
+ "Discriminator Loss: tf.Tensor(1.0218753, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.08027027, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 12672\n",
+ "Discriminator Loss: tf.Tensor(0.39114204, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.5195135, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 12673\n",
+ "Discriminator Loss: tf.Tensor(0.5301884, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.64958805, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 12674\n",
+ "Discriminator Loss: tf.Tensor(0.39691496, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.5131439, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 12675\n",
+ "Discriminator Loss: tf.Tensor(1.4448953, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.19989336, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 12676\n",
+ "Discriminator Loss: tf.Tensor(0.70606136, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.7181681, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 12677\n",
+ "Discriminator Loss: tf.Tensor(0.84285253, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.24430645, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 12678\n",
+ "Discriminator Loss: tf.Tensor(0.6483126, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.4349046, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 12679\n",
+ "Discriminator Loss: tf.Tensor(2.2144642, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-1.1583116, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 12680\n",
+ "Discriminator Loss: tf.Tensor(1.0268953, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.8521652, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 12681\n",
+ "Discriminator Loss: tf.Tensor(0.73164505, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.80733365, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 12682\n",
+ "Discriminator Loss: tf.Tensor(0.81564194, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.65026, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 12683\n",
+ "Discriminator Loss: tf.Tensor(1.8536872, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.736553, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 12684\n",
+ "Discriminator Loss: tf.Tensor(0.5145003, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.6616025, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 12685\n",
+ "Discriminator Loss: tf.Tensor(0.8006052, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.45455953, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 12686\n",
+ "Discriminator Loss: tf.Tensor(0.63508886, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.4049006, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 12687\n",
+ "Discriminator Loss: tf.Tensor(0.7284011, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.31539378, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 12688\n",
+ "Discriminator Loss: tf.Tensor(0.60457486, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.8037977, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 12689\n",
+ "Discriminator Loss: tf.Tensor(0.06425074, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.4241133, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 12690\n",
+ "Discriminator Loss: tf.Tensor(0.84007126, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.5635653, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 12691\n",
+ "Discriminator Loss: tf.Tensor(1.024405, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.7994928, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 12692\n",
+ "Discriminator Loss: tf.Tensor(1.1995399, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.10877216, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 12693\n",
+ "Discriminator Loss: tf.Tensor(0.79623175, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.8004017, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 12694\n",
+ "Discriminator Loss: tf.Tensor(0.8837121, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.54833823, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 12695\n",
+ "Discriminator Loss: tf.Tensor(0.763753, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.6730695, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 12696\n",
+ "Discriminator Loss: tf.Tensor(1.7142134, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.5976768, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 12697\n",
+ "Discriminator Loss: tf.Tensor(0.63210654, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.3375301, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 12698\n",
+ "Discriminator Loss: tf.Tensor(1.3368199, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.22593957, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 12699\n",
+ "Discriminator Loss: tf.Tensor(0.59507006, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.7414058, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 12700\n",
+ "Discriminator Loss: tf.Tensor(0.76486, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.3946642, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 12701\n",
+ "Discriminator Loss: tf.Tensor(0.55315363, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.3503273, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 12702\n",
+ "Discriminator Loss: tf.Tensor(0.0803847, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.0202956, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 12703\n",
+ "Discriminator Loss: tf.Tensor(0.17597905, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.2720162, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 12704\n",
+ "Discriminator Loss: tf.Tensor(0.4980265, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.68769103, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 12705\n",
+ "Discriminator Loss: tf.Tensor(1.3899243, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.5756407, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 12706\n",
+ "Discriminator Loss: tf.Tensor(1.0639019, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.17405443, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 12707\n",
+ "Discriminator Loss: tf.Tensor(0.60725546, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.7992824, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 12708\n",
+ "Discriminator Loss: tf.Tensor(0.78563535, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.3290967, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 12709\n",
+ "Discriminator Loss: tf.Tensor(0.9325417, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.259775, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 12710\n",
+ "Discriminator Loss: tf.Tensor(0.16587442, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.8995951, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 12711\n",
+ "Discriminator Loss: tf.Tensor(0.5581715, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.797455, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 12712\n",
+ "Discriminator Loss: tf.Tensor(0.20501047, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.764412, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 12713\n",
+ "Discriminator Loss: tf.Tensor(0.5487192, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.6919451, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 12714\n",
+ "Discriminator Loss: tf.Tensor(0.7115103, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.5169388, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 12715\n",
+ "Discriminator Loss: tf.Tensor(2.2763476, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-1.1338931, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 12716\n",
+ "Discriminator Loss: tf.Tensor(0.7191881, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.1293862, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 12717\n",
+ "Discriminator Loss: tf.Tensor(1.2110893, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.19225125, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 12718\n",
+ "Discriminator Loss: tf.Tensor(0.7633276, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.349993, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 12719\n",
+ "Discriminator Loss: tf.Tensor(0.77780133, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.51979536, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 12720\n",
+ "Discriminator Loss: tf.Tensor(0.9037274, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.989446, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 12721\n",
+ "Discriminator Loss: tf.Tensor(0.42329118, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.8105542, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 12722\n",
+ "Discriminator Loss: tf.Tensor(0.5842778, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.999361, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 12723\n",
+ "Discriminator Loss: tf.Tensor(0.47856113, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.6028082, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 12724\n",
+ "Discriminator Loss: tf.Tensor(0.67328393, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(3.2885854, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 12725\n",
+ "Discriminator Loss: tf.Tensor(0.760489, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.38515505, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 12726\n",
+ "Discriminator Loss: tf.Tensor(0.52898246, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.3602366, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 12727\n",
+ "Discriminator Loss: tf.Tensor(1.0535023, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.020592343, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 12728\n",
+ "Discriminator Loss: tf.Tensor(0.8454906, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.7769597, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 12729\n",
+ "Discriminator Loss: tf.Tensor(1.0296434, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.14142023, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 12730\n",
+ "Discriminator Loss: tf.Tensor(0.79165614, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.0728416, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 12731\n",
+ "Discriminator Loss: tf.Tensor(1.8784405, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.6307142, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 12732\n",
+ "Discriminator Loss: tf.Tensor(0.875929, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.648523, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 12733\n",
+ "Discriminator Loss: tf.Tensor(1.276602, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.1313269, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 12734\n",
+ "Discriminator Loss: tf.Tensor(0.578056, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.0826204, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 12735\n",
+ "Discriminator Loss: tf.Tensor(0.40271765, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.81242687, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 12736\n",
+ "Discriminator Loss: tf.Tensor(1.5142525, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.8910482, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 12737\n",
+ "Discriminator Loss: tf.Tensor(0.4301605, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.69802666, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 12738\n",
+ "Discriminator Loss: tf.Tensor(0.64336216, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.0459507, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 12739\n",
+ "Discriminator Loss: tf.Tensor(1.4726286, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.018056566, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 12740\n",
+ "Discriminator Loss: tf.Tensor(0.494964, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.3810484, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 12741\n",
+ "Discriminator Loss: tf.Tensor(0.65866363, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.6992769, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 12742\n",
+ "Discriminator Loss: tf.Tensor(1.2311893, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(3.544132, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 12743\n",
+ "Discriminator Loss: tf.Tensor(0.2644995, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.4353176, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 12744\n",
+ "Discriminator Loss: tf.Tensor(0.64137995, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.4349151, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 12745\n",
+ "Discriminator Loss: tf.Tensor(0.8081623, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(3.001076, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 12746\n",
+ "Discriminator Loss: tf.Tensor(0.21941656, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.1821637, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 12747\n",
+ "Discriminator Loss: tf.Tensor(1.129057, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.054016966, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 12748\n",
+ "Discriminator Loss: tf.Tensor(1.0776999, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.601176, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 12749\n",
+ "Discriminator Loss: tf.Tensor(0.3527011, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.0090959, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 12750\n",
+ "Discriminator Loss: tf.Tensor(0.868838, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.993735, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 12751\n",
+ "Discriminator Loss: tf.Tensor(0.7398639, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.33192948, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 12752\n",
+ "Discriminator Loss: tf.Tensor(0.3027456, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.6993687, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 12753\n",
+ "Discriminator Loss: tf.Tensor(0.21948516, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.5461403, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 12754\n",
+ "Discriminator Loss: tf.Tensor(1.3758487, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.09079623, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 12755\n",
+ "Discriminator Loss: tf.Tensor(0.42407507, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.266136, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 12756\n",
+ "Discriminator Loss: tf.Tensor(0.5656481, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.7127169, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 12757\n",
+ "Discriminator Loss: tf.Tensor(1.2904814, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.5300148, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 12758\n",
+ "Discriminator Loss: tf.Tensor(2.555921, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-1.3265373, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 12759\n",
+ "Discriminator Loss: tf.Tensor(0.7721127, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.6178048, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 12760\n",
+ "Discriminator Loss: tf.Tensor(0.9935765, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.5849624, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 12761\n",
+ "Discriminator Loss: tf.Tensor(0.76544034, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.27955994, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 12762\n",
+ "Discriminator Loss: tf.Tensor(0.70410883, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.3061268, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 12763\n",
+ "Discriminator Loss: tf.Tensor(0.038386326, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.3130435, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 12764\n",
+ "Discriminator Loss: tf.Tensor(0.5976219, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.9338811, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 12765\n",
+ "Discriminator Loss: tf.Tensor(0.821024, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.6442158, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 12766\n",
+ "Discriminator Loss: tf.Tensor(0.5344284, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.8560222, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 12767\n",
+ "Discriminator Loss: tf.Tensor(2.16065, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.1876907, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 12768\n",
+ "Discriminator Loss: tf.Tensor(1.5960138, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.4007914, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 12769\n",
+ "Discriminator Loss: tf.Tensor(0.7229941, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.1566728, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 12770\n",
+ "Discriminator Loss: tf.Tensor(1.4806745, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.226963, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 12771\n",
+ "Discriminator Loss: tf.Tensor(0.97654015, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.3949198, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 12772\n",
+ "Discriminator Loss: tf.Tensor(1.037486, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.23333733, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 12773\n",
+ "Discriminator Loss: tf.Tensor(0.7484588, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.5295314, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 12774\n",
+ "Discriminator Loss: tf.Tensor(0.8233762, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.280207, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 12775\n",
+ "Discriminator Loss: tf.Tensor(0.4899838, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.6743959, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 12776\n",
+ "Discriminator Loss: tf.Tensor(0.1436321, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.0917308, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 12777\n",
+ "Discriminator Loss: tf.Tensor(0.6915084, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.70346814, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 12778\n",
+ "Discriminator Loss: tf.Tensor(1.0065002, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.172123, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 12779\n",
+ "Discriminator Loss: tf.Tensor(0.34901989, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.71224374, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 12780\n",
+ "Discriminator Loss: tf.Tensor(1.1297877, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.9720234, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 12781\n",
+ "Discriminator Loss: tf.Tensor(0.29407516, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.127272, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 12782\n",
+ "Discriminator Loss: tf.Tensor(0.93196017, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.2790361, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 12783\n",
+ "Discriminator Loss: tf.Tensor(0.595333, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.9187803, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 12784\n",
+ "Discriminator Loss: tf.Tensor(0.8329165, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.6224982, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 12785\n",
+ "Discriminator Loss: tf.Tensor(1.2058021, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.1286142, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 12786\n",
+ "Discriminator Loss: tf.Tensor(0.5982852, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.44195235, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 12787\n",
+ "Discriminator Loss: tf.Tensor(1.0810298, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.1535945, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 12788\n",
+ "Discriminator Loss: tf.Tensor(0.5873196, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.49415377, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 12789\n",
+ "Discriminator Loss: tf.Tensor(0.40188873, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.0009534, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 12790\n",
+ "Discriminator Loss: tf.Tensor(0.38063747, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.97785264, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 12791\n",
+ "Discriminator Loss: tf.Tensor(0.91337574, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.6289728, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 12792\n",
+ "Discriminator Loss: tf.Tensor(0.3544777, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.8024001, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 12793\n",
+ "Discriminator Loss: tf.Tensor(1.1534446, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.4427257, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 12794\n",
+ "Discriminator Loss: tf.Tensor(0.60992754, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.42166528, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 12795\n",
+ "Discriminator Loss: tf.Tensor(0.90503407, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.2301626, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 12796\n",
+ "Discriminator Loss: tf.Tensor(0.36997455, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.8508387, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 12797\n",
+ "Discriminator Loss: tf.Tensor(0.30832404, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.6306784, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 12798\n",
+ "Discriminator Loss: tf.Tensor(0.26605064, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.6819916, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 12799\n",
+ "Discriminator Loss: tf.Tensor(0.63827145, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.5875405, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 12800\n",
+ "Discriminator Loss: tf.Tensor(1.0114403, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.1256313, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 12801\n",
+ "Discriminator Loss: tf.Tensor(0.5239277, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.7725803, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 12802\n",
+ "Discriminator Loss: tf.Tensor(0.332545, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.3133821, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 12803\n",
+ "Discriminator Loss: tf.Tensor(0.38181877, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.739944, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 12804\n",
+ "Discriminator Loss: tf.Tensor(0.7655066, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.9058483, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 12805\n",
+ "Discriminator Loss: tf.Tensor(0.25314856, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.1014663, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 12806\n",
+ "Discriminator Loss: tf.Tensor(1.3028716, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.27185652, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 12807\n",
+ "Discriminator Loss: tf.Tensor(0.8717944, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.8976955, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 12808\n",
+ "Discriminator Loss: tf.Tensor(0.1609497, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.3551699, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 12809\n",
+ "Discriminator Loss: tf.Tensor(0.752892, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.5755365, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 12810\n",
+ "Discriminator Loss: tf.Tensor(0.7660122, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.5640795, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 12811\n",
+ "Discriminator Loss: tf.Tensor(0.13619566, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.1712024, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 12812\n",
+ "Discriminator Loss: tf.Tensor(0.9522256, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.27703324, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 12813\n",
+ "Discriminator Loss: tf.Tensor(0.35151887, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.3024845, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 12814\n",
+ "Discriminator Loss: tf.Tensor(0.6066326, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.6378988, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 12815\n",
+ "Discriminator Loss: tf.Tensor(0.86063886, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.40277305, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 12816\n",
+ "Discriminator Loss: tf.Tensor(1.0622591, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.31972, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 12817\n",
+ "Discriminator Loss: tf.Tensor(1.4390864, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.14863224, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 12818\n",
+ "Discriminator Loss: tf.Tensor(1.0578303, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.0521958, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 12819\n",
+ "Discriminator Loss: tf.Tensor(0.75649554, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.31452823, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 12820\n",
+ "Discriminator Loss: tf.Tensor(0.7788133, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.5611145, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 12821\n",
+ "Discriminator Loss: tf.Tensor(0.21742986, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.95551634, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 12822\n",
+ "Discriminator Loss: tf.Tensor(0.50740683, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.5206006, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 12823\n",
+ "Discriminator Loss: tf.Tensor(0.9497249, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.33614945, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 12824\n",
+ "Discriminator Loss: tf.Tensor(0.2516372, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.6313028, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 12825\n",
+ "Discriminator Loss: tf.Tensor(0.96599567, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.22410572, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 12826\n",
+ "Discriminator Loss: tf.Tensor(1.1271837, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(3.8126342, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 12827\n",
+ "Discriminator Loss: tf.Tensor(0.21251816, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.7311845, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 12828\n",
+ "Discriminator Loss: tf.Tensor(0.4553743, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.0136176, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 12829\n",
+ "Discriminator Loss: tf.Tensor(0.35191435, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.4909437, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 12830\n",
+ "Discriminator Loss: tf.Tensor(0.52324647, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.9732897, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 12831\n",
+ "Discriminator Loss: tf.Tensor(0.5768467, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.2743044, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 12832\n",
+ "Discriminator Loss: tf.Tensor(0.88329905, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.29768592, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 12833\n",
+ "Discriminator Loss: tf.Tensor(0.9123074, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.3793638, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 12834\n",
+ "Discriminator Loss: tf.Tensor(0.2525335, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.0191815, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 12835\n",
+ "Discriminator Loss: tf.Tensor(0.35195822, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.6896613, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 12836\n",
+ "Discriminator Loss: tf.Tensor(0.31022355, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.9023428, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 12837\n",
+ "Discriminator Loss: tf.Tensor(0.11280701, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.6322798, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 12838\n",
+ "Discriminator Loss: tf.Tensor(0.9199084, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.73278147, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 12839\n",
+ "Discriminator Loss: tf.Tensor(2.5545428, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.9885604, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 12840\n",
+ "Discriminator Loss: tf.Tensor(0.72527, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.6289033, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 12841\n",
+ "Discriminator Loss: tf.Tensor(0.91024876, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.803573, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 12842\n",
+ "Discriminator Loss: tf.Tensor(1.0335264, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.29154107, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 12843\n",
+ "Discriminator Loss: tf.Tensor(0.73934996, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.5480962, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 12844\n",
+ "Discriminator Loss: tf.Tensor(1.9321691, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.6128292, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 12845\n",
+ "Discriminator Loss: tf.Tensor(0.6997597, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.4559039, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 12846\n",
+ "Discriminator Loss: tf.Tensor(1.1198583, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.052433133, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 12847\n",
+ "Discriminator Loss: tf.Tensor(0.9830856, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.6747326, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 12848\n",
+ "Discriminator Loss: tf.Tensor(1.2251356, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.12124308, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 12849\n",
+ "Discriminator Loss: tf.Tensor(0.45031625, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.4301672, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 12850\n",
+ "Discriminator Loss: tf.Tensor(1.0042144, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.07617553, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 12851\n",
+ "Discriminator Loss: tf.Tensor(0.8497132, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.322016, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 12852\n",
+ "Discriminator Loss: tf.Tensor(1.9738494, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.7420848, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 12853\n",
+ "Discriminator Loss: tf.Tensor(0.8797234, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.1055149, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 12854\n",
+ "Discriminator Loss: tf.Tensor(1.6810201, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.40200725, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 12855\n",
+ "Discriminator Loss: tf.Tensor(0.78409463, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.0831951, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 12856\n",
+ "Discriminator Loss: tf.Tensor(1.3671803, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.3142359, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 12857\n",
+ "Discriminator Loss: tf.Tensor(0.5198299, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.6447912, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 12858\n",
+ "Discriminator Loss: tf.Tensor(0.8420325, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.2853434, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 12859\n",
+ "Discriminator Loss: tf.Tensor(0.76750886, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.0717916, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 12860\n",
+ "Discriminator Loss: tf.Tensor(0.4867587, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.61778736, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 12861\n",
+ "Discriminator Loss: tf.Tensor(0.89281714, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.3976076, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 12862\n",
+ "Discriminator Loss: tf.Tensor(0.30785838, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.87351036, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 12863\n",
+ "Discriminator Loss: tf.Tensor(0.7659267, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.7189837, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 12864\n",
+ "Discriminator Loss: tf.Tensor(0.18472534, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.88625455, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 12865\n",
+ "Discriminator Loss: tf.Tensor(1.3329648, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(3.0528533, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 12866\n",
+ "Discriminator Loss: tf.Tensor(0.42753622, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.7671726, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 12867\n",
+ "Discriminator Loss: tf.Tensor(0.6596004, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.8298738, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 12868\n",
+ "Discriminator Loss: tf.Tensor(0.47324717, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.2223893, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 12869\n",
+ "Discriminator Loss: tf.Tensor(1.6515448, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.6022248, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 12870\n",
+ "Discriminator Loss: tf.Tensor(0.4794889, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.0749812, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 12871\n",
+ "Discriminator Loss: tf.Tensor(0.14300871, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.96417046, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 12872\n",
+ "Discriminator Loss: tf.Tensor(0.6504921, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(3.0495617, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 12873\n",
+ "Discriminator Loss: tf.Tensor(0.27794066, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.4699787, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 12874\n",
+ "Discriminator Loss: tf.Tensor(0.754231, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.34728885, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 12875\n",
+ "Discriminator Loss: tf.Tensor(1.0315759, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.6066606, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 12876\n",
+ "Discriminator Loss: tf.Tensor(0.21315414, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.040629, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 12877\n",
+ "Discriminator Loss: tf.Tensor(0.3825756, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.1737585, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 12878\n",
+ "Discriminator Loss: tf.Tensor(0.23503335, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.1553234, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 12879\n",
+ "Discriminator Loss: tf.Tensor(0.66875064, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.47204852, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 12880\n",
+ "Discriminator Loss: tf.Tensor(0.97485507, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.8800805, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 12881\n",
+ "Discriminator Loss: tf.Tensor(0.07613507, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.2571712, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 12882\n",
+ "Discriminator Loss: tf.Tensor(0.8240757, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.48638168, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 12883\n",
+ "Discriminator Loss: tf.Tensor(0.8876281, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.70319, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 12884\n",
+ "Discriminator Loss: tf.Tensor(0.18915412, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.98701626, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 12885\n",
+ "Discriminator Loss: tf.Tensor(1.2706497, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.8303585, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 12886\n",
+ "Discriminator Loss: tf.Tensor(0.7933934, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.3899821, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 12887\n",
+ "Discriminator Loss: tf.Tensor(0.6852933, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.44790176, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 12888\n",
+ "Discriminator Loss: tf.Tensor(0.36275053, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.9922777, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 12889\n",
+ "Discriminator Loss: tf.Tensor(0.45449814, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.4222771, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 12890\n",
+ "Discriminator Loss: tf.Tensor(0.38906863, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.77625936, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 12891\n",
+ "Discriminator Loss: tf.Tensor(1.086327, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.4462156, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 12892\n",
+ "Discriminator Loss: tf.Tensor(1.2282288, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.05925788, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 12893\n",
+ "Discriminator Loss: tf.Tensor(0.9171972, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.7414699, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 12894\n",
+ "Discriminator Loss: tf.Tensor(1.7980138, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.5657822, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 12895\n",
+ "Discriminator Loss: tf.Tensor(0.82807124, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.1270485, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 12896\n",
+ "Discriminator Loss: tf.Tensor(1.7160149, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.6341515, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 12897\n",
+ "Discriminator Loss: tf.Tensor(0.84994763, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.3507746, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 12898\n",
+ "Discriminator Loss: tf.Tensor(1.2116902, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.17977984, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 12899\n",
+ "Discriminator Loss: tf.Tensor(0.63729763, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.56416, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 12900\n",
+ "Discriminator Loss: tf.Tensor(0.6042262, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.4218917, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 12901\n",
+ "Discriminator Loss: tf.Tensor(1.1094494, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.3922899, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 12902\n",
+ "Discriminator Loss: tf.Tensor(0.6128346, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.7521594, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 12903\n",
+ "Discriminator Loss: tf.Tensor(0.50892353, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.9793677, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 12904\n",
+ "Discriminator Loss: tf.Tensor(0.6135803, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.6797796, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 12905\n",
+ "Discriminator Loss: tf.Tensor(0.30294663, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.6369824, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 12906\n",
+ "Discriminator Loss: tf.Tensor(0.2802822, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.4395223, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 12907\n",
+ "Discriminator Loss: tf.Tensor(1.1356016, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.0015192231, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 12908\n",
+ "Discriminator Loss: tf.Tensor(0.51660335, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.2512145, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 12909\n",
+ "Discriminator Loss: tf.Tensor(0.27515414, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.9427052, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 12910\n",
+ "Discriminator Loss: tf.Tensor(0.8060437, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(3.0690775, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 12911\n",
+ "Discriminator Loss: tf.Tensor(0.28673574, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.84387475, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 12912\n",
+ "Discriminator Loss: tf.Tensor(1.2986673, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(3.8082008, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 12913\n",
+ "Discriminator Loss: tf.Tensor(0.21771802, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.92250913, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 12914\n",
+ "Discriminator Loss: tf.Tensor(1.402237, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.965026, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 12915\n",
+ "Discriminator Loss: tf.Tensor(0.1289405, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.9756479, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 12916\n",
+ "Discriminator Loss: tf.Tensor(0.8880123, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.5551329, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 12917\n",
+ "Discriminator Loss: tf.Tensor(0.49161744, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.5721272, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 12918\n",
+ "Discriminator Loss: tf.Tensor(1.089328, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(3.0514305, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 12919\n",
+ "Discriminator Loss: tf.Tensor(0.2672579, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.0827726, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 12920\n",
+ "Discriminator Loss: tf.Tensor(0.9585985, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.24559474, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 12921\n",
+ "Discriminator Loss: tf.Tensor(1.0239269, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.6345758, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 12922\n",
+ "Discriminator Loss: tf.Tensor(0.41711178, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.7230378, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 12923\n",
+ "Discriminator Loss: tf.Tensor(0.42072248, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.4353402, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 12924\n",
+ "Discriminator Loss: tf.Tensor(0.093496166, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.0158643, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 12925\n",
+ "Discriminator Loss: tf.Tensor(1.1369271, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.8709764, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 12926\n",
+ "Discriminator Loss: tf.Tensor(0.64982337, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.5067255, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 12927\n",
+ "Discriminator Loss: tf.Tensor(1.9085882, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.782521, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 12928\n",
+ "Discriminator Loss: tf.Tensor(0.63143337, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.4681625, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 12929\n",
+ "Discriminator Loss: tf.Tensor(1.1317208, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.7937247, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 12930\n",
+ "Discriminator Loss: tf.Tensor(0.63697433, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.70965433, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 12931\n",
+ "Discriminator Loss: tf.Tensor(0.74438703, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.9120601, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 12932\n",
+ "Discriminator Loss: tf.Tensor(0.64979607, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.603113, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 12933\n",
+ "Discriminator Loss: tf.Tensor(1.2866476, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.6417685, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 12934\n",
+ "Discriminator Loss: tf.Tensor(1.4813697, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.31450537, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 12935\n",
+ "Discriminator Loss: tf.Tensor(0.85362315, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.3339472, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 12936\n",
+ "Discriminator Loss: tf.Tensor(0.84866077, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.2931418, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 12937\n",
+ "Discriminator Loss: tf.Tensor(0.6797536, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.7872969, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 12938\n",
+ "Discriminator Loss: tf.Tensor(0.3652031, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.8486735, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 12939\n",
+ "Discriminator Loss: tf.Tensor(0.8722157, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.3379471, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 12940\n",
+ "Discriminator Loss: tf.Tensor(0.96970487, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.36700186, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 12941\n",
+ "Discriminator Loss: tf.Tensor(0.97633994, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.971961, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 12942\n",
+ "Discriminator Loss: tf.Tensor(1.4663316, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.25005826, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 12943\n",
+ "Discriminator Loss: tf.Tensor(0.55204946, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.905591, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 12944\n",
+ "Discriminator Loss: tf.Tensor(0.56686497, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.6400213, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 12945\n",
+ "Discriminator Loss: tf.Tensor(0.9061072, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.5294294, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 12946\n",
+ "Discriminator Loss: tf.Tensor(0.15507972, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.97540903, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 12947\n",
+ "Discriminator Loss: tf.Tensor(0.49357152, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.1830254, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 12948\n",
+ "Discriminator Loss: tf.Tensor(0.20386001, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.1822627, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 12949\n",
+ "Discriminator Loss: tf.Tensor(1.0207937, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.15459774, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 12950\n",
+ "Discriminator Loss: tf.Tensor(0.74484074, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.46443, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 12951\n",
+ "Discriminator Loss: tf.Tensor(0.8918393, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.21849231, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 12952\n",
+ "Discriminator Loss: tf.Tensor(0.3583353, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.9132291, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 12953\n",
+ "Discriminator Loss: tf.Tensor(1.0985004, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.52938724, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 12954\n",
+ "Discriminator Loss: tf.Tensor(0.4725024, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.1032574, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 12955\n",
+ "Discriminator Loss: tf.Tensor(0.8505809, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.44948053, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 12956\n",
+ "Discriminator Loss: tf.Tensor(1.41503, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.9784153, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 12957\n",
+ "Discriminator Loss: tf.Tensor(0.9688757, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.1624509, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 12958\n",
+ "Discriminator Loss: tf.Tensor(0.6881454, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.0344703, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 12959\n",
+ "Discriminator Loss: tf.Tensor(0.19575076, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.9800573, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 12960\n",
+ "Discriminator Loss: tf.Tensor(1.3547678, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(3.0030181, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 12961\n",
+ "Discriminator Loss: tf.Tensor(0.6044207, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.76210994, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 12962\n",
+ "Discriminator Loss: tf.Tensor(0.3821438, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.409705, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 12963\n",
+ "Discriminator Loss: tf.Tensor(0.20751606, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.0834037, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 12964\n",
+ "Discriminator Loss: tf.Tensor(1.0845603, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.04954521, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 12965\n",
+ "Discriminator Loss: tf.Tensor(1.1676672, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.660116, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 12966\n",
+ "Discriminator Loss: tf.Tensor(0.4639328, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.265885, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 12967\n",
+ "Discriminator Loss: tf.Tensor(0.7477207, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.34992364, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 12968\n",
+ "Discriminator Loss: tf.Tensor(0.3782718, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.5271256, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 12969\n",
+ "Discriminator Loss: tf.Tensor(0.4394012, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.4925885, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 12970\n",
+ "Discriminator Loss: tf.Tensor(0.68630433, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.3907976, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 12971\n",
+ "Discriminator Loss: tf.Tensor(0.6523073, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.5974936, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 12972\n",
+ "Discriminator Loss: tf.Tensor(0.4928056, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.4324999, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 12973\n",
+ "Discriminator Loss: tf.Tensor(1.7855312, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.5281253, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 12974\n",
+ "Discriminator Loss: tf.Tensor(0.5829564, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.6492935, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 12975\n",
+ "Discriminator Loss: tf.Tensor(0.97911817, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.29656076, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 12976\n",
+ "Discriminator Loss: tf.Tensor(0.5681622, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.1539533, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 12977\n",
+ "Discriminator Loss: tf.Tensor(0.4943405, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.7346936, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 12978\n",
+ "Discriminator Loss: tf.Tensor(0.88285476, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.7805316, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 12979\n",
+ "Discriminator Loss: tf.Tensor(0.08145803, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.074382, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 12980\n",
+ "Discriminator Loss: tf.Tensor(0.35549062, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.6946692, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 12981\n",
+ "Discriminator Loss: tf.Tensor(1.3504204, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(3.137352, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 12982\n",
+ "Discriminator Loss: tf.Tensor(0.25168818, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.3679739, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 12983\n",
+ "Discriminator Loss: tf.Tensor(1.1020541, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.031101175, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 12984\n",
+ "Discriminator Loss: tf.Tensor(1.1576201, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.1999617, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 12985\n",
+ "Discriminator Loss: tf.Tensor(0.82543415, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.30932248, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 12986\n",
+ "Discriminator Loss: tf.Tensor(0.61823976, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.1571274, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 12987\n",
+ "Discriminator Loss: tf.Tensor(0.18241403, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.0184578, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 12988\n",
+ "Discriminator Loss: tf.Tensor(0.10149937, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.079739, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 12989\n",
+ "Discriminator Loss: tf.Tensor(1.8868163, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.34726277, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 12990\n",
+ "Discriminator Loss: tf.Tensor(1.3201938, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.968877, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 12991\n",
+ "Discriminator Loss: tf.Tensor(1.2460667, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.89644223, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 12992\n",
+ "Discriminator Loss: tf.Tensor(1.5111012, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.5608605, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 12993\n",
+ "Discriminator Loss: tf.Tensor(1.1764452, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.07890962, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 12994\n",
+ "Discriminator Loss: tf.Tensor(0.8322034, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.1624731, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 12995\n",
+ "Discriminator Loss: tf.Tensor(1.0463033, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.4349805, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 12996\n",
+ "Discriminator Loss: tf.Tensor(0.4461323, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.0424942, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 12997\n",
+ "Discriminator Loss: tf.Tensor(1.3923292, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.34839973, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 12998\n",
+ "Discriminator Loss: tf.Tensor(0.591503, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.0132947, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 12999\n",
+ "Discriminator Loss: tf.Tensor(1.2681204, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.32163575, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 13000\n",
+ "Discriminator Loss: tf.Tensor(0.5844954, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.9519885, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 13001\n",
+ "Discriminator Loss: tf.Tensor(0.690417, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.8098444, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 13002\n",
+ "Discriminator Loss: tf.Tensor(1.3743546, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.13171966, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 13003\n",
+ "Discriminator Loss: tf.Tensor(0.77278996, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.3776708, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 13004\n",
+ "Discriminator Loss: tf.Tensor(1.2874749, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.18498246, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 13005\n",
+ "Discriminator Loss: tf.Tensor(0.9289324, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.3852949, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 13006\n",
+ "Discriminator Loss: tf.Tensor(1.2254694, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.080511555, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 13007\n",
+ "Discriminator Loss: tf.Tensor(0.357749, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.3089867, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 13008\n",
+ "Discriminator Loss: tf.Tensor(0.8994237, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.18106817, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 13009\n",
+ "Discriminator Loss: tf.Tensor(0.60356605, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.9396797, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 13010\n",
+ "Discriminator Loss: tf.Tensor(0.35687736, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.80886155, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 13011\n",
+ "Discriminator Loss: tf.Tensor(0.89691937, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.324052, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 13012\n",
+ "Discriminator Loss: tf.Tensor(0.111241326, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.9174564, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 13013\n",
+ "Discriminator Loss: tf.Tensor(0.4646274, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.09904, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 13014\n",
+ "Discriminator Loss: tf.Tensor(1.2920293, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.25205338, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 13015\n",
+ "Discriminator Loss: tf.Tensor(1.0046575, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.8514318, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 13016\n",
+ "Discriminator Loss: tf.Tensor(0.6962712, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.4147804, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 13017\n",
+ "Discriminator Loss: tf.Tensor(0.97506607, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.2317064, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 13018\n",
+ "Discriminator Loss: tf.Tensor(0.7345321, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.34742475, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 13019\n",
+ "Discriminator Loss: tf.Tensor(1.121536, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.3321273, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 13020\n",
+ "Discriminator Loss: tf.Tensor(0.81620693, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.36388493, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 13021\n",
+ "Discriminator Loss: tf.Tensor(0.5607657, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.9573914, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 13022\n",
+ "Discriminator Loss: tf.Tensor(0.17069894, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.0279812, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 13023\n",
+ "Discriminator Loss: tf.Tensor(0.30786568, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.8013728, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 13024\n",
+ "Discriminator Loss: tf.Tensor(0.77419484, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.2934177, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 13025\n",
+ "Discriminator Loss: tf.Tensor(0.96941274, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.052539334, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 13026\n",
+ "Discriminator Loss: tf.Tensor(0.90513045, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.5817382, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 13027\n",
+ "Discriminator Loss: tf.Tensor(1.1356825, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.2078499, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 13028\n",
+ "Discriminator Loss: tf.Tensor(0.5828595, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.4994087, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 13029\n",
+ "Discriminator Loss: tf.Tensor(0.71862596, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.6450376, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 13030\n",
+ "Discriminator Loss: tf.Tensor(0.9750643, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.995052, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 13031\n",
+ "Discriminator Loss: tf.Tensor(0.28526658, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.0623089, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 13032\n",
+ "Discriminator Loss: tf.Tensor(1.1454569, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.07157525, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 13033\n",
+ "Discriminator Loss: tf.Tensor(1.1753482, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.446647, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 13034\n",
+ "Discriminator Loss: tf.Tensor(0.28638068, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.98321366, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 13035\n",
+ "Discriminator Loss: tf.Tensor(0.25252172, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.3185265, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 13036\n",
+ "Discriminator Loss: tf.Tensor(0.41217005, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.1208254, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 13037\n",
+ "Discriminator Loss: tf.Tensor(2.0991714, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.92846996, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 13038\n",
+ "Discriminator Loss: tf.Tensor(0.47721156, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.4005905, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 13039\n",
+ "Discriminator Loss: tf.Tensor(1.0242906, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.1738738, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 13040\n",
+ "Discriminator Loss: tf.Tensor(1.1489083, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.041342, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 13041\n",
+ "Discriminator Loss: tf.Tensor(1.3038957, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.03292859, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 13042\n",
+ "Discriminator Loss: tf.Tensor(0.5605261, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.5373467, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 13043\n",
+ "Discriminator Loss: tf.Tensor(0.6999136, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.7027734, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 13044\n",
+ "Discriminator Loss: tf.Tensor(0.28464338, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.9807147, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 13045\n",
+ "Discriminator Loss: tf.Tensor(0.7512728, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.33722988, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 13046\n",
+ "Discriminator Loss: tf.Tensor(1.5279703, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.8743327, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 13047\n",
+ "Discriminator Loss: tf.Tensor(0.26268923, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.0200928, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 13048\n",
+ "Discriminator Loss: tf.Tensor(0.16189635, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.97943443, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 13049\n",
+ "Discriminator Loss: tf.Tensor(0.3536268, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.3786054, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 13050\n",
+ "Discriminator Loss: tf.Tensor(0.6463597, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.3173838, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 13051\n",
+ "Discriminator Loss: tf.Tensor(1.2321546, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.13894856, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 13052\n",
+ "Discriminator Loss: tf.Tensor(0.61456394, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.4128065, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 13053\n",
+ "Discriminator Loss: tf.Tensor(0.9807128, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.04507036, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 13054\n",
+ "Discriminator Loss: tf.Tensor(0.6435377, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.0356076, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 13055\n",
+ "Discriminator Loss: tf.Tensor(2.0643907, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-1.034413, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 13056\n",
+ "Discriminator Loss: tf.Tensor(0.6823164, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.2274876, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 13057\n",
+ "Discriminator Loss: tf.Tensor(0.9237726, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.15731014, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 13058\n",
+ "Discriminator Loss: tf.Tensor(0.8944953, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.5096495, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 13059\n",
+ "Discriminator Loss: tf.Tensor(0.81601894, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.31899366, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 13060\n",
+ "Discriminator Loss: tf.Tensor(0.92220056, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.6592934, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 13061\n",
+ "Discriminator Loss: tf.Tensor(0.4121182, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.0974003, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 13062\n",
+ "Discriminator Loss: tf.Tensor(1.0552249, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.008317792, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 13063\n",
+ "Discriminator Loss: tf.Tensor(1.211088, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.0901587, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 13064\n",
+ "Discriminator Loss: tf.Tensor(0.6701536, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.36708832, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 13065\n",
+ "Discriminator Loss: tf.Tensor(0.44195062, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.0531566, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 13066\n",
+ "Discriminator Loss: tf.Tensor(0.07404691, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.0558856, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 13067\n",
+ "Discriminator Loss: tf.Tensor(0.12290583, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.99623376, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 13068\n",
+ "Discriminator Loss: tf.Tensor(0.9799544, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.2627213, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 13069\n",
+ "Discriminator Loss: tf.Tensor(0.7071243, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.5835573, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 13070\n",
+ "Discriminator Loss: tf.Tensor(0.8371021, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.3178496, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 13071\n",
+ "Discriminator Loss: tf.Tensor(1.0965867, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.12988286, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 13072\n",
+ "Discriminator Loss: tf.Tensor(1.6666574, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.7906476, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 13073\n",
+ "Discriminator Loss: tf.Tensor(1.8233162, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.5024843, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 13074\n",
+ "Discriminator Loss: tf.Tensor(0.72594523, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.3633462, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 13075\n",
+ "Discriminator Loss: tf.Tensor(1.225559, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.15102102, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 13076\n",
+ "Discriminator Loss: tf.Tensor(0.5710552, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.5053884, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 13077\n",
+ "Discriminator Loss: tf.Tensor(0.15625483, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.9941805, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 13078\n",
+ "Discriminator Loss: tf.Tensor(0.7130572, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.7417172, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 13079\n",
+ "Discriminator Loss: tf.Tensor(1.6672573, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.51225525, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 13080\n",
+ "Discriminator Loss: tf.Tensor(0.69151247, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.3861402, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 13081\n",
+ "Discriminator Loss: tf.Tensor(0.88922995, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.41423592, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 13082\n",
+ "Discriminator Loss: tf.Tensor(0.4926356, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.786367, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 13083\n",
+ "Discriminator Loss: tf.Tensor(0.95147, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.47176483, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 13084\n",
+ "Discriminator Loss: tf.Tensor(0.5601398, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.1372821, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 13085\n",
+ "Discriminator Loss: tf.Tensor(0.38457412, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.1287712, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 13086\n",
+ "Discriminator Loss: tf.Tensor(0.93828833, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.19473429, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 13087\n",
+ "Discriminator Loss: tf.Tensor(0.32164782, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.3756788, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 13088\n",
+ "Discriminator Loss: tf.Tensor(0.4643069, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.7491205, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 13089\n",
+ "Discriminator Loss: tf.Tensor(0.98101354, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.4738262, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 13090\n",
+ "Discriminator Loss: tf.Tensor(2.1756623, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-1.0546975, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 13091\n",
+ "Discriminator Loss: tf.Tensor(0.59462434, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.8934242, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 13092\n",
+ "Discriminator Loss: tf.Tensor(0.63185483, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.5093345, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 13093\n",
+ "Discriminator Loss: tf.Tensor(0.27520764, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.6216915, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 13094\n",
+ "Discriminator Loss: tf.Tensor(0.45363924, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.4330593, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 13095\n",
+ "Discriminator Loss: tf.Tensor(0.86671525, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.15554772, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 13096\n",
+ "Discriminator Loss: tf.Tensor(1.0368385, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.493368, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 13097\n",
+ "Discriminator Loss: tf.Tensor(0.19815338, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.0466433, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 13098\n",
+ "Discriminator Loss: tf.Tensor(0.77637374, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.27025637, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 13099\n",
+ "Discriminator Loss: tf.Tensor(0.893041, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.4152517, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 13100\n",
+ "Discriminator Loss: tf.Tensor(0.20105541, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.0446852, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 13101\n",
+ "Discriminator Loss: tf.Tensor(0.3583481, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.0704014, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 13102\n",
+ "Discriminator Loss: tf.Tensor(0.8912737, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.26334295, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 13103\n",
+ "Discriminator Loss: tf.Tensor(0.99608994, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.0950415, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 13104\n",
+ "Discriminator Loss: tf.Tensor(1.3222593, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.21740222, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 13105\n",
+ "Discriminator Loss: tf.Tensor(0.99064726, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.4712616, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 13106\n",
+ "Discriminator Loss: tf.Tensor(0.9199224, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.2690476, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 13107\n",
+ "Discriminator Loss: tf.Tensor(0.43065453, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.7659, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 13108\n",
+ "Discriminator Loss: tf.Tensor(0.36650455, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.7741201, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 13109\n",
+ "Discriminator Loss: tf.Tensor(1.1713082, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.5639467, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 13110\n",
+ "Discriminator Loss: tf.Tensor(0.6096164, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.4546555, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 13111\n",
+ "Discriminator Loss: tf.Tensor(0.69890994, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.1399317, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 13112\n",
+ "Discriminator Loss: tf.Tensor(0.4175449, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.62601346, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 13113\n",
+ "Discriminator Loss: tf.Tensor(0.8571471, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.9610436, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 13114\n",
+ "Discriminator Loss: tf.Tensor(0.6860153, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.6828845, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 13115\n",
+ "Discriminator Loss: tf.Tensor(0.7795241, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.913648, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 13116\n",
+ "Discriminator Loss: tf.Tensor(0.22527786, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.1912249, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 13117\n",
+ "Discriminator Loss: tf.Tensor(1.136467, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.17415906, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 13118\n",
+ "Discriminator Loss: tf.Tensor(1.0563622, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.8334668, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 13119\n",
+ "Discriminator Loss: tf.Tensor(0.1980758, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.414691, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 13120\n",
+ "Discriminator Loss: tf.Tensor(0.7035631, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.3179364, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 13121\n",
+ "Discriminator Loss: tf.Tensor(0.5582895, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.1620195, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 13122\n",
+ "Discriminator Loss: tf.Tensor(0.7824023, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.30075893, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 13123\n",
+ "Discriminator Loss: tf.Tensor(1.5478039, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(3.3569443, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 13124\n",
+ "Discriminator Loss: tf.Tensor(0.50436926, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.70974445, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 13125\n",
+ "Discriminator Loss: tf.Tensor(0.4365793, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.6603844, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 13126\n",
+ "Discriminator Loss: tf.Tensor(0.32904112, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.5015258, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 13127\n",
+ "Discriminator Loss: tf.Tensor(1.0897293, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.14068575, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 13128\n",
+ "Discriminator Loss: tf.Tensor(0.46375868, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.4544636, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 13129\n",
+ "Discriminator Loss: tf.Tensor(1.9255227, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.48256016, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 13130\n",
+ "Discriminator Loss: tf.Tensor(0.7162383, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.6793884, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 13131\n",
+ "Discriminator Loss: tf.Tensor(1.2036054, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.19477952, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 13132\n",
+ "Discriminator Loss: tf.Tensor(0.926351, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.7689581, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 13133\n",
+ "Discriminator Loss: tf.Tensor(1.2470487, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.1164605, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 13134\n",
+ "Discriminator Loss: tf.Tensor(1.0012201, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.0940144, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 13135\n",
+ "Discriminator Loss: tf.Tensor(0.71704364, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.30720672, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 13136\n",
+ "Discriminator Loss: tf.Tensor(1.0686014, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.2138927, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 13137\n",
+ "Discriminator Loss: tf.Tensor(1.1979795, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.029985541, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 13138\n",
+ "Discriminator Loss: tf.Tensor(0.7798752, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.9313755, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 13139\n",
+ "Discriminator Loss: tf.Tensor(0.6500205, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.4717075, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 13140\n",
+ "Discriminator Loss: tf.Tensor(1.0226766, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.54869, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 13141\n",
+ "Discriminator Loss: tf.Tensor(0.5091921, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.76229554, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 13142\n",
+ "Discriminator Loss: tf.Tensor(0.3689353, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.8780518, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 13143\n",
+ "Discriminator Loss: tf.Tensor(0.34788743, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.6765593, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 13144\n",
+ "Discriminator Loss: tf.Tensor(0.6494902, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.44798395, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 13145\n",
+ "Discriminator Loss: tf.Tensor(0.91895294, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.5557559, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 13146\n",
+ "Discriminator Loss: tf.Tensor(0.26466918, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.213392, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 13147\n",
+ "Discriminator Loss: tf.Tensor(1.1571401, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.29868564, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 13148\n",
+ "Discriminator Loss: tf.Tensor(0.5437291, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.9763843, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 13149\n",
+ "Discriminator Loss: tf.Tensor(0.26856777, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.93944454, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 13150\n",
+ "Discriminator Loss: tf.Tensor(0.7151737, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.3944664, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 13151\n",
+ "Discriminator Loss: tf.Tensor(0.7531539, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.35398927, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 13152\n",
+ "Discriminator Loss: tf.Tensor(0.90915966, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.7796233, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 13153\n",
+ "Discriminator Loss: tf.Tensor(0.45400205, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.3322282, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 13154\n",
+ "Discriminator Loss: tf.Tensor(1.157556, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.026368469, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 13155\n",
+ "Discriminator Loss: tf.Tensor(0.71275556, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.288796, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 13156\n",
+ "Discriminator Loss: tf.Tensor(0.33257475, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.9094672, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 13157\n",
+ "Discriminator Loss: tf.Tensor(0.7110983, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(3.1918647, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 13158\n",
+ "Discriminator Loss: tf.Tensor(0.19337395, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.5130478, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 13159\n",
+ "Discriminator Loss: tf.Tensor(1.4938245, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.45938805, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 13160\n",
+ "Discriminator Loss: tf.Tensor(0.98408353, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.215792, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 13161\n",
+ "Discriminator Loss: tf.Tensor(1.0554576, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.3277128, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 13162\n",
+ "Discriminator Loss: tf.Tensor(0.5748488, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.7193116, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 13163\n",
+ "Discriminator Loss: tf.Tensor(1.5572134, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.40293548, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 13164\n",
+ "Discriminator Loss: tf.Tensor(0.7917394, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.57953, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 13165\n",
+ "Discriminator Loss: tf.Tensor(0.38610303, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.7559387, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 13166\n",
+ "Discriminator Loss: tf.Tensor(1.1622249, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.4722726, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 13167\n",
+ "Discriminator Loss: tf.Tensor(0.86426735, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.52371424, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 13168\n",
+ "Discriminator Loss: tf.Tensor(0.35289, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.063773, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 13169\n",
+ "Discriminator Loss: tf.Tensor(0.69525576, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.3863777, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 13170\n",
+ "Discriminator Loss: tf.Tensor(0.8734659, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.4765842, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 13171\n",
+ "Discriminator Loss: tf.Tensor(0.87010956, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.6756727, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 13172\n",
+ "Discriminator Loss: tf.Tensor(1.220683, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.5407271, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 13173\n",
+ "Discriminator Loss: tf.Tensor(0.69177115, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.48760954, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 13174\n",
+ "Discriminator Loss: tf.Tensor(0.44473764, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.248192, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 13175\n",
+ "Discriminator Loss: tf.Tensor(0.17122549, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.3753065, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 13176\n",
+ "Discriminator Loss: tf.Tensor(0.7705053, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.53364056, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 13177\n",
+ "Discriminator Loss: tf.Tensor(0.56827384, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.757592, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 13178\n",
+ "Discriminator Loss: tf.Tensor(0.5444031, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.4095402, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 13179\n",
+ "Discriminator Loss: tf.Tensor(1.1362567, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.08137772, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 13180\n",
+ "Discriminator Loss: tf.Tensor(0.74702066, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.3180077, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 13181\n",
+ "Discriminator Loss: tf.Tensor(0.48341057, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.5598277, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 13182\n",
+ "Discriminator Loss: tf.Tensor(1.1882468, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(3.104386, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 13183\n",
+ "Discriminator Loss: tf.Tensor(0.6510316, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.46540853, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 13184\n",
+ "Discriminator Loss: tf.Tensor(0.5815829, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.3090074, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 13185\n",
+ "Discriminator Loss: tf.Tensor(0.16696832, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.8537585, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 13186\n",
+ "Discriminator Loss: tf.Tensor(1.1493199, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(3.3334436, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 13187\n",
+ "Discriminator Loss: tf.Tensor(0.06767638, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.0007969, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 13188\n",
+ "Discriminator Loss: tf.Tensor(0.3612853, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.8512166, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 13189\n",
+ "Discriminator Loss: tf.Tensor(0.2820074, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.8505548, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 13190\n",
+ "Discriminator Loss: tf.Tensor(84.80002, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.1426753, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 13191\n",
+ "Discriminator Loss: tf.Tensor(55.265354, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.25860292, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 13192\n",
+ "Discriminator Loss: tf.Tensor(13.86094, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.23686047, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 13193\n",
+ "Discriminator Loss: tf.Tensor(7.677121, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.37404242, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 13194\n",
+ "Discriminator Loss: tf.Tensor(6.2455535, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.35207662, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 13195\n",
+ "Discriminator Loss: tf.Tensor(5.0884714, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.3644581, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 13196\n",
+ "Discriminator Loss: tf.Tensor(4.49584, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.37489843, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 13197\n",
+ "Discriminator Loss: tf.Tensor(3.5958471, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.37081972, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 13198\n",
+ "Discriminator Loss: tf.Tensor(3.1625288, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.39004382, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 13199\n",
+ "Discriminator Loss: tf.Tensor(3.091752, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.39520743, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 13200\n",
+ "Discriminator Loss: tf.Tensor(2.8593438, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.40144178, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 13201\n",
+ "Discriminator Loss: tf.Tensor(2.658224, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.4287475, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 13202\n",
+ "Discriminator Loss: tf.Tensor(2.658181, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.44562152, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 13203\n",
+ "Discriminator Loss: tf.Tensor(2.434997, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.45659128, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 13204\n",
+ "Discriminator Loss: tf.Tensor(2.4852233, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.47087392, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 13205\n",
+ "Discriminator Loss: tf.Tensor(2.270199, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.45703825, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 13206\n",
+ "Discriminator Loss: tf.Tensor(2.2815182, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.49484944, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 13207\n",
+ "Discriminator Loss: tf.Tensor(2.1981084, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.469824, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 13208\n",
+ "Discriminator Loss: tf.Tensor(2.1842735, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.48284113, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 13209\n",
+ "Discriminator Loss: tf.Tensor(2.1115847, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.5206609, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 13210\n",
+ "Discriminator Loss: tf.Tensor(2.0101628, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.51989174, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 13211\n",
+ "Discriminator Loss: tf.Tensor(1.9452658, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.56847644, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 13212\n",
+ "Discriminator Loss: tf.Tensor(2.0293, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.5817321, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 13213\n",
+ "Discriminator Loss: tf.Tensor(1.9546771, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.5739979, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 13214\n",
+ "Discriminator Loss: tf.Tensor(1.920668, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.6069969, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 13215\n",
+ "Discriminator Loss: tf.Tensor(1.9036202, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.5796166, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 13216\n",
+ "Discriminator Loss: tf.Tensor(2.0272245, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.64862853, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 13217\n",
+ "Discriminator Loss: tf.Tensor(1.922873, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.57325906, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 13218\n",
+ "Discriminator Loss: tf.Tensor(1.8767831, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.64491516, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 13219\n",
+ "Discriminator Loss: tf.Tensor(1.8175186, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.53877944, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 13220\n",
+ "Discriminator Loss: tf.Tensor(1.7331837, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.616949, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 13221\n",
+ "Discriminator Loss: tf.Tensor(1.8675389, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.50388294, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 13222\n",
+ "Discriminator Loss: tf.Tensor(1.7843174, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.6497627, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 13223\n",
+ "Discriminator Loss: tf.Tensor(1.7567888, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.71827793, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 13224\n",
+ "Discriminator Loss: tf.Tensor(1.7907627, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.7287095, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 13225\n",
+ "Discriminator Loss: tf.Tensor(1.7954708, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.7313528, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 13226\n",
+ "Discriminator Loss: tf.Tensor(1.8858182, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.60737634, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 13227\n",
+ "Discriminator Loss: tf.Tensor(1.6532977, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.8278413, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 13228\n",
+ "Discriminator Loss: tf.Tensor(1.3936121, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.89736366, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 13229\n",
+ "Discriminator Loss: tf.Tensor(1.4475905, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.0327226, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 13230\n",
+ "Discriminator Loss: tf.Tensor(1.8773069, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.40301958, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 13231\n",
+ "Discriminator Loss: tf.Tensor(1.7210215, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.1762532, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 13232\n",
+ "Discriminator Loss: tf.Tensor(1.9331366, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.06408534, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 13233\n",
+ "Discriminator Loss: tf.Tensor(1.7890115, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.12626445, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 13234\n",
+ "Discriminator Loss: tf.Tensor(1.5159825, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.28262764, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 13235\n",
+ "Discriminator Loss: tf.Tensor(1.4140486, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.571281, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 13236\n",
+ "Discriminator Loss: tf.Tensor(1.2795979, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.2937328, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 13237\n",
+ "Discriminator Loss: tf.Tensor(1.4912008, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.8967808, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 13238\n",
+ "Discriminator Loss: tf.Tensor(1.4819477, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.8681714, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 13239\n",
+ "Discriminator Loss: tf.Tensor(1.6362607, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.2873129, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 13240\n",
+ "Discriminator Loss: tf.Tensor(1.7831596, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.5179446, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 13241\n",
+ "Discriminator Loss: tf.Tensor(1.3619721, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.08342304, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 13242\n",
+ "Discriminator Loss: tf.Tensor(1.2785047, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.33785343, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 13243\n",
+ "Discriminator Loss: tf.Tensor(1.0865704, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.13317913, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 13244\n",
+ "Discriminator Loss: tf.Tensor(0.7718598, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.64194006, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 13245\n",
+ "Discriminator Loss: tf.Tensor(0.98765075, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.87517136, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 13246\n",
+ "Discriminator Loss: tf.Tensor(0.83076394, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.9581792, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 13247\n",
+ "Discriminator Loss: tf.Tensor(1.5971283, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.101162, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 13248\n",
+ "Discriminator Loss: tf.Tensor(1.5142998, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.41256145, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 13249\n",
+ "Discriminator Loss: tf.Tensor(1.2362745, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.76203877, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 13250\n",
+ "Discriminator Loss: tf.Tensor(0.56183285, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.87540174, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 13251\n",
+ "Discriminator Loss: tf.Tensor(0.71545374, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.6214081, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 13252\n",
+ "Discriminator Loss: tf.Tensor(1.8396316, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.7474831, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 13253\n",
+ "Discriminator Loss: tf.Tensor(0.8892277, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.9245611, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 13254\n",
+ "Discriminator Loss: tf.Tensor(0.8541917, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.2397554, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 13255\n",
+ "Discriminator Loss: tf.Tensor(1.3531431, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.32686028, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 13256\n",
+ "Discriminator Loss: tf.Tensor(0.6415392, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.170442, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 13257\n",
+ "Discriminator Loss: tf.Tensor(0.7950682, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.31386408, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 13258\n",
+ "Discriminator Loss: tf.Tensor(0.4455478, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.4594339, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 13259\n",
+ "Discriminator Loss: tf.Tensor(1.1515088, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.05668236, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 13260\n",
+ "Discriminator Loss: tf.Tensor(0.8272491, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.2390376, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 13261\n",
+ "Discriminator Loss: tf.Tensor(1.2249471, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.048827697, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 13262\n",
+ "Discriminator Loss: tf.Tensor(0.5593171, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.3427018, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 13263\n",
+ "Discriminator Loss: tf.Tensor(1.2549247, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.07277333, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 13264\n",
+ "Discriminator Loss: tf.Tensor(0.62548655, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.5196921, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 13265\n",
+ "Discriminator Loss: tf.Tensor(1.3903167, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.33181885, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 13266\n",
+ "Discriminator Loss: tf.Tensor(0.7473672, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.4076399, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 13267\n",
+ "Discriminator Loss: tf.Tensor(1.2140489, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.003943929, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 13268\n",
+ "Discriminator Loss: tf.Tensor(0.42788702, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.5623422, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 13269\n",
+ "Discriminator Loss: tf.Tensor(1.0995381, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.05476131, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 13270\n",
+ "Discriminator Loss: tf.Tensor(0.45376313, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.9237798, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 13271\n",
+ "Discriminator Loss: tf.Tensor(0.2599414, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.86747503, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 13272\n",
+ "Discriminator Loss: tf.Tensor(1.0991876, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.5308692, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 13273\n",
+ "Discriminator Loss: tf.Tensor(0.8507152, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.37726942, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 13274\n",
+ "Discriminator Loss: tf.Tensor(0.42232567, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.8208042, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 13275\n",
+ "Discriminator Loss: tf.Tensor(0.2206896, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.95650846, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 13276\n",
+ "Discriminator Loss: tf.Tensor(0.3319465, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.4436045, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 13277\n",
+ "Discriminator Loss: tf.Tensor(0.11437896, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.0659682, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 13278\n",
+ "Discriminator Loss: tf.Tensor(0.50627553, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.0395856, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 13279\n",
+ "Discriminator Loss: tf.Tensor(1.2966856, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.50416577, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 13280\n",
+ "Discriminator Loss: tf.Tensor(1.8068852, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.712558, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 13281\n",
+ "Discriminator Loss: tf.Tensor(0.6491648, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.37775323, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 13282\n",
+ "Discriminator Loss: tf.Tensor(0.9712914, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.7661432, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 13283\n",
+ "Discriminator Loss: tf.Tensor(0.8028958, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.24601187, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 13284\n",
+ "Discriminator Loss: tf.Tensor(0.4334668, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.7689859, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 13285\n",
+ "Discriminator Loss: tf.Tensor(0.6722372, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.3626299, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 13286\n",
+ "Discriminator Loss: tf.Tensor(0.6200157, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.1980193, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 13287\n",
+ "Discriminator Loss: tf.Tensor(0.35633674, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.7700351, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 13288\n",
+ "Discriminator Loss: tf.Tensor(0.7012408, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.6590292, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 13289\n",
+ "Discriminator Loss: tf.Tensor(0.69930166, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.39293227, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 13290\n",
+ "Discriminator Loss: tf.Tensor(0.6860553, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.30799, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 13291\n",
+ "Discriminator Loss: tf.Tensor(0.29663825, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.73332053, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 13292\n",
+ "Discriminator Loss: tf.Tensor(1.4211897, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(3.124716, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 13293\n",
+ "Discriminator Loss: tf.Tensor(0.6159207, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.4467776, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 13294\n",
+ "Discriminator Loss: tf.Tensor(1.0036397, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.4585998, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 13295\n",
+ "Discriminator Loss: tf.Tensor(0.77660984, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.5600434, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 13296\n",
+ "Discriminator Loss: tf.Tensor(0.57948196, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.1503286, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 13297\n",
+ "Discriminator Loss: tf.Tensor(0.30857894, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.9764716, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 13298\n",
+ "Discriminator Loss: tf.Tensor(0.758642, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.2810745, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 13299\n",
+ "Discriminator Loss: tf.Tensor(0.6678785, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.6525616, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 13300\n",
+ "Discriminator Loss: tf.Tensor(1.142557, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.5838783, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 13301\n",
+ "Discriminator Loss: tf.Tensor(0.61202645, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.6744421, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 13302\n",
+ "Discriminator Loss: tf.Tensor(0.68270594, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.2698267, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 13303\n",
+ "Discriminator Loss: tf.Tensor(0.5482948, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.6984852, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 13304\n",
+ "Discriminator Loss: tf.Tensor(0.9787123, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(3.24348, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 13305\n",
+ "Discriminator Loss: tf.Tensor(0.10300098, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.5204445, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 13306\n",
+ "Discriminator Loss: tf.Tensor(0.25216842, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.9387161, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 13307\n",
+ "Discriminator Loss: tf.Tensor(1.4802704, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(3.1440525, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 13308\n",
+ "Discriminator Loss: tf.Tensor(0.75314295, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.55829006, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 13309\n",
+ "Discriminator Loss: tf.Tensor(1.1998906, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.3934197, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 13310\n",
+ "Discriminator Loss: tf.Tensor(0.5921857, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.59071964, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 13311\n",
+ "Discriminator Loss: tf.Tensor(0.93570924, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.6289918, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 13312\n",
+ "Discriminator Loss: tf.Tensor(0.6742746, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.51811385, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 13313\n",
+ "Discriminator Loss: tf.Tensor(0.5080278, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.2340508, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 13314\n",
+ "Discriminator Loss: tf.Tensor(0.94412804, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.45322844, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 13315\n",
+ "Discriminator Loss: tf.Tensor(1.0107841, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.7306807, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 13316\n",
+ "Discriminator Loss: tf.Tensor(0.46578485, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.8988092, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 13317\n",
+ "Discriminator Loss: tf.Tensor(0.7317816, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(3.094081, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 13318\n",
+ "Discriminator Loss: tf.Tensor(0.16032515, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.4319249, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 13319\n",
+ "Discriminator Loss: tf.Tensor(1.3893534, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.29970285, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 13320\n",
+ "Discriminator Loss: tf.Tensor(1.2132639, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.182068, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 13321\n",
+ "Discriminator Loss: tf.Tensor(0.4795626, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.8629727, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 13322\n",
+ "Discriminator Loss: tf.Tensor(0.83585495, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.4276068, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 13323\n",
+ "Discriminator Loss: tf.Tensor(0.37521932, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.8381059, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 13324\n",
+ "Discriminator Loss: tf.Tensor(1.3108459, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.826671, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 13325\n",
+ "Discriminator Loss: tf.Tensor(0.51312953, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.9539566, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 13326\n",
+ "Discriminator Loss: tf.Tensor(0.58330995, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.300917, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 13327\n",
+ "Discriminator Loss: tf.Tensor(0.5250897, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.7402007, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 13328\n",
+ "Discriminator Loss: tf.Tensor(0.67799044, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.9764216, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 13329\n",
+ "Discriminator Loss: tf.Tensor(0.2891835, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.3852819, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 13330\n",
+ "Discriminator Loss: tf.Tensor(1.2208071, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.14690392, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 13331\n",
+ "Discriminator Loss: tf.Tensor(1.3640978, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.3913953, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 13332\n",
+ "Discriminator Loss: tf.Tensor(0.4873219, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.61382616, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 13333\n",
+ "Discriminator Loss: tf.Tensor(0.5654198, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.8885734, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 13334\n",
+ "Discriminator Loss: tf.Tensor(0.21143803, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.8556919, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 13335\n",
+ "Discriminator Loss: tf.Tensor(0.7801043, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(3.7108212, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 13336\n",
+ "Discriminator Loss: tf.Tensor(0.14124143, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.3769649, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 13337\n",
+ "Discriminator Loss: tf.Tensor(6.575968, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.0037439477, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 13338\n",
+ "Discriminator Loss: tf.Tensor(7.207043, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.6273395, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 13339\n",
+ "Discriminator Loss: tf.Tensor(2.8863313, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.37960383, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 13340\n",
+ "Discriminator Loss: tf.Tensor(2.2594936, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.6520412, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 13341\n",
+ "Discriminator Loss: tf.Tensor(1.9034026, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.75958925, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 13342\n",
+ "Discriminator Loss: tf.Tensor(1.8686153, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.86418015, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 13343\n",
+ "Discriminator Loss: tf.Tensor(1.8515049, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.79514223, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 13344\n",
+ "Discriminator Loss: tf.Tensor(1.8071039, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.9435422, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 13345\n",
+ "Discriminator Loss: tf.Tensor(1.7853291, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.75370497, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 13346\n",
+ "Discriminator Loss: tf.Tensor(1.6234038, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.8944037, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 13347\n",
+ "Discriminator Loss: tf.Tensor(1.549357, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.90736324, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 13348\n",
+ "Discriminator Loss: tf.Tensor(1.4653642, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.9677724, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 13349\n",
+ "Discriminator Loss: tf.Tensor(1.6532228, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.98709774, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 13350\n",
+ "Discriminator Loss: tf.Tensor(1.4026806, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.37240568, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 13351\n",
+ "Discriminator Loss: tf.Tensor(1.3487598, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.5799156, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 13352\n",
+ "Discriminator Loss: tf.Tensor(1.301668, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.0482157, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 13353\n",
+ "Discriminator Loss: tf.Tensor(2.1112258, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.820038, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 13354\n",
+ "Discriminator Loss: tf.Tensor(1.61269, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.2651857, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 13355\n",
+ "Discriminator Loss: tf.Tensor(1.1852945, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.27745867, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 13356\n",
+ "Discriminator Loss: tf.Tensor(1.1045076, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.61543584, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 13357\n",
+ "Discriminator Loss: tf.Tensor(1.2199692, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.51820636, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 13358\n",
+ "Discriminator Loss: tf.Tensor(1.2254359, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.77875835, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 13359\n",
+ "Discriminator Loss: tf.Tensor(1.3037257, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.9389593, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 13360\n",
+ "Discriminator Loss: tf.Tensor(0.81916106, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.78072447, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 13361\n",
+ "Discriminator Loss: tf.Tensor(1.7722381, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.770371, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 13362\n",
+ "Discriminator Loss: tf.Tensor(1.8750346, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.60251385, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 13363\n",
+ "Discriminator Loss: tf.Tensor(1.4447696, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.50504357, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 13364\n",
+ "Discriminator Loss: tf.Tensor(0.96555984, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.5963195, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 13365\n",
+ "Discriminator Loss: tf.Tensor(1.0174589, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.5471128, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 13366\n",
+ "Discriminator Loss: tf.Tensor(1.7241914, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.49694344, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 13367\n",
+ "Discriminator Loss: tf.Tensor(1.0426898, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.80647254, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 13368\n",
+ "Discriminator Loss: tf.Tensor(0.9392332, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.1047298, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 13369\n",
+ "Discriminator Loss: tf.Tensor(1.5956678, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.50209695, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 13370\n",
+ "Discriminator Loss: tf.Tensor(0.6598513, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.1840369, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 13371\n",
+ "Discriminator Loss: tf.Tensor(1.019603, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.12131184, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 13372\n",
+ "Discriminator Loss: tf.Tensor(0.779595, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.174111, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 13373\n",
+ "Discriminator Loss: tf.Tensor(1.3395746, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.2509519, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 13374\n",
+ "Discriminator Loss: tf.Tensor(0.5761794, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.80003303, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 13375\n",
+ "Discriminator Loss: tf.Tensor(0.24713127, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.1709787, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 13376\n",
+ "Discriminator Loss: tf.Tensor(1.416737, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.35941353, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 13377\n",
+ "Discriminator Loss: tf.Tensor(0.7464452, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.5012404, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 13378\n",
+ "Discriminator Loss: tf.Tensor(0.6964513, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.5537336, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 13379\n",
+ "Discriminator Loss: tf.Tensor(0.54388094, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.6534234, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 13380\n",
+ "Discriminator Loss: tf.Tensor(1.2308226, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.13000843, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 13381\n",
+ "Discriminator Loss: tf.Tensor(0.6847796, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.6523482, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 13382\n",
+ "Discriminator Loss: tf.Tensor(1.5706618, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.18357451, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 13383\n",
+ "Discriminator Loss: tf.Tensor(0.22391826, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.3544792, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 13384\n",
+ "Discriminator Loss: tf.Tensor(1.0302571, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.08830089, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 13385\n",
+ "Discriminator Loss: tf.Tensor(0.901471, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.1897514, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 13386\n",
+ "Discriminator Loss: tf.Tensor(0.69281924, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.454692, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 13387\n",
+ "Discriminator Loss: tf.Tensor(0.5924008, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.2657447, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 13388\n",
+ "Discriminator Loss: tf.Tensor(0.7099347, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.49524722, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 13389\n",
+ "Discriminator Loss: tf.Tensor(0.79355276, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.5770276, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 13390\n",
+ "Discriminator Loss: tf.Tensor(0.05751382, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.0475408, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 13391\n",
+ "Discriminator Loss: tf.Tensor(0.6172635, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.5363171, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 13392\n",
+ "Discriminator Loss: tf.Tensor(0.64304626, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.8565245, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 13393\n",
+ "Discriminator Loss: tf.Tensor(0.520817, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.6434841, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 13394\n",
+ "Discriminator Loss: tf.Tensor(1.030951, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.6381524, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 13395\n",
+ "Discriminator Loss: tf.Tensor(0.16750637, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.98415035, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 13396\n",
+ "Discriminator Loss: tf.Tensor(0.47199148, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.7986345, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 13397\n",
+ "Discriminator Loss: tf.Tensor(1.2124186, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.045759033, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 13398\n",
+ "Discriminator Loss: tf.Tensor(0.8420929, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.5883, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 13399\n",
+ "Discriminator Loss: tf.Tensor(0.50398034, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.7429567, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 13400\n",
+ "Discriminator Loss: tf.Tensor(0.93369055, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.4808776, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 13401\n",
+ "Discriminator Loss: tf.Tensor(0.2852739, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.7599024, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 13402\n",
+ "Discriminator Loss: tf.Tensor(1.1734641, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(3.0253708, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 13403\n",
+ "Discriminator Loss: tf.Tensor(0.16691893, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.1310521, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 13404\n",
+ "Discriminator Loss: tf.Tensor(1.0678079, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.032931354, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 13405\n",
+ "Discriminator Loss: tf.Tensor(0.4890098, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.9433702, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 13406\n",
+ "Discriminator Loss: tf.Tensor(0.04378343, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.99124193, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 13407\n",
+ "Discriminator Loss: tf.Tensor(0.787203, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.2767003, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 13408\n",
+ "Discriminator Loss: tf.Tensor(0.13493301, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.0190884, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 13409\n",
+ "Discriminator Loss: tf.Tensor(0.577186, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.2407827, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 13410\n",
+ "Discriminator Loss: tf.Tensor(1.2034626, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.15380758, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 13411\n",
+ "Discriminator Loss: tf.Tensor(1.0691614, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.3200998, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 13412\n",
+ "Discriminator Loss: tf.Tensor(0.9881525, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.84707355, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 13413\n",
+ "Discriminator Loss: tf.Tensor(0.8318119, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.640956, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 13414\n",
+ "Discriminator Loss: tf.Tensor(0.5821396, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.54590696, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 13415\n",
+ "Discriminator Loss: tf.Tensor(0.8335624, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.0177643, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 13416\n",
+ "Discriminator Loss: tf.Tensor(1.2206522, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.32652202, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 13417\n",
+ "Discriminator Loss: tf.Tensor(0.836643, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.6389855, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 13418\n",
+ "Discriminator Loss: tf.Tensor(1.0334795, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.11222116, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 13419\n",
+ "Discriminator Loss: tf.Tensor(0.40495837, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.8629173, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 13420\n",
+ "Discriminator Loss: tf.Tensor(0.5073965, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.95059663, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 13421\n",
+ "Discriminator Loss: tf.Tensor(1.2303901, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.4999502, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 13422\n",
+ "Discriminator Loss: tf.Tensor(0.90008277, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.1908208, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 13423\n",
+ "Discriminator Loss: tf.Tensor(0.5668229, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.0149653, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 13424\n",
+ "Discriminator Loss: tf.Tensor(0.2647177, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.9464688, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 13425\n",
+ "Discriminator Loss: tf.Tensor(0.5823293, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.5440438, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 13426\n",
+ "Discriminator Loss: tf.Tensor(0.329759, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.0021018, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 13427\n",
+ "Discriminator Loss: tf.Tensor(0.25969416, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.1505936, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 13428\n",
+ "Discriminator Loss: tf.Tensor(0.8213816, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.24501635, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 13429\n",
+ "Discriminator Loss: tf.Tensor(1.0389211, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.9361718, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 13430\n",
+ "Discriminator Loss: tf.Tensor(0.4705298, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.18293, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 13431\n",
+ "Discriminator Loss: tf.Tensor(0.88204163, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.22921969, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 13432\n",
+ "Discriminator Loss: tf.Tensor(0.78388584, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.185098, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 13433\n",
+ "Discriminator Loss: tf.Tensor(0.2168378, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.8257397, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 13434\n",
+ "Discriminator Loss: tf.Tensor(0.6364852, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(3.1014206, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 13435\n",
+ "Discriminator Loss: tf.Tensor(0.17836593, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.072704, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 13436\n",
+ "Discriminator Loss: tf.Tensor(1.1354905, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.09917908, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 13437\n",
+ "Discriminator Loss: tf.Tensor(1.078783, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.8300962, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 13438\n",
+ "Discriminator Loss: tf.Tensor(0.405648, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.5639623, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 13439\n",
+ "Discriminator Loss: tf.Tensor(0.2647215, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.9448962, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 13440\n",
+ "Discriminator Loss: tf.Tensor(0.45014948, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(3.130067, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 13441\n",
+ "Discriminator Loss: tf.Tensor(0.075005524, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.9941419, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 13442\n",
+ "Discriminator Loss: tf.Tensor(0.108807825, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.279254, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 13443\n",
+ "Discriminator Loss: tf.Tensor(1.1705172, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.1160908, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 13444\n",
+ "Discriminator Loss: tf.Tensor(1.5594814, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(3.4542084, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 13445\n",
+ "Discriminator Loss: tf.Tensor(0.5928094, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.69927645, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 13446\n",
+ "Discriminator Loss: tf.Tensor(1.1599003, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.3708649, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 13447\n",
+ "Discriminator Loss: tf.Tensor(0.9039809, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.5289111, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 13448\n",
+ "Discriminator Loss: tf.Tensor(0.21732476, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.8421073, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 13449\n",
+ "Discriminator Loss: tf.Tensor(1.5484427, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.20556508, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 13450\n",
+ "Discriminator Loss: tf.Tensor(1.6555343, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.9419409, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 13451\n",
+ "Discriminator Loss: tf.Tensor(1.1975895, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.07120025, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 13452\n",
+ "Discriminator Loss: tf.Tensor(0.7145412, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.3742887, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 13453\n",
+ "Discriminator Loss: tf.Tensor(1.1707731, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.052662108, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 13454\n",
+ "Discriminator Loss: tf.Tensor(0.59652597, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.7282782, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 13455\n",
+ "Discriminator Loss: tf.Tensor(0.49622768, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.7627866, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 13456\n",
+ "Discriminator Loss: tf.Tensor(0.97578037, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.2061696, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 13457\n",
+ "Discriminator Loss: tf.Tensor(0.59402287, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.47678617, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 13458\n",
+ "Discriminator Loss: tf.Tensor(0.51470226, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.8450832, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 13459\n",
+ "Discriminator Loss: tf.Tensor(1.7249944, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.3345082, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 13460\n",
+ "Discriminator Loss: tf.Tensor(0.8701425, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.7255019, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 13461\n",
+ "Discriminator Loss: tf.Tensor(1.1120563, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.07268367, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 13462\n",
+ "Discriminator Loss: tf.Tensor(0.15694556, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.5701364, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 13463\n",
+ "Discriminator Loss: tf.Tensor(1.2393281, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.012259029, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 13464\n",
+ "Discriminator Loss: tf.Tensor(0.9297138, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.213125, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 13465\n",
+ "Discriminator Loss: tf.Tensor(0.3765856, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.9283183, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 13466\n",
+ "Discriminator Loss: tf.Tensor(0.799723, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.5630977, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 13467\n",
+ "Discriminator Loss: tf.Tensor(0.6340743, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.79199487, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 13468\n",
+ "Discriminator Loss: tf.Tensor(0.7122044, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.0846303, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 13469\n",
+ "Discriminator Loss: tf.Tensor(0.5401826, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.6406314, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 13470\n",
+ "Discriminator Loss: tf.Tensor(0.43905962, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.4293387, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 13471\n",
+ "Discriminator Loss: tf.Tensor(0.36006224, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.8565065, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 13472\n",
+ "Discriminator Loss: tf.Tensor(0.87558407, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(3.5068448, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 13473\n",
+ "Discriminator Loss: tf.Tensor(0.3009112, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.1603259, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 13474\n",
+ "Discriminator Loss: tf.Tensor(1.7014394, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.6784959, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 13475\n",
+ "Discriminator Loss: tf.Tensor(0.5723015, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.6977435, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 13476\n",
+ "Discriminator Loss: tf.Tensor(0.95393455, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.23689036, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 13477\n",
+ "Discriminator Loss: tf.Tensor(0.28976083, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.6673355, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 13478\n",
+ "Discriminator Loss: tf.Tensor(0.18104142, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.0726202, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 13479\n",
+ "Discriminator Loss: tf.Tensor(0.3980486, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.8695789, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 13480\n",
+ "Discriminator Loss: tf.Tensor(2.2718556, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(4.2710853, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 13481\n",
+ "Discriminator Loss: tf.Tensor(1.1829934, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.32508716, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 13482\n",
+ "Discriminator Loss: tf.Tensor(0.42424244, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.9885832, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 13483\n",
+ "Discriminator Loss: tf.Tensor(0.8020232, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.47030982, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 13484\n",
+ "Discriminator Loss: tf.Tensor(0.44625318, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.3671284, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 13485\n",
+ "Discriminator Loss: tf.Tensor(0.40288273, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.6962946, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 13486\n",
+ "Discriminator Loss: tf.Tensor(1.5400989, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(3.5829132, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 13487\n",
+ "Discriminator Loss: tf.Tensor(0.23930863, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.40176, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 13488\n",
+ "Discriminator Loss: tf.Tensor(0.3777505, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.6459496, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 13489\n",
+ "Discriminator Loss: tf.Tensor(0.42977047, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(3.1799333, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 13490\n",
+ "Discriminator Loss: tf.Tensor(0.1263848, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.4110066, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 13491\n",
+ "Discriminator Loss: tf.Tensor(1.0919076, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.055195928, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 13492\n",
+ "Discriminator Loss: tf.Tensor(1.1565826, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.9292157, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 13493\n",
+ "Discriminator Loss: tf.Tensor(0.43875247, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.7297085, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 13494\n",
+ "Discriminator Loss: tf.Tensor(0.9352709, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.7152903, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 13495\n",
+ "Discriminator Loss: tf.Tensor(0.8013449, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.42825565, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 13496\n",
+ "Discriminator Loss: tf.Tensor(1.2029523, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.423933, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 13497\n",
+ "Discriminator Loss: tf.Tensor(0.9094904, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.10551398, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 13498\n",
+ "Discriminator Loss: tf.Tensor(0.9750225, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.4659498, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 13499\n",
+ "Discriminator Loss: tf.Tensor(0.59564584, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.57093626, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 13500\n",
+ "Discriminator Loss: tf.Tensor(0.68545353, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.604461, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 13501\n",
+ "Discriminator Loss: tf.Tensor(0.34220377, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.68963224, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 13502\n",
+ "Discriminator Loss: tf.Tensor(1.3104036, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(3.1246793, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 13503\n",
+ "Discriminator Loss: tf.Tensor(0.11790949, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.0953878, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 13504\n",
+ "Discriminator Loss: tf.Tensor(0.33171353, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.7666192, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 13505\n",
+ "Discriminator Loss: tf.Tensor(1.9615103, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(3.451131, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 13506\n",
+ "Discriminator Loss: tf.Tensor(0.84711087, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.190895, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 13507\n",
+ "Discriminator Loss: tf.Tensor(1.2976565, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.6921031, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 13508\n",
+ "Discriminator Loss: tf.Tensor(0.24867736, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.0659884, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 13509\n",
+ "Discriminator Loss: tf.Tensor(1.2212273, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.057065774, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 13510\n",
+ "Discriminator Loss: tf.Tensor(0.5797776, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.0478587, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 13511\n",
+ "Discriminator Loss: tf.Tensor(0.21800762, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.201794, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 13512\n",
+ "Discriminator Loss: tf.Tensor(0.7614627, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.42435443, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 13513\n",
+ "Discriminator Loss: tf.Tensor(0.6738939, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.0313504, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 13514\n",
+ "Discriminator Loss: tf.Tensor(0.7759611, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.39247236, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 13515\n",
+ "Discriminator Loss: tf.Tensor(1.2712233, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.5687428, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 13516\n",
+ "Discriminator Loss: tf.Tensor(1.0022928, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.060749263, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 13517\n",
+ "Discriminator Loss: tf.Tensor(0.37220624, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.9461387, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 13518\n",
+ "Discriminator Loss: tf.Tensor(0.34083164, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.9358139, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 13519\n",
+ "Discriminator Loss: tf.Tensor(1.1127139, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.9332416, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 13520\n",
+ "Discriminator Loss: tf.Tensor(0.3456459, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.9029217, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 13521\n",
+ "Discriminator Loss: tf.Tensor(0.4844305, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.678805, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 13522\n",
+ "Discriminator Loss: tf.Tensor(0.11938363, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.5060111, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 13523\n",
+ "Discriminator Loss: tf.Tensor(1.5298359, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.33859077, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 13524\n",
+ "Discriminator Loss: tf.Tensor(1.3338493, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.9604864, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 13525\n",
+ "Discriminator Loss: tf.Tensor(1.8077478, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.64418286, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 13526\n",
+ "Discriminator Loss: tf.Tensor(0.9736135, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.197527, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 13527\n",
+ "Discriminator Loss: tf.Tensor(1.1430002, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.0067848614, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 13528\n",
+ "Discriminator Loss: tf.Tensor(0.6616049, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.8714709, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 13529\n",
+ "Discriminator Loss: tf.Tensor(0.4390563, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.5903047, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 13530\n",
+ "Discriminator Loss: tf.Tensor(0.61241627, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(3.0436146, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 13531\n",
+ "Discriminator Loss: tf.Tensor(0.19566241, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.0751241, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 13532\n",
+ "Discriminator Loss: tf.Tensor(0.43100256, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.6067034, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 13533\n",
+ "Discriminator Loss: tf.Tensor(1.0346274, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(3.4060032, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 13534\n",
+ "Discriminator Loss: tf.Tensor(0.15971886, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.8772842, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 13535\n",
+ "Discriminator Loss: tf.Tensor(1.4074041, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(3.456763, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 13536\n",
+ "Discriminator Loss: tf.Tensor(0.2367613, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.2531769, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 13537\n",
+ "Discriminator Loss: tf.Tensor(1.0263846, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.1797406, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 13538\n",
+ "Discriminator Loss: tf.Tensor(1.199384, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.7224941, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 13539\n",
+ "Discriminator Loss: tf.Tensor(0.5412282, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.2255888, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 13540\n",
+ "Discriminator Loss: tf.Tensor(0.6956877, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.4796985, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 13541\n",
+ "Discriminator Loss: tf.Tensor(0.9410789, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.6543531, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 13542\n",
+ "Discriminator Loss: tf.Tensor(0.071485974, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.0186008, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 13543\n",
+ "Discriminator Loss: tf.Tensor(0.2904296, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.5883077, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 13544\n",
+ "Discriminator Loss: tf.Tensor(1.0138336, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.25661218, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 13545\n",
+ "Discriminator Loss: tf.Tensor(1.4283495, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.8306463, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 13546\n",
+ "Discriminator Loss: tf.Tensor(1.1905606, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.44395947, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 13547\n",
+ "Discriminator Loss: tf.Tensor(0.66058874, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.247574, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 13548\n",
+ "Discriminator Loss: tf.Tensor(0.58718896, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.6260995, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 13549\n",
+ "Discriminator Loss: tf.Tensor(0.6787679, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.7727988, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 13550\n",
+ "Discriminator Loss: tf.Tensor(0.27943003, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.167569, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 13551\n",
+ "Discriminator Loss: tf.Tensor(1.4458717, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.23045294, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 13552\n",
+ "Discriminator Loss: tf.Tensor(0.6766441, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.093867, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 13553\n",
+ "Discriminator Loss: tf.Tensor(0.50349355, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.0889874, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 13554\n",
+ "Discriminator Loss: tf.Tensor(0.81801844, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.248896, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 13555\n",
+ "Discriminator Loss: tf.Tensor(0.28557402, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.2596967, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 13556\n",
+ "Discriminator Loss: tf.Tensor(0.093880035, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.4934396, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 13557\n",
+ "Discriminator Loss: tf.Tensor(46.74114, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.0912169, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 13558\n",
+ "Discriminator Loss: tf.Tensor(18.532963, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.11083115, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 13559\n",
+ "Discriminator Loss: tf.Tensor(7.7531233, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.022817126, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 13560\n",
+ "Discriminator Loss: tf.Tensor(6.55208, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.18863164, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 13561\n",
+ "Discriminator Loss: tf.Tensor(3.6763873, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.070347376, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 13562\n",
+ "Discriminator Loss: tf.Tensor(3.6834054, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.16363858, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 13563\n",
+ "Discriminator Loss: tf.Tensor(3.113113, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.16108795, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 13564\n",
+ "Discriminator Loss: tf.Tensor(3.1806257, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.19113113, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 13565\n",
+ "Discriminator Loss: tf.Tensor(2.724074, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.18422239, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 13566\n",
+ "Discriminator Loss: tf.Tensor(2.673409, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.22766714, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 13567\n",
+ "Discriminator Loss: tf.Tensor(2.4237924, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.26299787, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 13568\n",
+ "Discriminator Loss: tf.Tensor(2.414529, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.29032186, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 13569\n",
+ "Discriminator Loss: tf.Tensor(2.3516698, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.30937502, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 13570\n",
+ "Discriminator Loss: tf.Tensor(2.2073047, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.3510917, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 13571\n",
+ "Discriminator Loss: tf.Tensor(2.1360292, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.36361006, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 13572\n",
+ "Discriminator Loss: tf.Tensor(2.1405394, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.34172443, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 13573\n",
+ "Discriminator Loss: tf.Tensor(2.0956001, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.34889498, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 13574\n",
+ "Discriminator Loss: tf.Tensor(2.0522518, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.35921898, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 13575\n",
+ "Discriminator Loss: tf.Tensor(2.0483031, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.32798874, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 13576\n",
+ "Discriminator Loss: tf.Tensor(1.9911664, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.31678292, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 13577\n",
+ "Discriminator Loss: tf.Tensor(1.9757988, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.3346776, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 13578\n",
+ "Discriminator Loss: tf.Tensor(1.9381381, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.33563426, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 13579\n",
+ "Discriminator Loss: tf.Tensor(2.019056, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.26138946, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 13580\n",
+ "Discriminator Loss: tf.Tensor(1.9115828, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.32508072, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 13581\n",
+ "Discriminator Loss: tf.Tensor(1.9147846, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.36504588, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 13582\n",
+ "Discriminator Loss: tf.Tensor(1.83253, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.45666823, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 13583\n",
+ "Discriminator Loss: tf.Tensor(1.822433, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.44444585, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 13584\n",
+ "Discriminator Loss: tf.Tensor(1.7262242, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.5289319, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 13585\n",
+ "Discriminator Loss: tf.Tensor(1.6645217, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.6329887, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 13586\n",
+ "Discriminator Loss: tf.Tensor(1.9992261, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.70530987, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 13587\n",
+ "Discriminator Loss: tf.Tensor(1.8584694, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.3917179, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 13588\n",
+ "Discriminator Loss: tf.Tensor(1.7058372, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.3814446, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 13589\n",
+ "Discriminator Loss: tf.Tensor(1.714042, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.49165785, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 13590\n",
+ "Discriminator Loss: tf.Tensor(1.7730939, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.3022571, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 13591\n",
+ "Discriminator Loss: tf.Tensor(1.6469404, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.68387336, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 13592\n",
+ "Discriminator Loss: tf.Tensor(1.7143414, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.51992846, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 13593\n",
+ "Discriminator Loss: tf.Tensor(1.471734, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.5887906, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 13594\n",
+ "Discriminator Loss: tf.Tensor(1.5174227, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.41805068, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 13595\n",
+ "Discriminator Loss: tf.Tensor(3.009782, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.6500912, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 13596\n",
+ "Discriminator Loss: tf.Tensor(2.0345805, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.8286979, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 13597\n",
+ "Discriminator Loss: tf.Tensor(1.867881, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.5156158, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 13598\n",
+ "Discriminator Loss: tf.Tensor(1.8199582, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.41219127, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 13599\n",
+ "Discriminator Loss: tf.Tensor(1.7171893, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.27132362, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 13600\n",
+ "Discriminator Loss: tf.Tensor(1.6261718, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.1895719, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 13601\n",
+ "Discriminator Loss: tf.Tensor(1.6549374, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.08259519, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 13602\n",
+ "Discriminator Loss: tf.Tensor(1.5957484, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.038642447, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 13603\n",
+ "Discriminator Loss: tf.Tensor(1.466122, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.13787986, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 13604\n",
+ "Discriminator Loss: tf.Tensor(1.1490613, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.28528237, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 13605\n",
+ "Discriminator Loss: tf.Tensor(1.4770187, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.02334775, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 13606\n",
+ "Discriminator Loss: tf.Tensor(1.2341025, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.6952481, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 13607\n",
+ "Discriminator Loss: tf.Tensor(0.86460114, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.68859506, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 13608\n",
+ "Discriminator Loss: tf.Tensor(1.5017977, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.7384305, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 13609\n",
+ "Discriminator Loss: tf.Tensor(2.1165671, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.9906559, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 13610\n",
+ "Discriminator Loss: tf.Tensor(1.4348133, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.71556634, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 13611\n",
+ "Discriminator Loss: tf.Tensor(1.2626697, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.6787853, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 13612\n",
+ "Discriminator Loss: tf.Tensor(0.71251196, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.0045303, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 13613\n",
+ "Discriminator Loss: tf.Tensor(0.81416535, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.39296332, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 13614\n",
+ "Discriminator Loss: tf.Tensor(1.0429912, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.5712261, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 13615\n",
+ "Discriminator Loss: tf.Tensor(1.9623381, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.7411302, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 13616\n",
+ "Discriminator Loss: tf.Tensor(1.0026578, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.58629274, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 13617\n",
+ "Discriminator Loss: tf.Tensor(0.83155024, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.2005707, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 13618\n",
+ "Discriminator Loss: tf.Tensor(1.5121312, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.47076783, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 13619\n",
+ "Discriminator Loss: tf.Tensor(0.648659, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.97221446, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 13620\n",
+ "Discriminator Loss: tf.Tensor(0.79913247, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.6936038, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 13621\n",
+ "Discriminator Loss: tf.Tensor(0.9334462, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.8315411, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 13622\n",
+ "Discriminator Loss: tf.Tensor(0.8746174, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.25095776, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 13623\n",
+ "Discriminator Loss: tf.Tensor(0.72808987, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.9353985, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 13624\n",
+ "Discriminator Loss: tf.Tensor(0.79160476, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.41189936, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 13625\n",
+ "Discriminator Loss: tf.Tensor(0.82117426, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.5957546, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 13626\n",
+ "Discriminator Loss: tf.Tensor(1.7749329, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.70030636, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 13627\n",
+ "Discriminator Loss: tf.Tensor(0.78496504, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.3132434, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 13628\n",
+ "Discriminator Loss: tf.Tensor(1.2936271, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.22573896, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 13629\n",
+ "Discriminator Loss: tf.Tensor(0.38877314, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.4280858, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 13630\n",
+ "Discriminator Loss: tf.Tensor(0.8674898, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.14097561, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 13631\n",
+ "Discriminator Loss: tf.Tensor(0.28680342, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.0815227, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 13632\n",
+ "Discriminator Loss: tf.Tensor(0.37611312, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.80147904, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 13633\n",
+ "Discriminator Loss: tf.Tensor(0.8690301, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(3.0933921, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 13634\n",
+ "Discriminator Loss: tf.Tensor(1.212326, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.16511208, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 13635\n",
+ "Discriminator Loss: tf.Tensor(0.70604295, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.9713541, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 13636\n",
+ "Discriminator Loss: tf.Tensor(0.914411, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.15187517, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 13637\n",
+ "Discriminator Loss: tf.Tensor(1.3674967, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.338065, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 13638\n",
+ "Discriminator Loss: tf.Tensor(1.13964, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.048198655, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 13639\n",
+ "Discriminator Loss: tf.Tensor(0.3269345, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.0093813, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 13640\n",
+ "Discriminator Loss: tf.Tensor(0.20548171, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.0446657, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 13641\n",
+ "Discriminator Loss: tf.Tensor(1.5859432, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.5553885, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 13642\n",
+ "Discriminator Loss: tf.Tensor(0.6337579, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.7655052, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 13643\n",
+ "Discriminator Loss: tf.Tensor(0.22842054, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.8302612, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 13644\n",
+ "Discriminator Loss: tf.Tensor(0.87661076, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.2268202, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 13645\n",
+ "Discriminator Loss: tf.Tensor(0.5208335, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.7125735, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 13646\n",
+ "Discriminator Loss: tf.Tensor(1.087847, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.4118643, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 13647\n",
+ "Discriminator Loss: tf.Tensor(0.5917513, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.59454477, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 13648\n",
+ "Discriminator Loss: tf.Tensor(0.7298937, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.2540185, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 13649\n",
+ "Discriminator Loss: tf.Tensor(0.8332575, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.22963877, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 13650\n",
+ "Discriminator Loss: tf.Tensor(1.0119395, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.6703498, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 13651\n",
+ "Discriminator Loss: tf.Tensor(0.5128447, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.547054, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 13652\n",
+ "Discriminator Loss: tf.Tensor(0.6766622, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.8681688, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 13653\n",
+ "Discriminator Loss: tf.Tensor(0.30845287, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.90384156, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 13654\n",
+ "Discriminator Loss: tf.Tensor(0.9303348, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(3.2214935, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 13655\n",
+ "Discriminator Loss: tf.Tensor(0.50460786, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.3480228, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 13656\n",
+ "Discriminator Loss: tf.Tensor(1.7930264, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.77630633, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 13657\n",
+ "Discriminator Loss: tf.Tensor(0.4512778, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.9784209, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 13658\n",
+ "Discriminator Loss: tf.Tensor(0.71737254, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.5212384, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 13659\n",
+ "Discriminator Loss: tf.Tensor(0.4612956, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.2388475, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 13660\n",
+ "Discriminator Loss: tf.Tensor(1.1826472, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.0017825229, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 13661\n",
+ "Discriminator Loss: tf.Tensor(0.99218804, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.8929253, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 13662\n",
+ "Discriminator Loss: tf.Tensor(0.122619756, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.1566921, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 13663\n",
+ "Discriminator Loss: tf.Tensor(0.7154233, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.30747792, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 13664\n",
+ "Discriminator Loss: tf.Tensor(0.78850204, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(3.2841175, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 13665\n",
+ "Discriminator Loss: tf.Tensor(0.2484014, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.2220796, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 13666\n",
+ "Discriminator Loss: tf.Tensor(1.1826069, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.13334537, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 13667\n",
+ "Discriminator Loss: tf.Tensor(0.3020763, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.021287, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 13668\n",
+ "Discriminator Loss: tf.Tensor(0.5513774, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.8377318, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 13669\n",
+ "Discriminator Loss: tf.Tensor(0.91937625, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.3624446, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 13670\n",
+ "Discriminator Loss: tf.Tensor(1.3291488, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.01835791, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 13671\n",
+ "Discriminator Loss: tf.Tensor(0.71297765, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.8721031, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 13672\n",
+ "Discriminator Loss: tf.Tensor(1.4525741, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.2923682, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 13673\n",
+ "Discriminator Loss: tf.Tensor(0.8874326, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.556055, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 13674\n",
+ "Discriminator Loss: tf.Tensor(1.4035425, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.34429598, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 13675\n",
+ "Discriminator Loss: tf.Tensor(0.71878636, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.8044964, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 13676\n",
+ "Discriminator Loss: tf.Tensor(0.6121871, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.5903253, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 13677\n",
+ "Discriminator Loss: tf.Tensor(0.7243198, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.0496814, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 13678\n",
+ "Discriminator Loss: tf.Tensor(1.6916031, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.6286435, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 13679\n",
+ "Discriminator Loss: tf.Tensor(0.73154104, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.694503, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 13680\n",
+ "Discriminator Loss: tf.Tensor(0.8431234, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.32337695, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 13681\n",
+ "Discriminator Loss: tf.Tensor(0.9678672, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.1206748, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 13682\n",
+ "Discriminator Loss: tf.Tensor(1.3715196, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.11813893, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 13683\n",
+ "Discriminator Loss: tf.Tensor(0.44838405, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.9907497, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 13684\n",
+ "Discriminator Loss: tf.Tensor(0.23445608, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.80088043, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 13685\n",
+ "Discriminator Loss: tf.Tensor(1.3967075, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(3.7313404, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 13686\n",
+ "Discriminator Loss: tf.Tensor(1.0019368, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.6570026, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 13687\n",
+ "Discriminator Loss: tf.Tensor(0.68349075, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.9264327, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 13688\n",
+ "Discriminator Loss: tf.Tensor(1.9171363, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.8956952, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 13689\n",
+ "Discriminator Loss: tf.Tensor(0.87159556, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.149089, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 13690\n",
+ "Discriminator Loss: tf.Tensor(1.1496625, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.07553064, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 13691\n",
+ "Discriminator Loss: tf.Tensor(0.5896495, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.2088223, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 13692\n",
+ "Discriminator Loss: tf.Tensor(0.6165337, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.3979222, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 13693\n",
+ "Discriminator Loss: tf.Tensor(1.0198257, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(3.0194056, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 13694\n",
+ "Discriminator Loss: tf.Tensor(0.08152571, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.1119877, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 13695\n",
+ "Discriminator Loss: tf.Tensor(0.48430184, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.62111086, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 13696\n",
+ "Discriminator Loss: tf.Tensor(1.0778272, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.9673097, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 13697\n",
+ "Discriminator Loss: tf.Tensor(0.6002069, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.7635228, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 13698\n",
+ "Discriminator Loss: tf.Tensor(0.5232481, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.4518518, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 13699\n",
+ "Discriminator Loss: tf.Tensor(1.0359061, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.48660555, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 13700\n",
+ "Discriminator Loss: tf.Tensor(0.6564654, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.5642283, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 13701\n",
+ "Discriminator Loss: tf.Tensor(0.46829617, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.76710486, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 13702\n",
+ "Discriminator Loss: tf.Tensor(1.7254219, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(3.1635144, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 13703\n",
+ "Discriminator Loss: tf.Tensor(0.7428653, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.47074708, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 13704\n",
+ "Discriminator Loss: tf.Tensor(0.7543197, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.3217332, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 13705\n",
+ "Discriminator Loss: tf.Tensor(0.67303514, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.54431146, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 13706\n",
+ "Discriminator Loss: tf.Tensor(0.8770851, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(3.0722783, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 13707\n",
+ "Discriminator Loss: tf.Tensor(0.47438702, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.76030034, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 13708\n",
+ "Discriminator Loss: tf.Tensor(0.8489262, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(3.1871405, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 13709\n",
+ "Discriminator Loss: tf.Tensor(0.27766383, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.7131909, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 13710\n",
+ "Discriminator Loss: tf.Tensor(0.20121224, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.95171815, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 13711\n",
+ "Discriminator Loss: tf.Tensor(1.0130926, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(3.3394892, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 13712\n",
+ "Discriminator Loss: tf.Tensor(0.65523213, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.4030539, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 13713\n",
+ "Discriminator Loss: tf.Tensor(1.6202548, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.5632272, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 13714\n",
+ "Discriminator Loss: tf.Tensor(0.82556736, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.9239982, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 13715\n",
+ "Discriminator Loss: tf.Tensor(0.5372133, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.7683866, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 13716\n",
+ "Discriminator Loss: tf.Tensor(0.33375204, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.535976, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 13717\n",
+ "Discriminator Loss: tf.Tensor(0.5090447, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.6793569, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 13718\n",
+ "Discriminator Loss: tf.Tensor(0.6658051, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.3841634, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 13719\n",
+ "Discriminator Loss: tf.Tensor(0.4684866, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.4983826, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 13720\n",
+ "Discriminator Loss: tf.Tensor(0.31110182, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.4834079, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 13721\n",
+ "Discriminator Loss: tf.Tensor(0.5143189, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.5958258, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 13722\n",
+ "Discriminator Loss: tf.Tensor(0.48268604, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.771474, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 13723\n",
+ "Discriminator Loss: tf.Tensor(0.5421517, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.2989773, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 13724\n",
+ "Discriminator Loss: tf.Tensor(1.6465657, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.54494756, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 13725\n",
+ "Discriminator Loss: tf.Tensor(0.7043722, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.9807305, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 13726\n",
+ "Discriminator Loss: tf.Tensor(0.49569336, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.8499711, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 13727\n",
+ "Discriminator Loss: tf.Tensor(0.47907603, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.5952184, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 13728\n",
+ "Discriminator Loss: tf.Tensor(0.43843982, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.1013447, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 13729\n",
+ "Discriminator Loss: tf.Tensor(1.5681674, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.37582877, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 13730\n",
+ "Discriminator Loss: tf.Tensor(0.8898923, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.213105, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 13731\n",
+ "Discriminator Loss: tf.Tensor(1.1780578, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.15666527, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 13732\n",
+ "Discriminator Loss: tf.Tensor(0.98636997, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.9469792, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 13733\n",
+ "Discriminator Loss: tf.Tensor(0.6149862, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.46885172, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 13734\n",
+ "Discriminator Loss: tf.Tensor(0.76444286, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.7341413, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 13735\n",
+ "Discriminator Loss: tf.Tensor(0.02225065, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.290397, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 13736\n",
+ "Discriminator Loss: tf.Tensor(33.73476, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.8415963, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 13737\n",
+ "Discriminator Loss: tf.Tensor(38.208862, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.43952549, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 13738\n",
+ "Discriminator Loss: tf.Tensor(14.37015, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.044020902, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 13739\n",
+ "Discriminator Loss: tf.Tensor(6.242733, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.19028421, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 13740\n",
+ "Discriminator Loss: tf.Tensor(3.931148, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.06617144, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 13741\n",
+ "Discriminator Loss: tf.Tensor(3.6232653, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.10684822, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 13742\n",
+ "Discriminator Loss: tf.Tensor(3.061051, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.09628803, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 13743\n",
+ "Discriminator Loss: tf.Tensor(3.1259637, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.08671168, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 13744\n",
+ "Discriminator Loss: tf.Tensor(2.8382552, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.12189186, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 13745\n",
+ "Discriminator Loss: tf.Tensor(2.6900873, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.13607518, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 13746\n",
+ "Discriminator Loss: tf.Tensor(2.6445193, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.1583257, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 13747\n",
+ "Discriminator Loss: tf.Tensor(2.553386, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.16926606, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 13748\n",
+ "Discriminator Loss: tf.Tensor(2.4420257, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.17699827, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 13749\n",
+ "Discriminator Loss: tf.Tensor(2.3265963, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.19887824, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 13750\n",
+ "Discriminator Loss: tf.Tensor(2.2318804, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.16661595, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 13751\n",
+ "Discriminator Loss: tf.Tensor(2.242509, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.22518446, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 13752\n",
+ "Discriminator Loss: tf.Tensor(2.147026, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.21714337, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 13753\n",
+ "Discriminator Loss: tf.Tensor(2.1437268, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.1996667, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 13754\n",
+ "Discriminator Loss: tf.Tensor(2.0731063, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.21145989, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 13755\n",
+ "Discriminator Loss: tf.Tensor(2.034349, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.18973081, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 13756\n",
+ "Discriminator Loss: tf.Tensor(1.9871988, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.19091459, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 13757\n",
+ "Discriminator Loss: tf.Tensor(2.0198264, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.19952653, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 13758\n",
+ "Discriminator Loss: tf.Tensor(1.974374, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.19426484, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 13759\n",
+ "Discriminator Loss: tf.Tensor(1.9792964, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.26410004, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 13760\n",
+ "Discriminator Loss: tf.Tensor(2.0642195, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.24154562, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 13761\n",
+ "Discriminator Loss: tf.Tensor(1.9219577, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.26727068, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 13762\n",
+ "Discriminator Loss: tf.Tensor(1.8266757, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.3138233, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 13763\n",
+ "Discriminator Loss: tf.Tensor(1.8862683, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.33223367, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 13764\n",
+ "Discriminator Loss: tf.Tensor(1.8726425, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.37690923, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 13765\n",
+ "Discriminator Loss: tf.Tensor(1.7999173, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.30774376, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 13766\n",
+ "Discriminator Loss: tf.Tensor(1.7557838, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.34485972, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 13767\n",
+ "Discriminator Loss: tf.Tensor(1.756372, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.20462143, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 13768\n",
+ "Discriminator Loss: tf.Tensor(1.7464406, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.30786583, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 13769\n",
+ "Discriminator Loss: tf.Tensor(1.9443319, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.14583316, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 13770\n",
+ "Discriminator Loss: tf.Tensor(1.7603824, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.32493624, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 13771\n",
+ "Discriminator Loss: tf.Tensor(1.8283877, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.38824463, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 13772\n",
+ "Discriminator Loss: tf.Tensor(1.6840909, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.6519597, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 13773\n",
+ "Discriminator Loss: tf.Tensor(1.4212794, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.0047116, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 13774\n",
+ "Discriminator Loss: tf.Tensor(2.0005963, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.7072486, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 13775\n",
+ "Discriminator Loss: tf.Tensor(1.925958, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.036785003, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 13776\n",
+ "Discriminator Loss: tf.Tensor(1.6983304, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.16035424, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 13777\n",
+ "Discriminator Loss: tf.Tensor(1.5750309, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.3052783, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 13778\n",
+ "Discriminator Loss: tf.Tensor(1.5300437, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.32240227, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 13779\n",
+ "Discriminator Loss: tf.Tensor(1.6105349, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.37103805, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 13780\n",
+ "Discriminator Loss: tf.Tensor(1.4209251, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.4088389, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 13781\n",
+ "Discriminator Loss: tf.Tensor(1.4408169, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.52633953, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 13782\n",
+ "Discriminator Loss: tf.Tensor(1.331018, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.45963398, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 13783\n",
+ "Discriminator Loss: tf.Tensor(1.407631, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.0673666, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 13784\n",
+ "Discriminator Loss: tf.Tensor(1.8468323, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.49278283, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 13785\n",
+ "Discriminator Loss: tf.Tensor(1.6471806, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.02477394, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 13786\n",
+ "Discriminator Loss: tf.Tensor(1.2039266, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.20134188, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 13787\n",
+ "Discriminator Loss: tf.Tensor(1.1853871, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.18805097, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 13788\n",
+ "Discriminator Loss: tf.Tensor(1.0760577, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.82347566, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 13789\n",
+ "Discriminator Loss: tf.Tensor(0.85585207, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.8298023, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 13790\n",
+ "Discriminator Loss: tf.Tensor(0.9382332, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.1209706, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 13791\n",
+ "Discriminator Loss: tf.Tensor(2.6377907, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-1.5739294, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 13792\n",
+ "Discriminator Loss: tf.Tensor(1.2701589, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.55922306, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 13793\n",
+ "Discriminator Loss: tf.Tensor(0.61974597, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.7678718, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 13794\n",
+ "Discriminator Loss: tf.Tensor(1.0514379, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.372612, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 13795\n",
+ "Discriminator Loss: tf.Tensor(1.9304359, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.9138996, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 13796\n",
+ "Discriminator Loss: tf.Tensor(1.121715, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.506135, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 13797\n",
+ "Discriminator Loss: tf.Tensor(0.525188, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.85311604, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 13798\n",
+ "Discriminator Loss: tf.Tensor(1.2671683, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.5963159, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 13799\n",
+ "Discriminator Loss: tf.Tensor(1.2008615, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.087406375, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 13800\n",
+ "Discriminator Loss: tf.Tensor(0.52723897, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.0857134, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 13801\n",
+ "Discriminator Loss: tf.Tensor(0.97652495, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.47719193, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 13802\n",
+ "Discriminator Loss: tf.Tensor(0.3923788, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.3109607, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 13803\n",
+ "Discriminator Loss: tf.Tensor(1.1623377, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.11920846, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 13804\n",
+ "Discriminator Loss: tf.Tensor(0.42380586, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.4482495, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 13805\n",
+ "Discriminator Loss: tf.Tensor(0.77644914, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.30935955, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 13806\n",
+ "Discriminator Loss: tf.Tensor(0.6039015, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.7632641, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 13807\n",
+ "Discriminator Loss: tf.Tensor(1.6270477, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.52324444, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 13808\n",
+ "Discriminator Loss: tf.Tensor(0.44020447, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.3563524, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 13809\n",
+ "Discriminator Loss: tf.Tensor(0.97401214, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.21466428, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 13810\n",
+ "Discriminator Loss: tf.Tensor(0.5019753, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.9210421, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 13811\n",
+ "Discriminator Loss: tf.Tensor(0.93350214, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.6696744, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 13812\n",
+ "Discriminator Loss: tf.Tensor(0.19513772, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.8477039, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 13813\n",
+ "Discriminator Loss: tf.Tensor(0.8386139, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.3957576, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 13814\n",
+ "Discriminator Loss: tf.Tensor(0.73444915, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.4524844, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 13815\n",
+ "Discriminator Loss: tf.Tensor(0.26171625, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.79513764, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 13816\n",
+ "Discriminator Loss: tf.Tensor(0.81835604, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.868557, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 13817\n",
+ "Discriminator Loss: tf.Tensor(0.9222262, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.33115986, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 13818\n",
+ "Discriminator Loss: tf.Tensor(0.66193336, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.3122652, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 13819\n",
+ "Discriminator Loss: tf.Tensor(0.21552454, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.1829907, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 13820\n",
+ "Discriminator Loss: tf.Tensor(0.490112, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.5566804, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 13821\n",
+ "Discriminator Loss: tf.Tensor(0.7450965, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.425121, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 13822\n",
+ "Discriminator Loss: tf.Tensor(0.6988121, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.44377995, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 13823\n",
+ "Discriminator Loss: tf.Tensor(0.69472814, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.5514114, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 13824\n",
+ "Discriminator Loss: tf.Tensor(0.76269114, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.26311818, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 13825\n",
+ "Discriminator Loss: tf.Tensor(1.1498607, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.5883543, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 13826\n",
+ "Discriminator Loss: tf.Tensor(1.4076452, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.30534706, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 13827\n",
+ "Discriminator Loss: tf.Tensor(0.8690234, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.907415, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 13828\n",
+ "Discriminator Loss: tf.Tensor(0.807668, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.20693795, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 13829\n",
+ "Discriminator Loss: tf.Tensor(0.78030103, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.6058867, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 13830\n",
+ "Discriminator Loss: tf.Tensor(0.1069021, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.92605704, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 13831\n",
+ "Discriminator Loss: tf.Tensor(1.2816687, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.9509099, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 13832\n",
+ "Discriminator Loss: tf.Tensor(1.0626045, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.024545014, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 13833\n",
+ "Discriminator Loss: tf.Tensor(0.519591, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.496996, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 13834\n",
+ "Discriminator Loss: tf.Tensor(0.53086114, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.1886319, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 13835\n",
+ "Discriminator Loss: tf.Tensor(1.3556184, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.2642068, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 13836\n",
+ "Discriminator Loss: tf.Tensor(0.6423499, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.8649813, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 13837\n",
+ "Discriminator Loss: tf.Tensor(0.84153175, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.3180649, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 13838\n",
+ "Discriminator Loss: tf.Tensor(0.34234884, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.5067928, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 13839\n",
+ "Discriminator Loss: tf.Tensor(0.6553487, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.0910641, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 13840\n",
+ "Discriminator Loss: tf.Tensor(1.9303328, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.80875444, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 13841\n",
+ "Discriminator Loss: tf.Tensor(0.6036754, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.5384626, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 13842\n",
+ "Discriminator Loss: tf.Tensor(0.8100744, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.3382912, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 13843\n",
+ "Discriminator Loss: tf.Tensor(0.6279267, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.2597017, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 13844\n",
+ "Discriminator Loss: tf.Tensor(0.5515439, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.81153417, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 13845\n",
+ "Discriminator Loss: tf.Tensor(0.92975605, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.54362, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 13846\n",
+ "Discriminator Loss: tf.Tensor(0.30383304, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.82498235, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 13847\n",
+ "Discriminator Loss: tf.Tensor(0.99575734, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.5560167, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 13848\n",
+ "Discriminator Loss: tf.Tensor(1.2116511, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.023356395, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 13849\n",
+ "Discriminator Loss: tf.Tensor(0.1557217, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.2280416, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 13850\n",
+ "Discriminator Loss: tf.Tensor(0.20673463, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.4147481, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 13851\n",
+ "Discriminator Loss: tf.Tensor(0.43086237, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.7162511, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 13852\n",
+ "Discriminator Loss: tf.Tensor(0.7726229, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(3.1987915, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 13853\n",
+ "Discriminator Loss: tf.Tensor(0.23995996, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.4923668, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 13854\n",
+ "Discriminator Loss: tf.Tensor(1.2057688, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.009574625, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 13855\n",
+ "Discriminator Loss: tf.Tensor(0.98343873, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.593773, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 13856\n",
+ "Discriminator Loss: tf.Tensor(0.35083145, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.0426843, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 13857\n",
+ "Discriminator Loss: tf.Tensor(0.20748192, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.2395252, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 13858\n",
+ "Discriminator Loss: tf.Tensor(0.78693324, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.26505926, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 13859\n",
+ "Discriminator Loss: tf.Tensor(1.623236, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(3.4977734, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 13860\n",
+ "Discriminator Loss: tf.Tensor(1.3438741, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.12553518, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 13861\n",
+ "Discriminator Loss: tf.Tensor(0.6310599, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.0383809, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 13862\n",
+ "Discriminator Loss: tf.Tensor(0.62857974, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.71050406, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 13863\n",
+ "Discriminator Loss: tf.Tensor(0.91967505, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.5380218, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 13864\n",
+ "Discriminator Loss: tf.Tensor(1.129097, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.0118340105, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 13865\n",
+ "Discriminator Loss: tf.Tensor(0.75302213, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.4759073, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 13866\n",
+ "Discriminator Loss: tf.Tensor(0.26047257, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.2489411, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 13867\n",
+ "Discriminator Loss: tf.Tensor(0.787254, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.38061097, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 13868\n",
+ "Discriminator Loss: tf.Tensor(0.73310566, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.2445993, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 13869\n",
+ "Discriminator Loss: tf.Tensor(0.73637426, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.5342795, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 13870\n",
+ "Discriminator Loss: tf.Tensor(0.7068323, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.6351774, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 13871\n",
+ "Discriminator Loss: tf.Tensor(0.84934306, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.6377736, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 13872\n",
+ "Discriminator Loss: tf.Tensor(0.9682069, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.3243933, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 13873\n",
+ "Discriminator Loss: tf.Tensor(0.82975245, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.27030963, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 13874\n",
+ "Discriminator Loss: tf.Tensor(1.0569129, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.5608673, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 13875\n",
+ "Discriminator Loss: tf.Tensor(0.20715818, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.2030649, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 13876\n",
+ "Discriminator Loss: tf.Tensor(0.45756948, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.70742434, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 13877\n",
+ "Discriminator Loss: tf.Tensor(0.870674, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.649095, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 13878\n",
+ "Discriminator Loss: tf.Tensor(0.17029181, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.96529704, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 13879\n",
+ "Discriminator Loss: tf.Tensor(0.48542732, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.3099692, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 13880\n",
+ "Discriminator Loss: tf.Tensor(0.6393894, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.45748356, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 13881\n",
+ "Discriminator Loss: tf.Tensor(0.9203228, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.628619, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 13882\n",
+ "Discriminator Loss: tf.Tensor(0.5478497, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.47985712, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 13883\n",
+ "Discriminator Loss: tf.Tensor(0.88662505, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.7432747, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 13884\n",
+ "Discriminator Loss: tf.Tensor(0.47406816, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.6515782, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 13885\n",
+ "Discriminator Loss: tf.Tensor(0.7100693, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.5514324, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 13886\n",
+ "Discriminator Loss: tf.Tensor(0.23142037, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.02565, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 13887\n",
+ "Discriminator Loss: tf.Tensor(0.5215755, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.51074785, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 13888\n",
+ "Discriminator Loss: tf.Tensor(0.68694496, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(3.2804976, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 13889\n",
+ "Discriminator Loss: tf.Tensor(0.39172465, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.90051913, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 13890\n",
+ "Discriminator Loss: tf.Tensor(0.61906374, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.8118942, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 13891\n",
+ "Discriminator Loss: tf.Tensor(0.6934283, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.5823041, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 13892\n",
+ "Discriminator Loss: tf.Tensor(1.6651068, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(3.2094924, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 13893\n",
+ "Discriminator Loss: tf.Tensor(0.36071444, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.87509507, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 13894\n",
+ "Discriminator Loss: tf.Tensor(0.6634182, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.8823357, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 13895\n",
+ "Discriminator Loss: tf.Tensor(0.027177801, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.2155792, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 13896\n",
+ "Discriminator Loss: tf.Tensor(32.929703, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.4473121, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 13897\n",
+ "Discriminator Loss: tf.Tensor(38.478813, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.95638615, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 13898\n",
+ "Discriminator Loss: tf.Tensor(10.832313, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.4109571, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 13899\n",
+ "Discriminator Loss: tf.Tensor(5.620349, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.58771646, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 13900\n",
+ "Discriminator Loss: tf.Tensor(4.116699, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.4956193, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 13901\n",
+ "Discriminator Loss: tf.Tensor(3.6755047, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.5169256, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 13902\n",
+ "Discriminator Loss: tf.Tensor(3.1276774, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.5258491, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 13903\n",
+ "Discriminator Loss: tf.Tensor(2.851963, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.5377752, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 13904\n",
+ "Discriminator Loss: tf.Tensor(2.881972, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.54538614, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 13905\n",
+ "Discriminator Loss: tf.Tensor(2.7269232, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.48731592, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 13906\n",
+ "Discriminator Loss: tf.Tensor(2.5557444, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.5039942, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 13907\n",
+ "Discriminator Loss: tf.Tensor(2.3569877, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.47561112, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 13908\n",
+ "Discriminator Loss: tf.Tensor(2.446651, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.5119129, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 13909\n",
+ "Discriminator Loss: tf.Tensor(2.5044618, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.47947574, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 13910\n",
+ "Discriminator Loss: tf.Tensor(2.3184855, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.5261007, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 13911\n",
+ "Discriminator Loss: tf.Tensor(2.1960812, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.5195986, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 13912\n",
+ "Discriminator Loss: tf.Tensor(2.1542513, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.5594603, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 13913\n",
+ "Discriminator Loss: tf.Tensor(2.1494107, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.5927468, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 13914\n",
+ "Discriminator Loss: tf.Tensor(2.0596588, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.6360588, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 13915\n",
+ "Discriminator Loss: tf.Tensor(2.1254613, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.59700614, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 13916\n",
+ "Discriminator Loss: tf.Tensor(2.0563166, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.6752246, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 13917\n",
+ "Discriminator Loss: tf.Tensor(2.0260239, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.60903966, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 13918\n",
+ "Discriminator Loss: tf.Tensor(2.0203047, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.6296753, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 13919\n",
+ "Discriminator Loss: tf.Tensor(1.9850636, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.43122482, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 13920\n",
+ "Discriminator Loss: tf.Tensor(1.9292115, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.597789, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 13921\n",
+ "Discriminator Loss: tf.Tensor(1.9642318, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.6144072, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 13922\n",
+ "Discriminator Loss: tf.Tensor(1.9751415, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.57447076, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 13923\n",
+ "Discriminator Loss: tf.Tensor(1.8338577, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.5748495, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 13924\n",
+ "Discriminator Loss: tf.Tensor(1.9529192, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.70315963, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 13925\n",
+ "Discriminator Loss: tf.Tensor(1.8018229, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.71809006, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 13926\n",
+ "Discriminator Loss: tf.Tensor(1.7841345, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.6898969, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 13927\n",
+ "Discriminator Loss: tf.Tensor(1.6722175, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.8714628, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 13928\n",
+ "Discriminator Loss: tf.Tensor(1.6865156, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.8317779, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 13929\n",
+ "Discriminator Loss: tf.Tensor(1.7167077, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.0047188, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 13930\n",
+ "Discriminator Loss: tf.Tensor(2.0061672, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.20394015, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 13931\n",
+ "Discriminator Loss: tf.Tensor(1.8710907, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.2400956, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 13932\n",
+ "Discriminator Loss: tf.Tensor(1.7347339, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.40963435, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 13933\n",
+ "Discriminator Loss: tf.Tensor(1.6199147, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.59558827, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 13934\n",
+ "Discriminator Loss: tf.Tensor(1.4987868, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.42770067, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 13935\n",
+ "Discriminator Loss: tf.Tensor(1.4169008, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.6004641, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 13936\n",
+ "Discriminator Loss: tf.Tensor(1.987362, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.55709505, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 13937\n",
+ "Discriminator Loss: tf.Tensor(1.5877469, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.5736608, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 13938\n",
+ "Discriminator Loss: tf.Tensor(1.4599199, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.0361444, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 13939\n",
+ "Discriminator Loss: tf.Tensor(1.6542101, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.33020797, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 13940\n",
+ "Discriminator Loss: tf.Tensor(1.1881583, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.16147186, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 13941\n",
+ "Discriminator Loss: tf.Tensor(0.9514138, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.61047643, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 13942\n",
+ "Discriminator Loss: tf.Tensor(5.5757565, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(3.9874752, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 13943\n",
+ "Discriminator Loss: tf.Tensor(2.3580487, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-1.2181257, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 13944\n",
+ "Discriminator Loss: tf.Tensor(1.6937573, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.053690437, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 13945\n",
+ "Discriminator Loss: tf.Tensor(1.344336, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.1982162, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 13946\n",
+ "Discriminator Loss: tf.Tensor(2.2189894, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-1.1992064, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 13947\n",
+ "Discriminator Loss: tf.Tensor(1.7041287, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.21235327, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 13948\n",
+ "Discriminator Loss: tf.Tensor(1.4263234, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.42823532, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 13949\n",
+ "Discriminator Loss: tf.Tensor(1.2331388, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.48887026, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 13950\n",
+ "Discriminator Loss: tf.Tensor(1.0451088, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.72332174, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 13951\n",
+ "Discriminator Loss: tf.Tensor(1.1024604, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.8356007, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 13952\n",
+ "Discriminator Loss: tf.Tensor(1.3636814, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.18471994, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 13953\n",
+ "Discriminator Loss: tf.Tensor(1.214242, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.3333262, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 13954\n",
+ "Discriminator Loss: tf.Tensor(1.1953553, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.3564434, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 13955\n",
+ "Discriminator Loss: tf.Tensor(1.0642339, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.5649852, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 13956\n",
+ "Discriminator Loss: tf.Tensor(0.6972524, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.1059238, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 13957\n",
+ "Discriminator Loss: tf.Tensor(1.5651002, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.50569135, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 13958\n",
+ "Discriminator Loss: tf.Tensor(0.68428767, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.99500257, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 13959\n",
+ "Discriminator Loss: tf.Tensor(0.50127226, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.8797436, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 13960\n",
+ "Discriminator Loss: tf.Tensor(1.1127716, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.5978922, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 13961\n",
+ "Discriminator Loss: tf.Tensor(1.4060081, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.38645744, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 13962\n",
+ "Discriminator Loss: tf.Tensor(0.6214738, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.2939028, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 13963\n",
+ "Discriminator Loss: tf.Tensor(0.8851782, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.4284121, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 13964\n",
+ "Discriminator Loss: tf.Tensor(0.7236872, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.4311312, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 13965\n",
+ "Discriminator Loss: tf.Tensor(0.92504215, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.17988859, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 13966\n",
+ "Discriminator Loss: tf.Tensor(0.72404426, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.4749041, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 13967\n",
+ "Discriminator Loss: tf.Tensor(0.8442128, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.19221205, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 13968\n",
+ "Discriminator Loss: tf.Tensor(0.6387753, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.3242412, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 13969\n",
+ "Discriminator Loss: tf.Tensor(0.7409857, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.31345883, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 13970\n",
+ "Discriminator Loss: tf.Tensor(0.43028116, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.3123611, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 13971\n",
+ "Discriminator Loss: tf.Tensor(1.6646775, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.22017503, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 13972\n",
+ "Discriminator Loss: tf.Tensor(0.3838254, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.5111985, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 13973\n",
+ "Discriminator Loss: tf.Tensor(1.5320679, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.23858257, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 13974\n",
+ "Discriminator Loss: tf.Tensor(0.55167985, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.9270767, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 13975\n",
+ "Discriminator Loss: tf.Tensor(0.97214717, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.15415867, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 13976\n",
+ "Discriminator Loss: tf.Tensor(0.56508225, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.6681849, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 13977\n",
+ "Discriminator Loss: tf.Tensor(0.89435405, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.5441441, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 13978\n",
+ "Discriminator Loss: tf.Tensor(1.0121189, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.770893, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 13979\n",
+ "Discriminator Loss: tf.Tensor(0.35390833, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.70786333, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 13980\n",
+ "Discriminator Loss: tf.Tensor(1.1204528, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.3613565, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 13981\n",
+ "Discriminator Loss: tf.Tensor(0.4246628, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.7183676, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 13982\n",
+ "Discriminator Loss: tf.Tensor(0.54325795, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.5451891, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 13983\n",
+ "Discriminator Loss: tf.Tensor(0.2236661, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.8341959, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 13984\n",
+ "Discriminator Loss: tf.Tensor(0.57222724, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.5928984, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 13985\n",
+ "Discriminator Loss: tf.Tensor(0.18774915, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.89739084, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 13986\n",
+ "Discriminator Loss: tf.Tensor(0.9451886, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(3.2844899, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 13987\n",
+ "Discriminator Loss: tf.Tensor(0.37056202, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.78254765, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 13988\n",
+ "Discriminator Loss: tf.Tensor(0.8831964, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.8008747, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 13989\n",
+ "Discriminator Loss: tf.Tensor(0.1568446, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.9838702, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 13990\n",
+ "Discriminator Loss: tf.Tensor(0.71388817, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.2649667, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 13991\n",
+ "Discriminator Loss: tf.Tensor(0.48531288, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.70264006, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 13992\n",
+ "Discriminator Loss: tf.Tensor(1.6414449, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.6548421, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 13993\n",
+ "Discriminator Loss: tf.Tensor(1.12537, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.2387536, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 13994\n",
+ "Discriminator Loss: tf.Tensor(0.61117107, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.9568232, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 13995\n",
+ "Discriminator Loss: tf.Tensor(0.48839954, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.75928164, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 13996\n",
+ "Discriminator Loss: tf.Tensor(0.6611714, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.5748856, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 13997\n",
+ "Discriminator Loss: tf.Tensor(0.43469188, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.80028147, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 13998\n",
+ "Discriminator Loss: tf.Tensor(0.6093627, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(3.1771812, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 13999\n",
+ "Discriminator Loss: tf.Tensor(0.46739274, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.8593068, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 14000\n",
+ "Discriminator Loss: tf.Tensor(0.7347014, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.5050736, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 14001\n",
+ "Discriminator Loss: tf.Tensor(0.6059046, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.6250782, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 14002\n",
+ "Discriminator Loss: tf.Tensor(0.2938748, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.4429122, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 14003\n",
+ "Discriminator Loss: tf.Tensor(0.7865257, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.35241476, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 14004\n",
+ "Discriminator Loss: tf.Tensor(1.024054, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.7631676, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 14005\n",
+ "Discriminator Loss: tf.Tensor(0.632315, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.57596356, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 14006\n",
+ "Discriminator Loss: tf.Tensor(0.5496188, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.780639, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 14007\n",
+ "Discriminator Loss: tf.Tensor(1.326132, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.091863476, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 14008\n",
+ "Discriminator Loss: tf.Tensor(1.0010283, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(3.2643058, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 14009\n",
+ "Discriminator Loss: tf.Tensor(1.0689931, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.043962862, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 14010\n",
+ "Discriminator Loss: tf.Tensor(1.0959672, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.7836246, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 14011\n",
+ "Discriminator Loss: tf.Tensor(0.15896454, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.0275482, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 14012\n",
+ "Discriminator Loss: tf.Tensor(0.15206484, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.1554624, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 14013\n",
+ "Discriminator Loss: tf.Tensor(1.3238075, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.062085617, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 14014\n",
+ "Discriminator Loss: tf.Tensor(1.5015502, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.8983123, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 14015\n",
+ "Discriminator Loss: tf.Tensor(0.8687946, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.27127835, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 14016\n",
+ "Discriminator Loss: tf.Tensor(0.64536935, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.118018, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 14017\n",
+ "Discriminator Loss: tf.Tensor(0.20144482, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.1365099, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 14018\n",
+ "Discriminator Loss: tf.Tensor(0.7509871, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.3648697, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 14019\n",
+ "Discriminator Loss: tf.Tensor(0.9774109, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.6918125, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 14020\n",
+ "Discriminator Loss: tf.Tensor(0.30444464, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.0432028, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 14021\n",
+ "Discriminator Loss: tf.Tensor(0.84416246, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.30804217, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 14022\n",
+ "Discriminator Loss: tf.Tensor(1.1015165, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.6859531, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 14023\n",
+ "Discriminator Loss: tf.Tensor(0.25362265, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.1664332, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 14024\n",
+ "Discriminator Loss: tf.Tensor(0.5731648, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.49780965, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 14025\n",
+ "Discriminator Loss: tf.Tensor(0.8364247, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.3345165, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 14026\n",
+ "Discriminator Loss: tf.Tensor(0.33388656, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.75102407, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 14027\n",
+ "Discriminator Loss: tf.Tensor(1.1244192, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.4934254, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 14028\n",
+ "Discriminator Loss: tf.Tensor(0.27194813, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.803436, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 14029\n",
+ "Discriminator Loss: tf.Tensor(0.2172072, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.5153482, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 14030\n",
+ "Discriminator Loss: tf.Tensor(0.57853585, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.7682735, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 14031\n",
+ "Discriminator Loss: tf.Tensor(0.96458143, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.08579276, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 14032\n",
+ "Discriminator Loss: tf.Tensor(0.43799952, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.971085, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 14033\n",
+ "Discriminator Loss: tf.Tensor(0.42340958, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.86420935, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 14034\n",
+ "Discriminator Loss: tf.Tensor(0.60224694, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.751089, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 14035\n",
+ "Discriminator Loss: tf.Tensor(1.0224872, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.24094842, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 14036\n",
+ "Discriminator Loss: tf.Tensor(1.5218825, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.839111, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 14037\n",
+ "Discriminator Loss: tf.Tensor(0.685553, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.37178782, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 14038\n",
+ "Discriminator Loss: tf.Tensor(1.1140759, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.4964368, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 14039\n",
+ "Discriminator Loss: tf.Tensor(0.6277008, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.5250801, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 14040\n",
+ "Discriminator Loss: tf.Tensor(0.65332264, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.7543266, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 14041\n",
+ "Discriminator Loss: tf.Tensor(0.21214089, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.1018714, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 14042\n",
+ "Discriminator Loss: tf.Tensor(0.6730434, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.6947117, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 14043\n",
+ "Discriminator Loss: tf.Tensor(1.0114975, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(3.3421268, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 14044\n",
+ "Discriminator Loss: tf.Tensor(0.06831085, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.1787866, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 14045\n",
+ "Discriminator Loss: tf.Tensor(67.9755, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.59076864, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 14046\n",
+ "Discriminator Loss: tf.Tensor(37.86671, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.22658251, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 14047\n",
+ "Discriminator Loss: tf.Tensor(9.71483, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.24071799, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 14048\n",
+ "Discriminator Loss: tf.Tensor(5.7038546, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.42962813, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 14049\n",
+ "Discriminator Loss: tf.Tensor(4.6347494, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.48988804, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 14050\n",
+ "Discriminator Loss: tf.Tensor(3.79113, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.45195484, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 14051\n",
+ "Discriminator Loss: tf.Tensor(3.4444935, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.52086836, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 14052\n",
+ "Discriminator Loss: tf.Tensor(3.5139234, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.5028065, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 14053\n",
+ "Discriminator Loss: tf.Tensor(3.2660115, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.49829912, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 14054\n",
+ "Discriminator Loss: tf.Tensor(2.9861212, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.51933223, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 14055\n",
+ "Discriminator Loss: tf.Tensor(3.0910802, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.5134353, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 14056\n",
+ "Discriminator Loss: tf.Tensor(2.7630348, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.50425017, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 14057\n",
+ "Discriminator Loss: tf.Tensor(2.6222973, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.5195988, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 14058\n",
+ "Discriminator Loss: tf.Tensor(2.580726, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.52005965, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 14059\n",
+ "Discriminator Loss: tf.Tensor(2.3343635, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.51746744, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 14060\n",
+ "Discriminator Loss: tf.Tensor(2.4160452, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.55096406, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 14061\n",
+ "Discriminator Loss: tf.Tensor(2.3711843, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.5594546, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 14062\n",
+ "Discriminator Loss: tf.Tensor(2.1475801, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.5684851, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 14063\n",
+ "Discriminator Loss: tf.Tensor(2.146761, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.62344193, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 14064\n",
+ "Discriminator Loss: tf.Tensor(2.2802062, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.54897994, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 14065\n",
+ "Discriminator Loss: tf.Tensor(2.1151938, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.5696799, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 14066\n",
+ "Discriminator Loss: tf.Tensor(2.0465782, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.55877763, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 14067\n",
+ "Discriminator Loss: tf.Tensor(2.06608, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.5343756, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 14068\n",
+ "Discriminator Loss: tf.Tensor(2.0612235, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.51996225, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 14069\n",
+ "Discriminator Loss: tf.Tensor(1.9265289, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.4697005, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 14070\n",
+ "Discriminator Loss: tf.Tensor(1.8734603, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.5203257, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 14071\n",
+ "Discriminator Loss: tf.Tensor(1.9191715, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.4182576, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 14072\n",
+ "Discriminator Loss: tf.Tensor(1.8217144, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.5477274, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 14073\n",
+ "Discriminator Loss: tf.Tensor(1.8524691, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.5109351, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 14074\n",
+ "Discriminator Loss: tf.Tensor(1.728144, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.6782654, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 14075\n",
+ "Discriminator Loss: tf.Tensor(1.8093307, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.67560595, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 14076\n",
+ "Discriminator Loss: tf.Tensor(1.7174996, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.7763122, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 14077\n",
+ "Discriminator Loss: tf.Tensor(1.6574156, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.87065005, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 14078\n",
+ "Discriminator Loss: tf.Tensor(1.9189036, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.87998885, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 14079\n",
+ "Discriminator Loss: tf.Tensor(1.73855, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.2500259, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 14080\n",
+ "Discriminator Loss: tf.Tensor(1.718853, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.4365128, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 14081\n",
+ "Discriminator Loss: tf.Tensor(1.6151402, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.3835148, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 14082\n",
+ "Discriminator Loss: tf.Tensor(1.5934246, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.45457315, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 14083\n",
+ "Discriminator Loss: tf.Tensor(1.6109589, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.61556745, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 14084\n",
+ "Discriminator Loss: tf.Tensor(1.7544259, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.4401516, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 14085\n",
+ "Discriminator Loss: tf.Tensor(1.6339512, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.4806734, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 14086\n",
+ "Discriminator Loss: tf.Tensor(1.416371, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.1221553, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 14087\n",
+ "Discriminator Loss: tf.Tensor(1.9212545, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.6252095, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 14088\n",
+ "Discriminator Loss: tf.Tensor(1.5933834, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.25024158, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 14089\n",
+ "Discriminator Loss: tf.Tensor(1.302964, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.05348887, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 14090\n",
+ "Discriminator Loss: tf.Tensor(1.4512072, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.48512983, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 14091\n",
+ "Discriminator Loss: tf.Tensor(1.2099245, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.29175404, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 14092\n",
+ "Discriminator Loss: tf.Tensor(1.3601124, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.3985478, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 14093\n",
+ "Discriminator Loss: tf.Tensor(1.0582622, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.62050414, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 14094\n",
+ "Discriminator Loss: tf.Tensor(1.1331095, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.74393934, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 14095\n",
+ "Discriminator Loss: tf.Tensor(1.1439321, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.1510783, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 14096\n",
+ "Discriminator Loss: tf.Tensor(2.042706, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.93390846, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 14097\n",
+ "Discriminator Loss: tf.Tensor(1.3482902, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.57939345, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 14098\n",
+ "Discriminator Loss: tf.Tensor(1.0322222, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.76303405, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 14099\n",
+ "Discriminator Loss: tf.Tensor(0.80036646, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.9967203, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 14100\n",
+ "Discriminator Loss: tf.Tensor(1.0100063, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.3199934, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 14101\n",
+ "Discriminator Loss: tf.Tensor(0.73829406, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.0708504, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 14102\n",
+ "Discriminator Loss: tf.Tensor(1.4601437, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.42098603, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 14103\n",
+ "Discriminator Loss: tf.Tensor(0.8441831, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.86866045, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 14104\n",
+ "Discriminator Loss: tf.Tensor(0.6582466, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.0679449, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 14105\n",
+ "Discriminator Loss: tf.Tensor(2.2229698, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-1.1314834, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 14106\n",
+ "Discriminator Loss: tf.Tensor(1.0637794, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.489059, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 14107\n",
+ "Discriminator Loss: tf.Tensor(0.36247584, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.9766626, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 14108\n",
+ "Discriminator Loss: tf.Tensor(0.7245973, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.9138627, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 14109\n",
+ "Discriminator Loss: tf.Tensor(1.0248812, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.17366849, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 14110\n",
+ "Discriminator Loss: tf.Tensor(0.8441781, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.6566826, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 14111\n",
+ "Discriminator Loss: tf.Tensor(0.87423, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.30692324, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 14112\n",
+ "Discriminator Loss: tf.Tensor(0.6616374, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.4348294, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 14113\n",
+ "Discriminator Loss: tf.Tensor(1.1935325, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.013874224, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 14114\n",
+ "Discriminator Loss: tf.Tensor(0.3180153, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.5088438, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 14115\n",
+ "Discriminator Loss: tf.Tensor(0.5725927, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.6600166, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 14116\n",
+ "Discriminator Loss: tf.Tensor(0.6851175, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.0503404, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 14117\n",
+ "Discriminator Loss: tf.Tensor(0.5424493, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.5811792, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 14118\n",
+ "Discriminator Loss: tf.Tensor(1.1091795, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.9488149, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 14119\n",
+ "Discriminator Loss: tf.Tensor(0.7880766, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.22887485, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 14120\n",
+ "Discriminator Loss: tf.Tensor(0.34984115, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.9206365, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 14121\n",
+ "Discriminator Loss: tf.Tensor(0.32602596, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.019889, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 14122\n",
+ "Discriminator Loss: tf.Tensor(0.4753616, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.7228116, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 14123\n",
+ "Discriminator Loss: tf.Tensor(1.6859941, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.48379192, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 14124\n",
+ "Discriminator Loss: tf.Tensor(0.5302248, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.1314924, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 14125\n",
+ "Discriminator Loss: tf.Tensor(0.93216985, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.59694034, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 14126\n",
+ "Discriminator Loss: tf.Tensor(0.26259768, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.1384118, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 14127\n",
+ "Discriminator Loss: tf.Tensor(0.704873, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.43681684, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 14128\n",
+ "Discriminator Loss: tf.Tensor(0.97361445, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(3.0249565, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 14129\n",
+ "Discriminator Loss: tf.Tensor(0.26813415, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.85856384, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 14130\n",
+ "Discriminator Loss: tf.Tensor(0.8488257, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.642635, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 14131\n",
+ "Discriminator Loss: tf.Tensor(0.71814656, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.3881664, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 14132\n",
+ "Discriminator Loss: tf.Tensor(0.84329796, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.3133967, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 14133\n",
+ "Discriminator Loss: tf.Tensor(0.7678474, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.26470104, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 14134\n",
+ "Discriminator Loss: tf.Tensor(0.5767423, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.3811426, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 14135\n",
+ "Discriminator Loss: tf.Tensor(1.0689949, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.017991595, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 14136\n",
+ "Discriminator Loss: tf.Tensor(1.0081462, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.1638927, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 14137\n",
+ "Discriminator Loss: tf.Tensor(1.1627343, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.097545974, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 14138\n",
+ "Discriminator Loss: tf.Tensor(0.56475854, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.1940143, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 14139\n",
+ "Discriminator Loss: tf.Tensor(0.59034675, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.6257234, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 14140\n",
+ "Discriminator Loss: tf.Tensor(0.57498276, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.69915, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 14141\n",
+ "Discriminator Loss: tf.Tensor(0.21675122, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.97183996, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 14142\n",
+ "Discriminator Loss: tf.Tensor(0.5892899, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.269047, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 14143\n",
+ "Discriminator Loss: tf.Tensor(0.49238318, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.97373813, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 14144\n",
+ "Discriminator Loss: tf.Tensor(0.11657177, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.588425, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 14145\n",
+ "Discriminator Loss: tf.Tensor(0.44365168, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.6594418, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 14146\n",
+ "Discriminator Loss: tf.Tensor(0.87856853, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.21639167, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 14147\n",
+ "Discriminator Loss: tf.Tensor(1.6802071, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(3.0248258, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 14148\n",
+ "Discriminator Loss: tf.Tensor(0.75634545, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.61988926, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 14149\n",
+ "Discriminator Loss: tf.Tensor(0.93517184, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.5566351, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 14150\n",
+ "Discriminator Loss: tf.Tensor(0.50750846, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.75996655, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 14151\n",
+ "Discriminator Loss: tf.Tensor(0.71618795, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.4574382, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 14152\n",
+ "Discriminator Loss: tf.Tensor(1.7050846, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.4443051, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 14153\n",
+ "Discriminator Loss: tf.Tensor(0.5666543, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.06086, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 14154\n",
+ "Discriminator Loss: tf.Tensor(0.48770365, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.59194463, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 14155\n",
+ "Discriminator Loss: tf.Tensor(0.9041227, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.6169949, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 14156\n",
+ "Discriminator Loss: tf.Tensor(0.70784366, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.44170332, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 14157\n",
+ "Discriminator Loss: tf.Tensor(0.6058704, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.5220406, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 14158\n",
+ "Discriminator Loss: tf.Tensor(0.31197217, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.0793872, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 14159\n",
+ "Discriminator Loss: tf.Tensor(0.48766327, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.6225496, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 14160\n",
+ "Discriminator Loss: tf.Tensor(0.6765727, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(3.6956184, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 14161\n",
+ "Discriminator Loss: tf.Tensor(1.0537838, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.20268965, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 14162\n",
+ "Discriminator Loss: tf.Tensor(1.0237842, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.9226868, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 14163\n",
+ "Discriminator Loss: tf.Tensor(0.31390512, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.1891036, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 14164\n",
+ "Discriminator Loss: tf.Tensor(1.3001437, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.019116284, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 14165\n",
+ "Discriminator Loss: tf.Tensor(0.5852872, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.283522, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 14166\n",
+ "Discriminator Loss: tf.Tensor(0.109317176, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.0622475, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 14167\n",
+ "Discriminator Loss: tf.Tensor(0.90362704, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.21828713, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 14168\n",
+ "Discriminator Loss: tf.Tensor(1.1922612, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(3.1954825, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 14169\n",
+ "Discriminator Loss: tf.Tensor(0.5481614, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.98349667, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 14170\n",
+ "Discriminator Loss: tf.Tensor(0.45084321, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.3996543, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 14171\n",
+ "Discriminator Loss: tf.Tensor(1.4390458, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.2645807, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 14172\n",
+ "Discriminator Loss: tf.Tensor(0.73545504, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.9706682, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 14173\n",
+ "Discriminator Loss: tf.Tensor(0.75094813, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.5521992, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 14174\n",
+ "Discriminator Loss: tf.Tensor(1.3227503, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.4296029, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 14175\n",
+ "Discriminator Loss: tf.Tensor(1.1081784, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.0510934, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 14176\n",
+ "Discriminator Loss: tf.Tensor(1.0254499, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.9721867, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 14177\n",
+ "Discriminator Loss: tf.Tensor(0.8780731, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.22020139, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 14178\n",
+ "Discriminator Loss: tf.Tensor(0.84103304, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.373163, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 14179\n",
+ "Discriminator Loss: tf.Tensor(1.0015774, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.1698534, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 14180\n",
+ "Discriminator Loss: tf.Tensor(1.0038933, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.4497244, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 14181\n",
+ "Discriminator Loss: tf.Tensor(0.79524887, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.3172922, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 14182\n",
+ "Discriminator Loss: tf.Tensor(0.8681866, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.2646358, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 14183\n",
+ "Discriminator Loss: tf.Tensor(0.5411863, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.5979964, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 14184\n",
+ "Discriminator Loss: tf.Tensor(0.5097428, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(3.150067, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 14185\n",
+ "Discriminator Loss: tf.Tensor(0.61834604, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.0032892, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 14186\n",
+ "Discriminator Loss: tf.Tensor(0.5283414, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.238715, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 14187\n",
+ "Discriminator Loss: tf.Tensor(1.2537076, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.110730164, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 14188\n",
+ "Discriminator Loss: tf.Tensor(1.1406063, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.5768864, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 14189\n",
+ "Discriminator Loss: tf.Tensor(0.84615964, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.25464338, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 14190\n",
+ "Discriminator Loss: tf.Tensor(0.65848047, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.7857838, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 14191\n",
+ "Discriminator Loss: tf.Tensor(0.42132044, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.0563192, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 14192\n",
+ "Discriminator Loss: tf.Tensor(1.5014704, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.40313065, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 14193\n",
+ "Discriminator Loss: tf.Tensor(0.68416566, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.915164, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 14194\n",
+ "Discriminator Loss: tf.Tensor(0.4557601, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.67074233, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 14195\n",
+ "Discriminator Loss: tf.Tensor(0.42809525, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.702566, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 14196\n",
+ "Discriminator Loss: tf.Tensor(0.22897997, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.9990098, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 14197\n",
+ "Discriminator Loss: tf.Tensor(0.93661875, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.0934458, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 14198\n",
+ "Discriminator Loss: tf.Tensor(1.9102943, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.78608745, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 14199\n",
+ "Discriminator Loss: tf.Tensor(0.6246451, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.8693957, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 14200\n",
+ "Discriminator Loss: tf.Tensor(0.99857605, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.051083565, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 14201\n",
+ "Discriminator Loss: tf.Tensor(1.1356573, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.6018174, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 14202\n",
+ "Discriminator Loss: tf.Tensor(0.54317164, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.55208105, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 14203\n",
+ "Discriminator Loss: tf.Tensor(0.4276009, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.493748, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 14204\n",
+ "Discriminator Loss: tf.Tensor(0.55878973, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.8039095, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 14205\n",
+ "Discriminator Loss: tf.Tensor(0.9436228, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.82153, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 14206\n",
+ "Discriminator Loss: tf.Tensor(0.2465116, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.0182934, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 14207\n",
+ "Discriminator Loss: tf.Tensor(0.1041405, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.790317, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 14208\n",
+ "Discriminator Loss: tf.Tensor(1.1364527, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.62009484, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 14209\n",
+ "Discriminator Loss: tf.Tensor(2.5897572, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(3.3422892, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 14210\n",
+ "Discriminator Loss: tf.Tensor(0.50164956, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.7935707, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 14211\n",
+ "Discriminator Loss: tf.Tensor(0.5095179, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.1286411, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 14212\n",
+ "Discriminator Loss: tf.Tensor(0.3921674, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.8762016, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 14213\n",
+ "Discriminator Loss: tf.Tensor(1.119501, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.3654811, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 14214\n",
+ "Discriminator Loss: tf.Tensor(0.610567, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.7347383, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 14215\n",
+ "Discriminator Loss: tf.Tensor(0.6446161, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.5981586, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 14216\n",
+ "Discriminator Loss: tf.Tensor(0.73551875, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.8193571, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 14217\n",
+ "Discriminator Loss: tf.Tensor(1.1207747, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.9226751, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 14218\n",
+ "Discriminator Loss: tf.Tensor(0.5453199, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.94203347, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 14219\n",
+ "Discriminator Loss: tf.Tensor(0.94934106, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.240778, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 14220\n",
+ "Discriminator Loss: tf.Tensor(0.63814414, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.1681343, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 14221\n",
+ "Discriminator Loss: tf.Tensor(1.1268662, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.08906517, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 14222\n",
+ "Discriminator Loss: tf.Tensor(0.49414498, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.7333513, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 14223\n",
+ "Discriminator Loss: tf.Tensor(0.87733436, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.5161472, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 14224\n",
+ "Discriminator Loss: tf.Tensor(0.4964133, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.7511048, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 14225\n",
+ "Discriminator Loss: tf.Tensor(1.0389065, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.17993174, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 14226\n",
+ "Discriminator Loss: tf.Tensor(0.8719245, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.3021889, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 14227\n",
+ "Discriminator Loss: tf.Tensor(0.49730316, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.82080555, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 14228\n",
+ "Discriminator Loss: tf.Tensor(0.62451863, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.5841959, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 14229\n",
+ "Discriminator Loss: tf.Tensor(0.1283461, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.91558105, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 14230\n",
+ "Discriminator Loss: tf.Tensor(0.97406155, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.4037087, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 14231\n",
+ "Discriminator Loss: tf.Tensor(0.09390389, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.9567542, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 14232\n",
+ "Discriminator Loss: tf.Tensor(0.79696107, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.557501, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 14233\n",
+ "Discriminator Loss: tf.Tensor(0.5698364, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.5530456, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 14234\n",
+ "Discriminator Loss: tf.Tensor(0.9148998, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(3.0079997, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 14235\n",
+ "Discriminator Loss: tf.Tensor(0.16101328, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.95272684, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 14236\n",
+ "Discriminator Loss: tf.Tensor(0.75603354, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(3.1800337, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 14237\n",
+ "Discriminator Loss: tf.Tensor(0.3110836, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.2171489, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 14238\n",
+ "Discriminator Loss: tf.Tensor(1.3623506, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.30391368, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 14239\n",
+ "Discriminator Loss: tf.Tensor(0.7207656, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.2339363, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 14240\n",
+ "Discriminator Loss: tf.Tensor(0.637647, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.41546616, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 14241\n",
+ "Discriminator Loss: tf.Tensor(0.40854144, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.90711, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 14242\n",
+ "Discriminator Loss: tf.Tensor(0.2343837, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.55573, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 14243\n",
+ "Discriminator Loss: tf.Tensor(0.41750097, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.77908117, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 14244\n",
+ "Discriminator Loss: tf.Tensor(0.7479262, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(3.4937344, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 14245\n",
+ "Discriminator Loss: tf.Tensor(0.36439258, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.1434417, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 14246\n",
+ "Discriminator Loss: tf.Tensor(1.2191408, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.41281405, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 14247\n",
+ "Discriminator Loss: tf.Tensor(1.9045641, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(3.1254928, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 14248\n",
+ "Discriminator Loss: tf.Tensor(0.8970634, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.31824723, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 14249\n",
+ "Discriminator Loss: tf.Tensor(0.8057622, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.3585217, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 14250\n",
+ "Discriminator Loss: tf.Tensor(0.47590995, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.63153553, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 14251\n",
+ "Discriminator Loss: tf.Tensor(1.0782905, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.7710574, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 14252\n",
+ "Discriminator Loss: tf.Tensor(0.13924564, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.222744, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 14253\n",
+ "Discriminator Loss: tf.Tensor(0.6417078, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.4958532, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 14254\n",
+ "Discriminator Loss: tf.Tensor(0.66021276, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.7732716, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 14255\n",
+ "Discriminator Loss: tf.Tensor(0.19539136, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.1197336, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 14256\n",
+ "Discriminator Loss: tf.Tensor(0.61698645, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.43300077, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 14257\n",
+ "Discriminator Loss: tf.Tensor(1.1483414, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(3.2854831, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 14258\n",
+ "Discriminator Loss: tf.Tensor(0.24699312, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.4420633, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 14259\n",
+ "Discriminator Loss: tf.Tensor(0.9908884, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.2993119, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 14260\n",
+ "Discriminator Loss: tf.Tensor(1.1699232, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.6482632, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 14261\n",
+ "Discriminator Loss: tf.Tensor(1.0161825, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.44332862, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 14262\n",
+ "Discriminator Loss: tf.Tensor(0.63531595, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.2246342, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 14263\n",
+ "Discriminator Loss: tf.Tensor(0.8221461, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.21942401, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 14264\n",
+ "Discriminator Loss: tf.Tensor(1.3629733, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.707538, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 14265\n",
+ "Discriminator Loss: tf.Tensor(0.24218047, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.9954975, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 14266\n",
+ "Discriminator Loss: tf.Tensor(0.4406439, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.9252625, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 14267\n",
+ "Discriminator Loss: tf.Tensor(0.61730427, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.64109284, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 14268\n",
+ "Discriminator Loss: tf.Tensor(0.8993205, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.8586543, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 14269\n",
+ "Discriminator Loss: tf.Tensor(0.43521503, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.7291107, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 14270\n",
+ "Discriminator Loss: tf.Tensor(0.60264343, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.9883645, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 14271\n",
+ "Discriminator Loss: tf.Tensor(0.55357873, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.7163029, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 14272\n",
+ "Discriminator Loss: tf.Tensor(0.5897423, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.65342605, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 14273\n",
+ "Discriminator Loss: tf.Tensor(0.3589661, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.6372354, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 14274\n",
+ "Discriminator Loss: tf.Tensor(0.22466937, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.3474474, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 14275\n",
+ "Discriminator Loss: tf.Tensor(1.3984914, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.23146276, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 14276\n",
+ "Discriminator Loss: tf.Tensor(1.2830414, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.693882, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 14277\n",
+ "Discriminator Loss: tf.Tensor(0.13191336, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.9006626, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 14278\n",
+ "Discriminator Loss: tf.Tensor(1.5142754, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(3.2768726, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 14279\n",
+ "Discriminator Loss: tf.Tensor(0.39298332, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.86862737, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 14280\n",
+ "Discriminator Loss: tf.Tensor(0.62062097, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.690992, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 14281\n",
+ "Discriminator Loss: tf.Tensor(0.5404857, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.65503067, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 14282\n",
+ "Discriminator Loss: tf.Tensor(0.58690256, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.9015892, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 14283\n",
+ "Discriminator Loss: tf.Tensor(0.25447512, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.5315555, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 14284\n",
+ "Discriminator Loss: tf.Tensor(0.63873994, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.7325947, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 14285\n",
+ "Discriminator Loss: tf.Tensor(1.3780402, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.8450308, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 14286\n",
+ "Discriminator Loss: tf.Tensor(0.2135265, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.3356057, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 14287\n",
+ "Discriminator Loss: tf.Tensor(0.5020956, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.53653723, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 14288\n",
+ "Discriminator Loss: tf.Tensor(0.6762325, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.4512246, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 14289\n",
+ "Discriminator Loss: tf.Tensor(0.49345595, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.3296413, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 14290\n",
+ "Discriminator Loss: tf.Tensor(1.6504945, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.51233464, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 14291\n",
+ "Discriminator Loss: tf.Tensor(0.40041524, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.6570772, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 14292\n",
+ "Discriminator Loss: tf.Tensor(1.6532266, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.3624874, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 14293\n",
+ "Discriminator Loss: tf.Tensor(0.9834844, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.5949723, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 14294\n",
+ "Discriminator Loss: tf.Tensor(1.9290348, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.8423827, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 14295\n",
+ "Discriminator Loss: tf.Tensor(0.8055266, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.6258607, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 14296\n",
+ "Discriminator Loss: tf.Tensor(1.1149168, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.02985234, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 14297\n",
+ "Discriminator Loss: tf.Tensor(0.69268364, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.6120425, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 14298\n",
+ "Discriminator Loss: tf.Tensor(0.59894204, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.5121208, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 14299\n",
+ "Discriminator Loss: tf.Tensor(0.4087648, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.144252, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 14300\n",
+ "Discriminator Loss: tf.Tensor(0.6246664, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.4205184, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 14301\n",
+ "Discriminator Loss: tf.Tensor(0.9031443, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.17754972, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 14302\n",
+ "Discriminator Loss: tf.Tensor(0.4143576, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.1089003, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 14303\n",
+ "Discriminator Loss: tf.Tensor(0.88732654, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.2857717, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 14304\n",
+ "Discriminator Loss: tf.Tensor(1.0856593, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.1549332, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 14305\n",
+ "Discriminator Loss: tf.Tensor(0.4895031, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.6053436, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 14306\n",
+ "Discriminator Loss: tf.Tensor(1.323775, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.665446, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 14307\n",
+ "Discriminator Loss: tf.Tensor(0.64384604, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.59512866, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 14308\n",
+ "Discriminator Loss: tf.Tensor(0.7928272, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.4533854, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 14309\n",
+ "Discriminator Loss: tf.Tensor(0.6354393, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.57012683, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 14310\n",
+ "Discriminator Loss: tf.Tensor(0.90215945, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.646241, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 14311\n",
+ "Discriminator Loss: tf.Tensor(0.844605, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.24878556, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 14312\n",
+ "Discriminator Loss: tf.Tensor(0.7289462, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.5754464, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 14313\n",
+ "Discriminator Loss: tf.Tensor(0.8047401, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.39124247, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 14314\n",
+ "Discriminator Loss: tf.Tensor(0.9491732, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(3.1690722, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 14315\n",
+ "Discriminator Loss: tf.Tensor(0.32157633, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.69372845, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 14316\n",
+ "Discriminator Loss: tf.Tensor(1.2109845, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(3.2031496, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 14317\n",
+ "Discriminator Loss: tf.Tensor(0.604121, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.5928544, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 14318\n",
+ "Discriminator Loss: tf.Tensor(0.6076742, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.9041297, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 14319\n",
+ "Discriminator Loss: tf.Tensor(0.21989456, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.502524, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 14320\n",
+ "Discriminator Loss: tf.Tensor(1.3252952, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.05779907, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 14321\n",
+ "Discriminator Loss: tf.Tensor(0.6921619, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.311888, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 14322\n",
+ "Discriminator Loss: tf.Tensor(0.3914453, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.1249778, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 14323\n",
+ "Discriminator Loss: tf.Tensor(0.7742969, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.28458336, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 14324\n",
+ "Discriminator Loss: tf.Tensor(0.85163, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.4716206, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 14325\n",
+ "Discriminator Loss: tf.Tensor(0.14446501, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.186997, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 14326\n",
+ "Discriminator Loss: tf.Tensor(0.6975982, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.33067438, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 14327\n",
+ "Discriminator Loss: tf.Tensor(0.94208544, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.5935366, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 14328\n",
+ "Discriminator Loss: tf.Tensor(0.4652333, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.3237951, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 14329\n",
+ "Discriminator Loss: tf.Tensor(1.0543814, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.13898489, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 14330\n",
+ "Discriminator Loss: tf.Tensor(0.6773735, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.1537888, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 14331\n",
+ "Discriminator Loss: tf.Tensor(0.19258392, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.9850745, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 14332\n",
+ "Discriminator Loss: tf.Tensor(0.44108838, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.6166157, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 14333\n",
+ "Discriminator Loss: tf.Tensor(0.8308546, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.3027835, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 14334\n",
+ "Discriminator Loss: tf.Tensor(0.9363793, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.706424, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 14335\n",
+ "Discriminator Loss: tf.Tensor(0.45730317, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.82222056, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 14336\n",
+ "Discriminator Loss: tf.Tensor(1.042681, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.469116, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 14337\n",
+ "Discriminator Loss: tf.Tensor(0.52039266, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.7574504, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 14338\n",
+ "Discriminator Loss: tf.Tensor(0.8164985, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.7617605, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 14339\n",
+ "Discriminator Loss: tf.Tensor(0.43368828, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.5955192, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 14340\n",
+ "Discriminator Loss: tf.Tensor(0.5929923, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.5624138, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 14341\n",
+ "Discriminator Loss: tf.Tensor(0.541509, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.1404216, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 14342\n",
+ "Discriminator Loss: tf.Tensor(0.4670273, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.6275956, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 14343\n",
+ "Discriminator Loss: tf.Tensor(0.2389631, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.5480769, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 14344\n",
+ "Discriminator Loss: tf.Tensor(0.14835511, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.6038465, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 14345\n",
+ "Discriminator Loss: tf.Tensor(1.2720244, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.28099003, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 14346\n",
+ "Discriminator Loss: tf.Tensor(1.6231844, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(3.160836, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 14347\n",
+ "Discriminator Loss: tf.Tensor(0.4415981, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.64891404, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 14348\n",
+ "Discriminator Loss: tf.Tensor(0.91590047, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.5615938, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 14349\n",
+ "Discriminator Loss: tf.Tensor(0.31962603, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.2707785, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 14350\n",
+ "Discriminator Loss: tf.Tensor(1.4395175, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.12150999, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 14351\n",
+ "Discriminator Loss: tf.Tensor(0.5905111, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.0533552, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 14352\n",
+ "Discriminator Loss: tf.Tensor(0.54009193, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.6796139, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 14353\n",
+ "Discriminator Loss: tf.Tensor(0.57018405, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.8299015, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 14354\n",
+ "Discriminator Loss: tf.Tensor(0.30566815, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.3636307, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 14355\n",
+ "Discriminator Loss: tf.Tensor(1.4449488, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.2797574, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 14356\n",
+ "Discriminator Loss: tf.Tensor(1.5429711, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.25583, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 14357\n",
+ "Discriminator Loss: tf.Tensor(1.0217929, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.1657926, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 14358\n",
+ "Discriminator Loss: tf.Tensor(0.617774, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.00688, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 14359\n",
+ "Discriminator Loss: tf.Tensor(0.90506077, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.58085793, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 14360\n",
+ "Discriminator Loss: tf.Tensor(0.6987441, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.5346642, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 14361\n",
+ "Discriminator Loss: tf.Tensor(0.94213974, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.13090087, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 14362\n",
+ "Discriminator Loss: tf.Tensor(1.3036666, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.1724985, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 14363\n",
+ "Discriminator Loss: tf.Tensor(0.5280806, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.7302843, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 14364\n",
+ "Discriminator Loss: tf.Tensor(1.0244243, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.629179, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 14365\n",
+ "Discriminator Loss: tf.Tensor(0.38270342, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.730912, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 14366\n",
+ "Discriminator Loss: tf.Tensor(0.7399755, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.6289186, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 14367\n",
+ "Discriminator Loss: tf.Tensor(0.39908397, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.6642808, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 14368\n",
+ "Discriminator Loss: tf.Tensor(0.69633985, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.31696895, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 14369\n",
+ "Discriminator Loss: tf.Tensor(0.6469325, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.4293544, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 14370\n",
+ "Discriminator Loss: tf.Tensor(0.09959727, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.1843413, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 14371\n",
+ "Discriminator Loss: tf.Tensor(1.4455724, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.1437281, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 14372\n",
+ "Discriminator Loss: tf.Tensor(0.44354826, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.440972, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 14373\n",
+ "Discriminator Loss: tf.Tensor(0.2486196, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.4813021, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 14374\n",
+ "Discriminator Loss: tf.Tensor(0.82901096, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.6955932, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 14375\n",
+ "Discriminator Loss: tf.Tensor(0.670601, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.5569813, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 14376\n",
+ "Discriminator Loss: tf.Tensor(0.3778667, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.1760589, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 14377\n",
+ "Discriminator Loss: tf.Tensor(1.7998955, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.6410325, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 14378\n",
+ "Discriminator Loss: tf.Tensor(0.96157235, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.0391455, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 14379\n",
+ "Discriminator Loss: tf.Tensor(0.45945805, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.8051184, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 14380\n",
+ "Discriminator Loss: tf.Tensor(0.63427746, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.1927407, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 14381\n",
+ "Discriminator Loss: tf.Tensor(0.24935105, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.8604744, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 14382\n",
+ "Discriminator Loss: tf.Tensor(0.9320992, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.6639683, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 14383\n",
+ "Discriminator Loss: tf.Tensor(0.53378296, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.4363972, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 14384\n",
+ "Discriminator Loss: tf.Tensor(0.97539383, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.27735075, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 14385\n",
+ "Discriminator Loss: tf.Tensor(0.4477617, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.9418768, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 14386\n",
+ "Discriminator Loss: tf.Tensor(0.32648176, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.8720391, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 14387\n",
+ "Discriminator Loss: tf.Tensor(1.4516604, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.730199, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 14388\n",
+ "Discriminator Loss: tf.Tensor(0.15958685, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.0028042, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 14389\n",
+ "Discriminator Loss: tf.Tensor(0.30395487, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.88404, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 14390\n",
+ "Discriminator Loss: tf.Tensor(0.26028314, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.7779668, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 14391\n",
+ "Discriminator Loss: tf.Tensor(1.533272, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(3.3045642, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 14392\n",
+ "Discriminator Loss: tf.Tensor(0.3877824, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.0210707, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 14393\n",
+ "Discriminator Loss: tf.Tensor(0.84707195, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.5706318, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 14394\n",
+ "Discriminator Loss: tf.Tensor(0.9555598, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.612049, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 14395\n",
+ "Discriminator Loss: tf.Tensor(0.67961824, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.34653735, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 14396\n",
+ "Discriminator Loss: tf.Tensor(0.49862796, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.8421643, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 14397\n",
+ "Discriminator Loss: tf.Tensor(0.09493026, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.5675248, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 14398\n",
+ "Discriminator Loss: tf.Tensor(76.135895, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.8157075, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 14399\n",
+ "Discriminator Loss: tf.Tensor(25.251394, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.08884416, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 14400\n",
+ "Discriminator Loss: tf.Tensor(14.457778, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.26150462, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 14401\n",
+ "Discriminator Loss: tf.Tensor(7.4731965, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.25231537, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 14402\n",
+ "Discriminator Loss: tf.Tensor(5.1534147, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.36675313, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 14403\n",
+ "Discriminator Loss: tf.Tensor(4.692965, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.4039999, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 14404\n",
+ "Discriminator Loss: tf.Tensor(3.9444733, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.42732397, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 14405\n",
+ "Discriminator Loss: tf.Tensor(3.1675167, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.4895649, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 14406\n",
+ "Discriminator Loss: tf.Tensor(2.8733974, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.4662483, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 14407\n",
+ "Discriminator Loss: tf.Tensor(2.6406488, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.47564968, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 14408\n",
+ "Discriminator Loss: tf.Tensor(2.7036786, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.4566553, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 14409\n",
+ "Discriminator Loss: tf.Tensor(2.661025, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.43310475, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 14410\n",
+ "Discriminator Loss: tf.Tensor(2.644971, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.393139, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 14411\n",
+ "Discriminator Loss: tf.Tensor(2.4307656, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.43085983, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 14412\n",
+ "Discriminator Loss: tf.Tensor(2.3866434, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.45499423, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 14413\n",
+ "Discriminator Loss: tf.Tensor(2.3594408, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.45700428, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 14414\n",
+ "Discriminator Loss: tf.Tensor(2.4096274, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.4876857, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 14415\n",
+ "Discriminator Loss: tf.Tensor(2.3853664, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.519741, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 14416\n",
+ "Discriminator Loss: tf.Tensor(2.199234, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.54269767, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 14417\n",
+ "Discriminator Loss: tf.Tensor(2.1658158, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.58201426, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 14418\n",
+ "Discriminator Loss: tf.Tensor(2.1669626, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.5712134, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 14419\n",
+ "Discriminator Loss: tf.Tensor(2.114347, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.587575, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 14420\n",
+ "Discriminator Loss: tf.Tensor(2.0561535, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.5572056, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 14421\n",
+ "Discriminator Loss: tf.Tensor(2.0654595, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.49481001, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 14422\n",
+ "Discriminator Loss: tf.Tensor(2.050896, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.50294924, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 14423\n",
+ "Discriminator Loss: tf.Tensor(1.9103463, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.5431883, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 14424\n",
+ "Discriminator Loss: tf.Tensor(1.8389353, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.6324785, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 14425\n",
+ "Discriminator Loss: tf.Tensor(1.690342, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.56199616, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 14426\n",
+ "Discriminator Loss: tf.Tensor(1.7879349, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.6945532, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 14427\n",
+ "Discriminator Loss: tf.Tensor(1.8858523, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.9659776, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 14428\n",
+ "Discriminator Loss: tf.Tensor(1.8339752, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.3907139, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 14429\n",
+ "Discriminator Loss: tf.Tensor(1.8013451, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.48593983, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 14430\n",
+ "Discriminator Loss: tf.Tensor(1.7557154, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.45574006, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 14431\n",
+ "Discriminator Loss: tf.Tensor(1.9286091, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.35833538, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 14432\n",
+ "Discriminator Loss: tf.Tensor(1.7664864, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.53812057, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 14433\n",
+ "Discriminator Loss: tf.Tensor(1.8499882, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.53836423, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 14434\n",
+ "Discriminator Loss: tf.Tensor(1.6733501, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.6778626, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 14435\n",
+ "Discriminator Loss: tf.Tensor(1.5170778, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.0981672, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 14436\n",
+ "Discriminator Loss: tf.Tensor(1.8656207, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.35622522, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 14437\n",
+ "Discriminator Loss: tf.Tensor(1.4934726, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.018463036, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 14438\n",
+ "Discriminator Loss: tf.Tensor(1.4805118, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.1635847, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 14439\n",
+ "Discriminator Loss: tf.Tensor(1.4739625, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.15918998, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 14440\n",
+ "Discriminator Loss: tf.Tensor(1.5233394, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.046600226, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 14441\n",
+ "Discriminator Loss: tf.Tensor(1.7676, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.33975855, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 14442\n",
+ "Discriminator Loss: tf.Tensor(1.5575812, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.23959951, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 14443\n",
+ "Discriminator Loss: tf.Tensor(1.3627793, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.766157, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 14444\n",
+ "Discriminator Loss: tf.Tensor(1.6876004, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.51947373, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 14445\n",
+ "Discriminator Loss: tf.Tensor(1.5383227, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.7314377, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 14446\n",
+ "Discriminator Loss: tf.Tensor(1.1435547, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.65468526, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 14447\n",
+ "Discriminator Loss: tf.Tensor(1.1952068, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.9329477, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 14448\n",
+ "Discriminator Loss: tf.Tensor(1.0924668, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.4245046, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 14449\n",
+ "Discriminator Loss: tf.Tensor(1.7027252, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.6209486, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 14450\n",
+ "Discriminator Loss: tf.Tensor(1.2806493, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.3869892, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 14451\n",
+ "Discriminator Loss: tf.Tensor(1.0918473, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.33742142, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 14452\n",
+ "Discriminator Loss: tf.Tensor(0.54470193, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.9791007, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 14453\n",
+ "Discriminator Loss: tf.Tensor(0.7910191, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.9433954, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 14454\n",
+ "Discriminator Loss: tf.Tensor(1.0799305, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.4999198, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 14455\n",
+ "Discriminator Loss: tf.Tensor(1.7274508, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.51838917, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 14456\n",
+ "Discriminator Loss: tf.Tensor(0.860741, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.65571886, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 14457\n",
+ "Discriminator Loss: tf.Tensor(0.55373114, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.9574477, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 14458\n",
+ "Discriminator Loss: tf.Tensor(0.5894068, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.195312, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 14459\n",
+ "Discriminator Loss: tf.Tensor(2.445505, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-1.2579976, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 14460\n",
+ "Discriminator Loss: tf.Tensor(1.0382521, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.1031355, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 14461\n",
+ "Discriminator Loss: tf.Tensor(0.93801594, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.253559, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 14462\n",
+ "Discriminator Loss: tf.Tensor(0.5256124, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.3439347, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 14463\n",
+ "Discriminator Loss: tf.Tensor(0.8167187, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.25945884, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 14464\n",
+ "Discriminator Loss: tf.Tensor(0.66049075, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.372641, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 14465\n",
+ "Discriminator Loss: tf.Tensor(1.4505233, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.35355607, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 14466\n",
+ "Discriminator Loss: tf.Tensor(0.5147631, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.4079213, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 14467\n",
+ "Discriminator Loss: tf.Tensor(1.0949883, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.040912483, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 14468\n",
+ "Discriminator Loss: tf.Tensor(0.7820971, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.5221343, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 14469\n",
+ "Discriminator Loss: tf.Tensor(0.7207887, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.44663033, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 14470\n",
+ "Discriminator Loss: tf.Tensor(0.4769082, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.7705055, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 14471\n",
+ "Discriminator Loss: tf.Tensor(0.8451204, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.32833478, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 14472\n",
+ "Discriminator Loss: tf.Tensor(0.34869972, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.4300658, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 14473\n",
+ "Discriminator Loss: tf.Tensor(1.2376826, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.20812945, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 14474\n",
+ "Discriminator Loss: tf.Tensor(0.63733923, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.8479096, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 14475\n",
+ "Discriminator Loss: tf.Tensor(1.4254133, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.19950698, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 14476\n",
+ "Discriminator Loss: tf.Tensor(0.693023, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.4715157, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 14477\n",
+ "Discriminator Loss: tf.Tensor(0.8258795, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.19785346, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 14478\n",
+ "Discriminator Loss: tf.Tensor(0.57039154, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.0270882, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 14479\n",
+ "Discriminator Loss: tf.Tensor(0.43037608, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.7181871, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 14480\n",
+ "Discriminator Loss: tf.Tensor(0.42443445, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.3765097, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 14481\n",
+ "Discriminator Loss: tf.Tensor(0.29457465, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.2394223, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 14482\n",
+ "Discriminator Loss: tf.Tensor(0.99573576, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.06996422, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 14483\n",
+ "Discriminator Loss: tf.Tensor(0.6225659, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.008908, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 14484\n",
+ "Discriminator Loss: tf.Tensor(0.99643064, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.22607823, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 14485\n",
+ "Discriminator Loss: tf.Tensor(0.40890634, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.3598049, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 14486\n",
+ "Discriminator Loss: tf.Tensor(0.8829763, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.3872142, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 14487\n",
+ "Discriminator Loss: tf.Tensor(1.2841909, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.4906857, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 14488\n",
+ "Discriminator Loss: tf.Tensor(0.54596764, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.73638123, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 14489\n",
+ "Discriminator Loss: tf.Tensor(0.5270403, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.085242, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 14490\n",
+ "Discriminator Loss: tf.Tensor(1.2165724, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.0873445, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 14491\n",
+ "Discriminator Loss: tf.Tensor(1.036448, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(4.2283034, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 14492\n",
+ "Discriminator Loss: tf.Tensor(0.8472385, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.31873718, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 14493\n",
+ "Discriminator Loss: tf.Tensor(0.5732952, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.5373986, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 14494\n",
+ "Discriminator Loss: tf.Tensor(1.316111, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.25800177, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 14495\n",
+ "Discriminator Loss: tf.Tensor(0.6070747, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.2375803, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 14496\n",
+ "Discriminator Loss: tf.Tensor(1.0270444, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.0015068663, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 14497\n",
+ "Discriminator Loss: tf.Tensor(0.8212908, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.2112048, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 14498\n",
+ "Discriminator Loss: tf.Tensor(0.25695628, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.817101, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 14499\n",
+ "Discriminator Loss: tf.Tensor(1.1101582, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(3.6427243, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 14500\n",
+ "Discriminator Loss: tf.Tensor(0.09449207, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.3823277, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 14501\n",
+ "Discriminator Loss: tf.Tensor(0.6905586, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.34631625, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 14502\n",
+ "Discriminator Loss: tf.Tensor(1.382884, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(3.3037739, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 14503\n",
+ "Discriminator Loss: tf.Tensor(0.31453967, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.83120507, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 14504\n",
+ "Discriminator Loss: tf.Tensor(0.9548872, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.3186347, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 14505\n",
+ "Discriminator Loss: tf.Tensor(0.6419191, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.44824004, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 14506\n",
+ "Discriminator Loss: tf.Tensor(0.7219545, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.482456, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 14507\n",
+ "Discriminator Loss: tf.Tensor(0.536084, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.9407661, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 14508\n",
+ "Discriminator Loss: tf.Tensor(1.0999184, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.778228, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 14509\n",
+ "Discriminator Loss: tf.Tensor(0.78784543, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.5420013, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 14510\n",
+ "Discriminator Loss: tf.Tensor(0.34602523, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.2881508, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 14511\n",
+ "Discriminator Loss: tf.Tensor(0.36904287, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.9443119, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 14512\n",
+ "Discriminator Loss: tf.Tensor(0.83712673, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.2101777, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 14513\n",
+ "Discriminator Loss: tf.Tensor(0.7676507, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.3111756, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 14514\n",
+ "Discriminator Loss: tf.Tensor(1.0977567, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.7161233, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 14515\n",
+ "Discriminator Loss: tf.Tensor(0.68648344, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.6066685, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 14516\n",
+ "Discriminator Loss: tf.Tensor(0.6077351, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.4610064, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 14517\n",
+ "Discriminator Loss: tf.Tensor(0.8052519, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.25003013, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 14518\n",
+ "Discriminator Loss: tf.Tensor(1.051176, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.7797692, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 14519\n",
+ "Discriminator Loss: tf.Tensor(0.58420527, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.669436, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 14520\n",
+ "Discriminator Loss: tf.Tensor(1.0908297, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(3.2030678, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 14521\n",
+ "Discriminator Loss: tf.Tensor(0.0429088, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.0142738, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 14522\n",
+ "Discriminator Loss: tf.Tensor(0.9215596, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.3659973, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 14523\n",
+ "Discriminator Loss: tf.Tensor(0.68008834, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.53131604, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 14524\n",
+ "Discriminator Loss: tf.Tensor(1.6936216, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(3.2201607, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 14525\n",
+ "Discriminator Loss: tf.Tensor(0.50408214, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.5769249, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 14526\n",
+ "Discriminator Loss: tf.Tensor(1.0672958, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.4686966, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 14527\n",
+ "Discriminator Loss: tf.Tensor(0.72494155, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.6762202, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 14528\n",
+ "Discriminator Loss: tf.Tensor(0.95202583, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.1440468, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 14529\n",
+ "Discriminator Loss: tf.Tensor(1.4021732, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.27647614, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 14530\n",
+ "Discriminator Loss: tf.Tensor(0.62091804, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.7958595, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 14531\n",
+ "Discriminator Loss: tf.Tensor(0.8893114, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.51834404, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 14532\n",
+ "Discriminator Loss: tf.Tensor(0.8897737, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.97906, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 14533\n",
+ "Discriminator Loss: tf.Tensor(1.6109936, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.373301, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 14534\n",
+ "Discriminator Loss: tf.Tensor(0.48164627, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.686885, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 14535\n",
+ "Discriminator Loss: tf.Tensor(0.17789076, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.97861034, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 14536\n",
+ "Discriminator Loss: tf.Tensor(0.50908756, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(3.0501842, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 14537\n",
+ "Discriminator Loss: tf.Tensor(0.33225882, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.7010847, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 14538\n",
+ "Discriminator Loss: tf.Tensor(0.4925192, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.7422848, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 14539\n",
+ "Discriminator Loss: tf.Tensor(0.85466903, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.8720133, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 14540\n",
+ "Discriminator Loss: tf.Tensor(0.5557251, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.0194346, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 14541\n",
+ "Discriminator Loss: tf.Tensor(0.5432383, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.6705114, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 14542\n",
+ "Discriminator Loss: tf.Tensor(1.9493742, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.79903835, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 14543\n",
+ "Discriminator Loss: tf.Tensor(0.56465995, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.8077027, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 14544\n",
+ "Discriminator Loss: tf.Tensor(0.33797887, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.7535615, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 14545\n",
+ "Discriminator Loss: tf.Tensor(0.8701973, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(3.2428672, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 14546\n",
+ "Discriminator Loss: tf.Tensor(0.24082202, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.4079567, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 14547\n",
+ "Discriminator Loss: tf.Tensor(0.83956295, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.18094802, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 14548\n",
+ "Discriminator Loss: tf.Tensor(0.9861038, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.5952547, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 14549\n",
+ "Discriminator Loss: tf.Tensor(0.40197086, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.7714536, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 14550\n",
+ "Discriminator Loss: tf.Tensor(0.8570044, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.7794275, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 14551\n",
+ "Discriminator Loss: tf.Tensor(0.6945767, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.35617414, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 14552\n",
+ "Discriminator Loss: tf.Tensor(0.808866, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(3.033519, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 14553\n",
+ "Discriminator Loss: tf.Tensor(0.44187352, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.1654838, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 14554\n",
+ "Discriminator Loss: tf.Tensor(2.1041727, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.8711955, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 14555\n",
+ "Discriminator Loss: tf.Tensor(0.38932326, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.6719078, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 14556\n",
+ "Discriminator Loss: tf.Tensor(1.5436405, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.51322323, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 14557\n",
+ "Discriminator Loss: tf.Tensor(0.8223269, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.1199992, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 14558\n",
+ "Discriminator Loss: tf.Tensor(0.7288236, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.35510635, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 14559\n",
+ "Discriminator Loss: tf.Tensor(0.5692795, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.1395295, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 14560\n",
+ "Discriminator Loss: tf.Tensor(0.4735559, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.6826512, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 14561\n",
+ "Discriminator Loss: tf.Tensor(1.1937261, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.6264963, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 14562\n",
+ "Discriminator Loss: tf.Tensor(0.6389123, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.61135525, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 14563\n",
+ "Discriminator Loss: tf.Tensor(0.7365544, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.3707197, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 14564\n",
+ "Discriminator Loss: tf.Tensor(0.1371231, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.955138, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 14565\n",
+ "Discriminator Loss: tf.Tensor(0.85854155, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.6064293, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 14566\n",
+ "Discriminator Loss: tf.Tensor(0.07459205, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.1904575, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 14567\n",
+ "Discriminator Loss: tf.Tensor(0.8247899, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.58089906, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 14568\n",
+ "Discriminator Loss: tf.Tensor(1.4191623, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.7723942, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 14569\n",
+ "Discriminator Loss: tf.Tensor(0.567906, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.6107739, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 14570\n",
+ "Discriminator Loss: tf.Tensor(1.3222522, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.4811022, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 14571\n",
+ "Discriminator Loss: tf.Tensor(0.50523347, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.1675301, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 14572\n",
+ "Discriminator Loss: tf.Tensor(1.6866971, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.4419202, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 14573\n",
+ "Discriminator Loss: tf.Tensor(0.3879274, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.2473583, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 14574\n",
+ "Discriminator Loss: tf.Tensor(1.4491421, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.20303583, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 14575\n",
+ "Discriminator Loss: tf.Tensor(0.66782486, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.5886999, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 14576\n",
+ "Discriminator Loss: tf.Tensor(1.0915253, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.1970238, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 14577\n",
+ "Discriminator Loss: tf.Tensor(0.6366703, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.9575167, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 14578\n",
+ "Discriminator Loss: tf.Tensor(0.7703886, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.2797762, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 14579\n",
+ "Discriminator Loss: tf.Tensor(0.72678864, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.5473862, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 14580\n",
+ "Discriminator Loss: tf.Tensor(0.56708986, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.1992129, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 14581\n",
+ "Discriminator Loss: tf.Tensor(0.98404545, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.06664721, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 14582\n",
+ "Discriminator Loss: tf.Tensor(0.7350936, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.9958645, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 14583\n",
+ "Discriminator Loss: tf.Tensor(0.7833643, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.40270102, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 14584\n",
+ "Discriminator Loss: tf.Tensor(0.8249489, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.2345636, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 14585\n",
+ "Discriminator Loss: tf.Tensor(1.0850338, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.20550416, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 14586\n",
+ "Discriminator Loss: tf.Tensor(0.33526325, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.177529, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 14587\n",
+ "Discriminator Loss: tf.Tensor(0.26023743, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.2114071, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 14588\n",
+ "Discriminator Loss: tf.Tensor(0.8173037, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.27367178, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 14589\n",
+ "Discriminator Loss: tf.Tensor(0.5321218, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.7588482, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 14590\n",
+ "Discriminator Loss: tf.Tensor(0.050564677, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.5506166, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 14591\n",
+ "Discriminator Loss: tf.Tensor(0.6048717, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.9922848, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 14592\n",
+ "Discriminator Loss: tf.Tensor(0.8553287, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.9023107, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 14593\n",
+ "Discriminator Loss: tf.Tensor(1.2341704, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.21341126, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 14594\n",
+ "Discriminator Loss: tf.Tensor(0.8045986, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.0592406, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 14595\n",
+ "Discriminator Loss: tf.Tensor(0.9127313, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.7060297, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 14596\n",
+ "Discriminator Loss: tf.Tensor(1.1541798, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.0565035, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 14597\n",
+ "Discriminator Loss: tf.Tensor(1.1132603, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.48713604, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 14598\n",
+ "Discriminator Loss: tf.Tensor(0.6747257, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.5996523, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 14599\n",
+ "Discriminator Loss: tf.Tensor(0.7334596, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.88385886, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 14600\n",
+ "Discriminator Loss: tf.Tensor(0.8626212, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.8841015, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 14601\n",
+ "Discriminator Loss: tf.Tensor(1.3430979, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.03799346, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 14602\n",
+ "Discriminator Loss: tf.Tensor(0.64030826, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.5288029, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 14603\n",
+ "Discriminator Loss: tf.Tensor(1.1370364, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.21958125, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 14604\n",
+ "Discriminator Loss: tf.Tensor(0.47887456, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.4300861, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 14605\n",
+ "Discriminator Loss: tf.Tensor(1.8502678, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.6176386, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 14606\n",
+ "Discriminator Loss: tf.Tensor(1.0028902, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.0206006, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 14607\n",
+ "Discriminator Loss: tf.Tensor(1.9846562, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.5348831, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 14608\n",
+ "Discriminator Loss: tf.Tensor(0.5097656, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.0217475, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 14609\n",
+ "Discriminator Loss: tf.Tensor(0.78698534, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.61792344, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 14610\n",
+ "Discriminator Loss: tf.Tensor(0.47531164, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.2535295, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 14611\n",
+ "Discriminator Loss: tf.Tensor(1.6185466, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.4108131, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 14612\n",
+ "Discriminator Loss: tf.Tensor(0.88976616, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.1688558, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 14613\n",
+ "Discriminator Loss: tf.Tensor(1.3155202, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.03705925, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 14614\n",
+ "Discriminator Loss: tf.Tensor(0.40079328, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.3243225, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 14615\n",
+ "Discriminator Loss: tf.Tensor(0.72284573, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.43518174, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 14616\n",
+ "Discriminator Loss: tf.Tensor(0.63292974, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.1264594, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 14617\n",
+ "Discriminator Loss: tf.Tensor(0.6902726, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.39392355, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 14618\n",
+ "Discriminator Loss: tf.Tensor(0.67275566, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.867019, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 14619\n",
+ "Discriminator Loss: tf.Tensor(0.54499835, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.59741145, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 14620\n",
+ "Discriminator Loss: tf.Tensor(0.673944, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.7288773, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 14621\n",
+ "Discriminator Loss: tf.Tensor(0.36618972, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.0353519, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 14622\n",
+ "Discriminator Loss: tf.Tensor(0.34364063, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.81483847, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 14623\n",
+ "Discriminator Loss: tf.Tensor(1.0474743, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(3.1077487, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 14624\n",
+ "Discriminator Loss: tf.Tensor(0.15956324, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.2186788, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 14625\n",
+ "Discriminator Loss: tf.Tensor(0.8297583, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.26637134, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 14626\n",
+ "Discriminator Loss: tf.Tensor(0.3646738, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.622918, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 14627\n",
+ "Discriminator Loss: tf.Tensor(0.45421967, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.053922, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 14628\n",
+ "Discriminator Loss: tf.Tensor(0.89918727, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.8676695, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 14629\n",
+ "Discriminator Loss: tf.Tensor(1.1942377, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.7713559, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 14630\n",
+ "Discriminator Loss: tf.Tensor(1.179259, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.060749006, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 14631\n",
+ "Discriminator Loss: tf.Tensor(0.5515521, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.0069478, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 14632\n",
+ "Discriminator Loss: tf.Tensor(0.452356, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.7724986, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 14633\n",
+ "Discriminator Loss: tf.Tensor(1.3599863, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.445878, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 14634\n",
+ "Discriminator Loss: tf.Tensor(0.6137679, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.51834863, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 14635\n",
+ "Discriminator Loss: tf.Tensor(0.45979193, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.1513507, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 14636\n",
+ "Discriminator Loss: tf.Tensor(0.41711494, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.69797295, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 14637\n",
+ "Discriminator Loss: tf.Tensor(1.0134158, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.5988379, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 14638\n",
+ "Discriminator Loss: tf.Tensor(0.664056, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.38809666, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 14639\n",
+ "Discriminator Loss: tf.Tensor(0.70178676, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.7093556, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 14640\n",
+ "Discriminator Loss: tf.Tensor(1.1616831, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.061465383, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 14641\n",
+ "Discriminator Loss: tf.Tensor(1.2468488, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.1973677, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 14642\n",
+ "Discriminator Loss: tf.Tensor(1.2011354, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.03900999, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 14643\n",
+ "Discriminator Loss: tf.Tensor(0.56507075, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.2342632, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 14644\n",
+ "Discriminator Loss: tf.Tensor(0.45388013, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.65520376, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 14645\n",
+ "Discriminator Loss: tf.Tensor(0.67810285, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(3.3782666, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 14646\n",
+ "Discriminator Loss: tf.Tensor(0.07403709, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.4357314, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 14647\n",
+ "Discriminator Loss: tf.Tensor(1.2521905, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.7184944, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 14648\n",
+ "Discriminator Loss: tf.Tensor(2.6443584, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.9946887, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 14649\n",
+ "Discriminator Loss: tf.Tensor(1.0466814, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.9139349, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 14650\n",
+ "Discriminator Loss: tf.Tensor(0.7406231, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.5313765, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 14651\n",
+ "Discriminator Loss: tf.Tensor(1.4499993, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.6298303, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 14652\n",
+ "Discriminator Loss: tf.Tensor(1.4838424, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.7391094, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 14653\n",
+ "Discriminator Loss: tf.Tensor(1.174633, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.32915428, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 14654\n",
+ "Discriminator Loss: tf.Tensor(0.9369023, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.4249234, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 14655\n",
+ "Discriminator Loss: tf.Tensor(0.68320125, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.6582985, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 14656\n",
+ "Discriminator Loss: tf.Tensor(0.5917165, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.4894255, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 14657\n",
+ "Discriminator Loss: tf.Tensor(0.63156587, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.67972344, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 14658\n",
+ "Discriminator Loss: tf.Tensor(0.74412894, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.4540287, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 14659\n",
+ "Discriminator Loss: tf.Tensor(2.858572, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-1.6175789, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 14660\n",
+ "Discriminator Loss: tf.Tensor(0.6979523, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.1013817, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 14661\n",
+ "Discriminator Loss: tf.Tensor(1.1443164, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.2055542, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 14662\n",
+ "Discriminator Loss: tf.Tensor(0.37516725, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.2387727, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 14663\n",
+ "Discriminator Loss: tf.Tensor(1.0821472, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.097802825, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 14664\n",
+ "Discriminator Loss: tf.Tensor(0.27953908, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.3885981, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 14665\n",
+ "Discriminator Loss: tf.Tensor(0.60320795, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.7116514, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 14666\n",
+ "Discriminator Loss: tf.Tensor(0.3554449, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.2394707, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 14667\n",
+ "Discriminator Loss: tf.Tensor(0.40168703, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.0470916, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 14668\n",
+ "Discriminator Loss: tf.Tensor(0.17306237, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.96707463, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 14669\n",
+ "Discriminator Loss: tf.Tensor(1.0914512, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.683108, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 14670\n",
+ "Discriminator Loss: tf.Tensor(1.7595093, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.31001186, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 14671\n",
+ "Discriminator Loss: tf.Tensor(1.3430889, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.7279493, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 14672\n",
+ "Discriminator Loss: tf.Tensor(1.0603762, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.07694122, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 14673\n",
+ "Discriminator Loss: tf.Tensor(0.57834625, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.0903347, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 14674\n",
+ "Discriminator Loss: tf.Tensor(0.21395864, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.208029, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 14675\n",
+ "Discriminator Loss: tf.Tensor(0.87446207, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.184207, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 14676\n",
+ "Discriminator Loss: tf.Tensor(0.75021476, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.0784862, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 14677\n",
+ "Discriminator Loss: tf.Tensor(0.582542, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.52112246, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 14678\n",
+ "Discriminator Loss: tf.Tensor(0.31789154, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.3821366, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 14679\n",
+ "Discriminator Loss: tf.Tensor(0.15174478, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.936106, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 14680\n",
+ "Discriminator Loss: tf.Tensor(0.9105092, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.5726311, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 14681\n",
+ "Discriminator Loss: tf.Tensor(0.48051512, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.67697245, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 14682\n",
+ "Discriminator Loss: tf.Tensor(0.24533616, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.527085, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 14683\n",
+ "Discriminator Loss: tf.Tensor(0.3945378, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.93912095, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 14684\n",
+ "Discriminator Loss: tf.Tensor(1.4328917, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.6819184, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 14685\n",
+ "Discriminator Loss: tf.Tensor(1.0040059, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.32635707, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 14686\n",
+ "Discriminator Loss: tf.Tensor(0.6129736, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.8463931, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 14687\n",
+ "Discriminator Loss: tf.Tensor(0.29832667, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.73467654, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 14688\n",
+ "Discriminator Loss: tf.Tensor(0.95115256, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.2630186, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 14689\n",
+ "Discriminator Loss: tf.Tensor(0.15864816, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.2068456, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 14690\n",
+ "Discriminator Loss: tf.Tensor(0.717126, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.3908488, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 14691\n",
+ "Discriminator Loss: tf.Tensor(0.54781425, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.137681, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 14692\n",
+ "Discriminator Loss: tf.Tensor(0.4790706, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.9445594, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 14693\n",
+ "Discriminator Loss: tf.Tensor(0.734095, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.585459, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 14694\n",
+ "Discriminator Loss: tf.Tensor(0.45500317, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.977077, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 14695\n",
+ "Discriminator Loss: tf.Tensor(0.45929134, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.0268192, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 14696\n",
+ "Discriminator Loss: tf.Tensor(1.5435264, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.32965612, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 14697\n",
+ "Discriminator Loss: tf.Tensor(0.7153879, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.3020287, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 14698\n",
+ "Discriminator Loss: tf.Tensor(0.2797214, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.9775956, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 14699\n",
+ "Discriminator Loss: tf.Tensor(1.1495159, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.6148531, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 14700\n",
+ "Discriminator Loss: tf.Tensor(0.72023886, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.55302256, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 14701\n",
+ "Discriminator Loss: tf.Tensor(0.764349, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.7047749, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 14702\n",
+ "Discriminator Loss: tf.Tensor(0.2741431, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.0880798, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 14703\n",
+ "Discriminator Loss: tf.Tensor(1.5953522, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.44820175, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 14704\n",
+ "Discriminator Loss: tf.Tensor(0.688378, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.9875717, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 14705\n",
+ "Discriminator Loss: tf.Tensor(0.72932297, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.45909062, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 14706\n",
+ "Discriminator Loss: tf.Tensor(0.5956401, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.7901573, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 14707\n",
+ "Discriminator Loss: tf.Tensor(0.25887862, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.8264017, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 14708\n",
+ "Discriminator Loss: tf.Tensor(0.86198914, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(3.06025, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 14709\n",
+ "Discriminator Loss: tf.Tensor(0.02973953, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.1764469, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 14710\n",
+ "Discriminator Loss: tf.Tensor(54.289692, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.5927985, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 14711\n",
+ "Discriminator Loss: tf.Tensor(32.221172, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.7875855, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 14712\n",
+ "Discriminator Loss: tf.Tensor(9.126442, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.22821033, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 14713\n",
+ "Discriminator Loss: tf.Tensor(7.0064564, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.33032802, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 14714\n",
+ "Discriminator Loss: tf.Tensor(4.8969936, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.20958734, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 14715\n",
+ "Discriminator Loss: tf.Tensor(3.9836025, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.26197773, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 14716\n",
+ "Discriminator Loss: tf.Tensor(3.5620036, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.26075745, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 14717\n",
+ "Discriminator Loss: tf.Tensor(3.3744996, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.28544518, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 14718\n",
+ "Discriminator Loss: tf.Tensor(3.0818765, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.30300125, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 14719\n",
+ "Discriminator Loss: tf.Tensor(2.8665333, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.33305725, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 14720\n",
+ "Discriminator Loss: tf.Tensor(2.8337626, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.37730312, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 14721\n",
+ "Discriminator Loss: tf.Tensor(2.8553038, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.4333276, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 14722\n",
+ "Discriminator Loss: tf.Tensor(2.6053343, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.5212075, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 14723\n",
+ "Discriminator Loss: tf.Tensor(2.4235733, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.5945621, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 14724\n",
+ "Discriminator Loss: tf.Tensor(2.3297164, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.6501697, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 14725\n",
+ "Discriminator Loss: tf.Tensor(2.3503523, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.69394, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 14726\n",
+ "Discriminator Loss: tf.Tensor(2.4387922, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.5792115, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 14727\n",
+ "Discriminator Loss: tf.Tensor(2.2805243, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.58847576, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 14728\n",
+ "Discriminator Loss: tf.Tensor(2.2482817, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.5038849, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 14729\n",
+ "Discriminator Loss: tf.Tensor(2.088845, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.53166264, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 14730\n",
+ "Discriminator Loss: tf.Tensor(2.075311, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.44911087, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 14731\n",
+ "Discriminator Loss: tf.Tensor(2.145006, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.4598143, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 14732\n",
+ "Discriminator Loss: tf.Tensor(2.1802657, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.49975362, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 14733\n",
+ "Discriminator Loss: tf.Tensor(2.1141644, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.5078297, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 14734\n",
+ "Discriminator Loss: tf.Tensor(2.031919, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.58095425, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 14735\n",
+ "Discriminator Loss: tf.Tensor(2.095285, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.44655165, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 14736\n",
+ "Discriminator Loss: tf.Tensor(2.020922, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.60363775, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 14737\n",
+ "Discriminator Loss: tf.Tensor(2.2291775, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.37630165, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 14738\n",
+ "Discriminator Loss: tf.Tensor(1.8428704, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.6409692, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 14739\n",
+ "Discriminator Loss: tf.Tensor(1.7993745, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.74850416, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 14740\n",
+ "Discriminator Loss: tf.Tensor(1.8742664, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.7801194, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 14741\n",
+ "Discriminator Loss: tf.Tensor(1.9095526, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.70687777, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 14742\n",
+ "Discriminator Loss: tf.Tensor(1.792449, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.6268794, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 14743\n",
+ "Discriminator Loss: tf.Tensor(1.5879574, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.7493231, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 14744\n",
+ "Discriminator Loss: tf.Tensor(1.4294959, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.85796136, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 14745\n",
+ "Discriminator Loss: tf.Tensor(1.4787524, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.8227884, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 14746\n",
+ "Discriminator Loss: tf.Tensor(1.7738042, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.7124327, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 14747\n",
+ "Discriminator Loss: tf.Tensor(2.0235243, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.5292004, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 14748\n",
+ "Discriminator Loss: tf.Tensor(1.746269, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.7732617, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 14749\n",
+ "Discriminator Loss: tf.Tensor(1.6114815, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.75031286, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 14750\n",
+ "Discriminator Loss: tf.Tensor(1.4730811, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.1847135, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 14751\n",
+ "Discriminator Loss: tf.Tensor(2.0437284, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.97467065, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 14752\n",
+ "Discriminator Loss: tf.Tensor(1.7047918, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.33184057, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 14753\n",
+ "Discriminator Loss: tf.Tensor(1.5462815, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.43325654, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 14754\n",
+ "Discriminator Loss: tf.Tensor(1.4270871, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.35437155, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 14755\n",
+ "Discriminator Loss: tf.Tensor(1.6521616, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.23455738, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 14756\n",
+ "Discriminator Loss: tf.Tensor(1.3641894, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.52405083, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 14757\n",
+ "Discriminator Loss: tf.Tensor(1.3354975, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.62904745, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 14758\n",
+ "Discriminator Loss: tf.Tensor(1.1058881, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.8217492, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 14759\n",
+ "Discriminator Loss: tf.Tensor(0.94905186, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.8834484, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 14760\n",
+ "Discriminator Loss: tf.Tensor(1.0624082, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.2718664, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 14761\n",
+ "Discriminator Loss: tf.Tensor(1.8165432, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.7284584, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 14762\n",
+ "Discriminator Loss: tf.Tensor(1.4044944, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.30693913, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 14763\n",
+ "Discriminator Loss: tf.Tensor(1.4233093, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.19402166, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 14764\n",
+ "Discriminator Loss: tf.Tensor(1.0266256, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.69003266, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 14765\n",
+ "Discriminator Loss: tf.Tensor(0.72529113, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.0022058, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 14766\n",
+ "Discriminator Loss: tf.Tensor(1.178468, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.015157291, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 14767\n",
+ "Discriminator Loss: tf.Tensor(1.1727532, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.2860597, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 14768\n",
+ "Discriminator Loss: tf.Tensor(1.2797621, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.077518426, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 14769\n",
+ "Discriminator Loss: tf.Tensor(0.4045866, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.8876932, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 14770\n",
+ "Discriminator Loss: tf.Tensor(0.7620146, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.8353511, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 14771\n",
+ "Discriminator Loss: tf.Tensor(1.8688095, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.6588668, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 14772\n",
+ "Discriminator Loss: tf.Tensor(0.87298477, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.4519433, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 14773\n",
+ "Discriminator Loss: tf.Tensor(0.93635875, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.30452314, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 14774\n",
+ "Discriminator Loss: tf.Tensor(0.544306, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.3786501, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 14775\n",
+ "Discriminator Loss: tf.Tensor(1.1486808, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.06802103, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 14776\n",
+ "Discriminator Loss: tf.Tensor(0.4602714, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.3262912, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 14777\n",
+ "Discriminator Loss: tf.Tensor(1.9611903, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.89466983, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 14778\n",
+ "Discriminator Loss: tf.Tensor(0.64423496, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.2425804, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 14779\n",
+ "Discriminator Loss: tf.Tensor(1.2246792, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.2009135, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 14780\n",
+ "Discriminator Loss: tf.Tensor(0.103708215, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.9217707, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 14781\n",
+ "Discriminator Loss: tf.Tensor(0.3366738, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.3087968, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 14782\n",
+ "Discriminator Loss: tf.Tensor(0.8559234, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.43676707, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 14783\n",
+ "Discriminator Loss: tf.Tensor(0.9445414, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.157834, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 14784\n",
+ "Discriminator Loss: tf.Tensor(0.4923177, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.6842272, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 14785\n",
+ "Discriminator Loss: tf.Tensor(0.48864478, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.1698854, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 14786\n",
+ "Discriminator Loss: tf.Tensor(1.2167832, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.056426346, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 14787\n",
+ "Discriminator Loss: tf.Tensor(1.2426834, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.8527988, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 14788\n",
+ "Discriminator Loss: tf.Tensor(1.0182198, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.13277839, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 14789\n",
+ "Discriminator Loss: tf.Tensor(0.5960341, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.7950913, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 14790\n",
+ "Discriminator Loss: tf.Tensor(0.82692504, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.20156622, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 14791\n",
+ "Discriminator Loss: tf.Tensor(0.6584753, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.1196337, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 14792\n",
+ "Discriminator Loss: tf.Tensor(0.29814324, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.8224904, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 14793\n",
+ "Discriminator Loss: tf.Tensor(0.44563377, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.6813843, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 14794\n",
+ "Discriminator Loss: tf.Tensor(0.16237544, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.8871018, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 14795\n",
+ "Discriminator Loss: tf.Tensor(1.2265531, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.5272534, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 14796\n",
+ "Discriminator Loss: tf.Tensor(0.47191986, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.60486645, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 14797\n",
+ "Discriminator Loss: tf.Tensor(0.5716106, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.869011, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 14798\n",
+ "Discriminator Loss: tf.Tensor(0.086184606, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.3023626, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 14799\n",
+ "Discriminator Loss: tf.Tensor(1.2852262, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.27291024, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 14800\n",
+ "Discriminator Loss: tf.Tensor(1.9650484, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.2619364, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 14801\n",
+ "Discriminator Loss: tf.Tensor(1.3756697, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.107771546, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 14802\n",
+ "Discriminator Loss: tf.Tensor(0.966202, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.3752102, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 14803\n",
+ "Discriminator Loss: tf.Tensor(1.6760523, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.24475689, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 14804\n",
+ "Discriminator Loss: tf.Tensor(0.7884729, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.0745369, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 14805\n",
+ "Discriminator Loss: tf.Tensor(1.7344368, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.46817112, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 14806\n",
+ "Discriminator Loss: tf.Tensor(0.6089288, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.1431369, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 14807\n",
+ "Discriminator Loss: tf.Tensor(1.2005723, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.014174861, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 14808\n",
+ "Discriminator Loss: tf.Tensor(0.5769973, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.4556087, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 14809\n",
+ "Discriminator Loss: tf.Tensor(0.5790006, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.48715827, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 14810\n",
+ "Discriminator Loss: tf.Tensor(1.093334, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.832666, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 14811\n",
+ "Discriminator Loss: tf.Tensor(1.098149, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.016695268, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 14812\n",
+ "Discriminator Loss: tf.Tensor(0.71603644, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.5864002, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 14813\n",
+ "Discriminator Loss: tf.Tensor(0.52774256, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.8097823, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 14814\n",
+ "Discriminator Loss: tf.Tensor(0.54671735, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.0712297, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 14815\n",
+ "Discriminator Loss: tf.Tensor(0.21122499, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.9597979, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 14816\n",
+ "Discriminator Loss: tf.Tensor(0.77419555, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.6842403, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 14817\n",
+ "Discriminator Loss: tf.Tensor(0.044539027, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.1480774, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 14818\n",
+ "Discriminator Loss: tf.Tensor(1.4577551, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.3309184, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 14819\n",
+ "Discriminator Loss: tf.Tensor(1.3528552, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.8224996, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 14820\n",
+ "Discriminator Loss: tf.Tensor(0.8105913, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.42260408, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 14821\n",
+ "Discriminator Loss: tf.Tensor(1.1865687, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.4471408, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 14822\n",
+ "Discriminator Loss: tf.Tensor(1.974697, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.6430858, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 14823\n",
+ "Discriminator Loss: tf.Tensor(0.8637867, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.7657301, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 14824\n",
+ "Discriminator Loss: tf.Tensor(1.0378423, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.6717871, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 14825\n",
+ "Discriminator Loss: tf.Tensor(0.957376, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.39955983, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 14826\n",
+ "Discriminator Loss: tf.Tensor(0.8811331, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.2330539, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 14827\n",
+ "Discriminator Loss: tf.Tensor(0.9434488, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.13634405, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 14828\n",
+ "Discriminator Loss: tf.Tensor(0.8664247, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.3445762, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 14829\n",
+ "Discriminator Loss: tf.Tensor(0.78665125, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.2598435, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 14830\n",
+ "Discriminator Loss: tf.Tensor(0.41217142, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.4652982, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 14831\n",
+ "Discriminator Loss: tf.Tensor(0.7104584, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.39438573, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 14832\n",
+ "Discriminator Loss: tf.Tensor(0.7273177, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.8806801, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 14833\n",
+ "Discriminator Loss: tf.Tensor(0.5753482, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.5943609, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 14834\n",
+ "Discriminator Loss: tf.Tensor(0.9105158, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.7443119, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 14835\n",
+ "Discriminator Loss: tf.Tensor(1.0723673, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.24053557, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 14836\n",
+ "Discriminator Loss: tf.Tensor(0.44286662, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.8266844, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 14837\n",
+ "Discriminator Loss: tf.Tensor(0.45002753, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.6806073, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 14838\n",
+ "Discriminator Loss: tf.Tensor(0.5961959, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.4121585, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 14839\n",
+ "Discriminator Loss: tf.Tensor(0.59898895, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.7446904, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 14840\n",
+ "Discriminator Loss: tf.Tensor(0.60700315, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.2709801, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 14841\n",
+ "Discriminator Loss: tf.Tensor(0.42822912, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.6382774, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 14842\n",
+ "Discriminator Loss: tf.Tensor(0.59124213, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.9861069, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 14843\n",
+ "Discriminator Loss: tf.Tensor(0.31082785, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.9421837, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 14844\n",
+ "Discriminator Loss: tf.Tensor(0.56387746, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.396465, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 14845\n",
+ "Discriminator Loss: tf.Tensor(1.3043897, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.16245484, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 14846\n",
+ "Discriminator Loss: tf.Tensor(0.6737667, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.6080718, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 14847\n",
+ "Discriminator Loss: tf.Tensor(0.23086151, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.0268365, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 14848\n",
+ "Discriminator Loss: tf.Tensor(0.6828865, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.188203, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 14849\n",
+ "Discriminator Loss: tf.Tensor(0.67976165, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.41946173, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 14850\n",
+ "Discriminator Loss: tf.Tensor(0.7633696, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(3.0162137, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 14851\n",
+ "Discriminator Loss: tf.Tensor(0.32875186, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.2627163, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 14852\n",
+ "Discriminator Loss: tf.Tensor(0.86619496, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.20808707, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 14853\n",
+ "Discriminator Loss: tf.Tensor(0.7425529, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(3.0091143, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 14854\n",
+ "Discriminator Loss: tf.Tensor(0.20800164, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.0585951, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 14855\n",
+ "Discriminator Loss: tf.Tensor(0.2735346, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.83839864, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 14856\n",
+ "Discriminator Loss: tf.Tensor(1.2182459, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(3.1427176, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 14857\n",
+ "Discriminator Loss: tf.Tensor(1.1590406, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.20831048, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 14858\n",
+ "Discriminator Loss: tf.Tensor(0.41332245, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.3371681, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 14859\n",
+ "Discriminator Loss: tf.Tensor(1.8752893, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.7672705, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 14860\n",
+ "Discriminator Loss: tf.Tensor(0.6122753, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.8273517, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 14861\n",
+ "Discriminator Loss: tf.Tensor(1.4314941, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.34309492, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 14862\n",
+ "Discriminator Loss: tf.Tensor(0.453537, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.9450339, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 14863\n",
+ "Discriminator Loss: tf.Tensor(0.7165108, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.34986627, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 14864\n",
+ "Discriminator Loss: tf.Tensor(1.0368518, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.7640057, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 14865\n",
+ "Discriminator Loss: tf.Tensor(1.0166808, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.16096881, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 14866\n",
+ "Discriminator Loss: tf.Tensor(1.3307129, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.1342092, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 14867\n",
+ "Discriminator Loss: tf.Tensor(0.7704204, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.4874443, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 14868\n",
+ "Discriminator Loss: tf.Tensor(0.7309038, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.3235116, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 14869\n",
+ "Discriminator Loss: tf.Tensor(0.51024115, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.62711203, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 14870\n",
+ "Discriminator Loss: tf.Tensor(1.0733666, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.802845, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 14871\n",
+ "Discriminator Loss: tf.Tensor(0.356096, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.2587898, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 14872\n",
+ "Discriminator Loss: tf.Tensor(0.48492208, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.60926723, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 14873\n",
+ "Discriminator Loss: tf.Tensor(0.667807, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.766627, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 14874\n",
+ "Discriminator Loss: tf.Tensor(0.18252894, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.0553439, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 14875\n",
+ "Discriminator Loss: tf.Tensor(1.3144546, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.15929897, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 14876\n",
+ "Discriminator Loss: tf.Tensor(0.5511376, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.2901056, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 14877\n",
+ "Discriminator Loss: tf.Tensor(0.33408567, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.89743185, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 14878\n",
+ "Discriminator Loss: tf.Tensor(0.7831539, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.9383714, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 14879\n",
+ "Discriminator Loss: tf.Tensor(0.44564965, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.4279075, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 14880\n",
+ "Discriminator Loss: tf.Tensor(1.3456645, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.012965012, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 14881\n",
+ "Discriminator Loss: tf.Tensor(0.7496408, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.160606, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 14882\n",
+ "Discriminator Loss: tf.Tensor(0.5134189, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.667896, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 14883\n",
+ "Discriminator Loss: tf.Tensor(0.6533421, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.6598608, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 14884\n",
+ "Discriminator Loss: tf.Tensor(0.39620748, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.88425, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 14885\n",
+ "Discriminator Loss: tf.Tensor(0.61241055, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.2047632, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 14886\n",
+ "Discriminator Loss: tf.Tensor(0.7558479, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.41311595, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 14887\n",
+ "Discriminator Loss: tf.Tensor(0.699927, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(3.5499268, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 14888\n",
+ "Discriminator Loss: tf.Tensor(0.29358485, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.7558943, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 14889\n",
+ "Discriminator Loss: tf.Tensor(1.4290425, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.2472232, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 14890\n",
+ "Discriminator Loss: tf.Tensor(0.75252444, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.5097432, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 14891\n",
+ "Discriminator Loss: tf.Tensor(0.6054904, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.57337856, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 14892\n",
+ "Discriminator Loss: tf.Tensor(1.1877635, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(3.3736775, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 14893\n",
+ "Discriminator Loss: tf.Tensor(0.14166959, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.9412753, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 14894\n",
+ "Discriminator Loss: tf.Tensor(1.1686566, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(3.2380378, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 14895\n",
+ "Discriminator Loss: tf.Tensor(0.12617423, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.4963838, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 14896\n",
+ "Discriminator Loss: tf.Tensor(0.5241859, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.60464746, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 14897\n",
+ "Discriminator Loss: tf.Tensor(0.98592186, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.6642182, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 14898\n",
+ "Discriminator Loss: tf.Tensor(0.26395774, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.0622444, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 14899\n",
+ "Discriminator Loss: tf.Tensor(0.31135297, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.0994424, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 14900\n",
+ "Discriminator Loss: tf.Tensor(0.6151915, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.4772167, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 14901\n",
+ "Discriminator Loss: tf.Tensor(0.6902046, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.6454282, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 14902\n",
+ "Discriminator Loss: tf.Tensor(0.3117796, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.0435961, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 14903\n",
+ "Discriminator Loss: tf.Tensor(0.119724825, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.3808874, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 14904\n",
+ "Discriminator Loss: tf.Tensor(1.1648107, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.17180772, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 14905\n",
+ "Discriminator Loss: tf.Tensor(1.2334741, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(3.4176075, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 14906\n",
+ "Discriminator Loss: tf.Tensor(0.6570042, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.70101064, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 14907\n",
+ "Discriminator Loss: tf.Tensor(0.76359534, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.7777884, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 14908\n",
+ "Discriminator Loss: tf.Tensor(0.5155045, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.7768157, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 14909\n",
+ "Discriminator Loss: tf.Tensor(0.43360397, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(3.0512607, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 14910\n",
+ "Discriminator Loss: tf.Tensor(0.5919485, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.0225037, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 14911\n",
+ "Discriminator Loss: tf.Tensor(0.96773434, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.457097, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 14912\n",
+ "Discriminator Loss: tf.Tensor(1.6516671, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.5897525, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 14913\n",
+ "Discriminator Loss: tf.Tensor(0.4842709, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.8414402, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 14914\n",
+ "Discriminator Loss: tf.Tensor(0.15528418, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.0107328, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 14915\n",
+ "Discriminator Loss: tf.Tensor(0.5315267, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.8951586, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 14916\n",
+ "Discriminator Loss: tf.Tensor(0.18851072, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.8893158, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 14917\n",
+ "Discriminator Loss: tf.Tensor(1.1693506, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(3.180949, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 14918\n",
+ "Discriminator Loss: tf.Tensor(0.44965148, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.72142196, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 14919\n",
+ "Discriminator Loss: tf.Tensor(0.9128593, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.504487, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 14920\n",
+ "Discriminator Loss: tf.Tensor(0.11274186, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.3934697, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 14921\n",
+ "Discriminator Loss: tf.Tensor(0.6039711, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.5506032, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 14922\n",
+ "Discriminator Loss: tf.Tensor(1.1559902, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(3.3843572, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 14923\n",
+ "Discriminator Loss: tf.Tensor(0.18519738, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.3076428, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 14924\n",
+ "Discriminator Loss: tf.Tensor(1.0527068, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.10857958, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 14925\n",
+ "Discriminator Loss: tf.Tensor(1.0619962, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.905264, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 14926\n",
+ "Discriminator Loss: tf.Tensor(0.25008938, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.1497284, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 14927\n",
+ "Discriminator Loss: tf.Tensor(1.1010437, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.20236443, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 14928\n",
+ "Discriminator Loss: tf.Tensor(0.72824323, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.5542386, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 14929\n",
+ "Discriminator Loss: tf.Tensor(0.26107487, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.79914874, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 14930\n",
+ "Discriminator Loss: tf.Tensor(0.42872083, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(3.252222, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 14931\n",
+ "Discriminator Loss: tf.Tensor(0.49926746, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.0038382, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 14932\n",
+ "Discriminator Loss: tf.Tensor(0.32621187, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.4153084, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 14933\n",
+ "Discriminator Loss: tf.Tensor(2.3132217, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-1.1684328, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 14934\n",
+ "Discriminator Loss: tf.Tensor(1.6701305, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.6988475, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 14935\n",
+ "Discriminator Loss: tf.Tensor(0.7590128, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.49055544, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 14936\n",
+ "Discriminator Loss: tf.Tensor(1.014087, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.173405, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 14937\n",
+ "Discriminator Loss: tf.Tensor(1.4146026, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.22700088, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 14938\n",
+ "Discriminator Loss: tf.Tensor(0.9753664, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.7823433, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 14939\n",
+ "Discriminator Loss: tf.Tensor(0.6949126, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.4932226, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 14940\n",
+ "Discriminator Loss: tf.Tensor(0.48924792, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.8606458, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 14941\n",
+ "Discriminator Loss: tf.Tensor(0.48114508, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.65479064, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 14942\n",
+ "Discriminator Loss: tf.Tensor(0.6620468, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.5496504, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 14943\n",
+ "Discriminator Loss: tf.Tensor(0.14367029, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.98267865, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 14944\n",
+ "Discriminator Loss: tf.Tensor(0.52178663, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.3472078, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 14945\n",
+ "Discriminator Loss: tf.Tensor(0.2965682, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.1512783, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 14946\n",
+ "Discriminator Loss: tf.Tensor(1.1729331, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.038012613, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 14947\n",
+ "Discriminator Loss: tf.Tensor(0.5007751, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.1567817, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 14948\n",
+ "Discriminator Loss: tf.Tensor(0.3390091, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.1088716, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 14949\n",
+ "Discriminator Loss: tf.Tensor(0.8220329, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.24895124, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 14950\n",
+ "Discriminator Loss: tf.Tensor(1.0123284, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.8195693, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 14951\n",
+ "Discriminator Loss: tf.Tensor(0.35102874, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.2382885, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 14952\n",
+ "Discriminator Loss: tf.Tensor(1.3286453, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.1680252, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 14953\n",
+ "Discriminator Loss: tf.Tensor(0.6870384, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.1316547, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 14954\n",
+ "Discriminator Loss: tf.Tensor(0.33366373, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.9181836, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 14955\n",
+ "Discriminator Loss: tf.Tensor(0.79145116, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.8186486, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 14956\n",
+ "Discriminator Loss: tf.Tensor(0.13534778, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.98105717, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 14957\n",
+ "Discriminator Loss: tf.Tensor(0.62552357, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.1015108, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 14958\n",
+ "Discriminator Loss: tf.Tensor(0.61845195, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.47804853, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 14959\n",
+ "Discriminator Loss: tf.Tensor(0.57773566, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.7711163, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 14960\n",
+ "Discriminator Loss: tf.Tensor(0.38166067, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.3287816, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 14961\n",
+ "Discriminator Loss: tf.Tensor(1.1787434, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.15460156, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 14962\n",
+ "Discriminator Loss: tf.Tensor(0.645733, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.6709206, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 14963\n",
+ "Discriminator Loss: tf.Tensor(0.21215598, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.9108282, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 14964\n",
+ "Discriminator Loss: tf.Tensor(0.69684505, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(3.0372353, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 14965\n",
+ "Discriminator Loss: tf.Tensor(0.026097868, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.0896516, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 14966\n",
+ "Discriminator Loss: tf.Tensor(0.6744148, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.6297026, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 14967\n",
+ "Discriminator Loss: tf.Tensor(1.2014971, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.7464679, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 14968\n",
+ "Discriminator Loss: tf.Tensor(2.2737317, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.8808377, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 14969\n",
+ "Discriminator Loss: tf.Tensor(1.0270054, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.6944522, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 14970\n",
+ "Discriminator Loss: tf.Tensor(0.3591896, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.7974275, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 14971\n",
+ "Discriminator Loss: tf.Tensor(0.3868084, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.2495538, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 14972\n",
+ "Discriminator Loss: tf.Tensor(0.8838886, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.6896773, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 14973\n",
+ "Discriminator Loss: tf.Tensor(0.89506215, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.0211816, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 14974\n",
+ "Discriminator Loss: tf.Tensor(1.166497, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.49508202, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 14975\n",
+ "Discriminator Loss: tf.Tensor(1.0917861, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.6774926, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 14976\n",
+ "Discriminator Loss: tf.Tensor(1.2210833, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.09747738, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 14977\n",
+ "Discriminator Loss: tf.Tensor(1.2463919, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.1959227, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 14978\n",
+ "Discriminator Loss: tf.Tensor(1.4579606, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.034374233, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 14979\n",
+ "Discriminator Loss: tf.Tensor(0.59606045, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.0182213, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 14980\n",
+ "Discriminator Loss: tf.Tensor(0.86090887, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.35467932, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 14981\n",
+ "Discriminator Loss: tf.Tensor(0.9755952, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.6886483, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 14982\n",
+ "Discriminator Loss: tf.Tensor(0.64657253, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.5193352, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 14983\n",
+ "Discriminator Loss: tf.Tensor(0.53923047, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.9228321, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 14984\n",
+ "Discriminator Loss: tf.Tensor(0.37191093, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.73080397, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 14985\n",
+ "Discriminator Loss: tf.Tensor(0.7266645, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.3196533, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 14986\n",
+ "Discriminator Loss: tf.Tensor(0.29715732, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.112539, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 14987\n",
+ "Discriminator Loss: tf.Tensor(1.2239367, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.051385622, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 14988\n",
+ "Discriminator Loss: tf.Tensor(0.41188568, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.8170971, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 14989\n",
+ "Discriminator Loss: tf.Tensor(0.8786257, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.34475222, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 14990\n",
+ "Discriminator Loss: tf.Tensor(0.89071345, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.5764908, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 14991\n",
+ "Discriminator Loss: tf.Tensor(1.304674, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.19544654, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 14992\n",
+ "Discriminator Loss: tf.Tensor(0.7520817, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.594572, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 14993\n",
+ "Discriminator Loss: tf.Tensor(1.0005814, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.041427407, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 14994\n",
+ "Discriminator Loss: tf.Tensor(0.5267917, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.5182348, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 14995\n",
+ "Discriminator Loss: tf.Tensor(1.217149, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.17730792, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 14996\n",
+ "Discriminator Loss: tf.Tensor(0.5287139, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.6420293, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 14997\n",
+ "Discriminator Loss: tf.Tensor(1.2573128, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.15898179, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 14998\n",
+ "Discriminator Loss: tf.Tensor(0.8232958, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.7518066, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 14999\n",
+ "Discriminator Loss: tf.Tensor(1.2647812, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.12945552, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 15000\n",
+ "Discriminator Loss: tf.Tensor(0.42324397, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.5512289, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 15001\n",
+ "Discriminator Loss: tf.Tensor(0.6164209, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.71700686, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 15002\n",
+ "Discriminator Loss: tf.Tensor(0.52037084, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.3057897, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 15003\n",
+ "Discriminator Loss: tf.Tensor(0.8205133, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.33121875, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 15004\n",
+ "Discriminator Loss: tf.Tensor(0.90226126, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.5506175, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 15005\n",
+ "Discriminator Loss: tf.Tensor(0.24454884, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.0734867, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 15006\n",
+ "Discriminator Loss: tf.Tensor(0.25656775, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.0054886, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 15007\n",
+ "Discriminator Loss: tf.Tensor(0.71293706, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.8460115, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 15008\n",
+ "Discriminator Loss: tf.Tensor(0.5428817, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.61763877, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 15009\n",
+ "Discriminator Loss: tf.Tensor(0.55152375, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.4999466, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 15010\n",
+ "Discriminator Loss: tf.Tensor(0.35695678, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.97953635, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 15011\n",
+ "Discriminator Loss: tf.Tensor(0.4937231, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.7358866, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 15012\n",
+ "Discriminator Loss: tf.Tensor(0.79396516, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.27848074, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 15013\n",
+ "Discriminator Loss: tf.Tensor(1.2361141, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.9151447, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 15014\n",
+ "Discriminator Loss: tf.Tensor(0.60928744, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.4066782, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 15015\n",
+ "Discriminator Loss: tf.Tensor(0.5122789, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.8825836, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 15016\n",
+ "Discriminator Loss: tf.Tensor(0.24789971, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.0978408, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 15017\n",
+ "Discriminator Loss: tf.Tensor(0.28173423, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.8130757, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 15018\n",
+ "Discriminator Loss: tf.Tensor(0.8915712, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(4.3337917, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 15019\n",
+ "Discriminator Loss: tf.Tensor(0.091712356, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.4530596, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 15020\n",
+ "Discriminator Loss: tf.Tensor(0.75907433, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.3593854, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 15021\n",
+ "Discriminator Loss: tf.Tensor(1.0641308, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.97538, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 15022\n",
+ "Discriminator Loss: tf.Tensor(0.19854784, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.0665048, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 15023\n",
+ "Discriminator Loss: tf.Tensor(1.4566811, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.40751123, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 15024\n",
+ "Discriminator Loss: tf.Tensor(1.2768545, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.273166, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 15025\n",
+ "Discriminator Loss: tf.Tensor(0.87186295, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.16635358, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 15026\n",
+ "Discriminator Loss: tf.Tensor(0.82234526, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.4023263, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 15027\n",
+ "Discriminator Loss: tf.Tensor(0.6248836, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.40758422, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 15028\n",
+ "Discriminator Loss: tf.Tensor(0.9759698, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.8210309, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 15029\n",
+ "Discriminator Loss: tf.Tensor(0.16246998, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.0731677, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 15030\n",
+ "Discriminator Loss: tf.Tensor(0.8316357, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.2256834, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 15031\n",
+ "Discriminator Loss: tf.Tensor(1.5043486, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.8634593, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 15032\n",
+ "Discriminator Loss: tf.Tensor(0.23227748, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.92169696, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 15033\n",
+ "Discriminator Loss: tf.Tensor(0.5976341, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.5515716, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 15034\n",
+ "Discriminator Loss: tf.Tensor(0.31122562, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.2359861, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 15035\n",
+ "Discriminator Loss: tf.Tensor(0.6959821, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.4217039, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 15036\n",
+ "Discriminator Loss: tf.Tensor(0.8876753, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.737628, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 15037\n",
+ "Discriminator Loss: tf.Tensor(0.097225785, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.3270231, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 15038\n",
+ "Discriminator Loss: tf.Tensor(0.26402122, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.0104929, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 15039\n",
+ "Discriminator Loss: tf.Tensor(0.35399896, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.5711427, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 15040\n",
+ "Discriminator Loss: tf.Tensor(0.9588612, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.07136706, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 15041\n",
+ "Discriminator Loss: tf.Tensor(1.3570575, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.7910583, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 15042\n",
+ "Discriminator Loss: tf.Tensor(0.37886706, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.0025808, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 15043\n",
+ "Discriminator Loss: tf.Tensor(0.24367848, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.1590536, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 15044\n",
+ "Discriminator Loss: tf.Tensor(0.15121819, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.5586427, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 15045\n",
+ "Discriminator Loss: tf.Tensor(0.1563631, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.1791462, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 15046\n",
+ "Discriminator Loss: tf.Tensor(0.5089589, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.270561, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 15047\n",
+ "Discriminator Loss: tf.Tensor(1.0213811, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.011444737, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 15048\n",
+ "Discriminator Loss: tf.Tensor(0.6661846, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.8861938, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 15049\n",
+ "Discriminator Loss: tf.Tensor(0.96425444, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.5105524, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 15050\n",
+ "Discriminator Loss: tf.Tensor(0.24924862, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.4512522, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 15051\n",
+ "Discriminator Loss: tf.Tensor(0.5707535, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.6435467, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 15052\n",
+ "Discriminator Loss: tf.Tensor(0.94434416, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.20021695, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 15053\n",
+ "Discriminator Loss: tf.Tensor(1.047045, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.364667, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 15054\n",
+ "Discriminator Loss: tf.Tensor(0.18175237, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.91598105, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 15055\n",
+ "Discriminator Loss: tf.Tensor(0.6065872, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.7323627, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 15056\n",
+ "Discriminator Loss: tf.Tensor(0.38322327, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.009847, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 15057\n",
+ "Discriminator Loss: tf.Tensor(0.57404995, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.4620695, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 15058\n",
+ "Discriminator Loss: tf.Tensor(1.4010478, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.36407232, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 15059\n",
+ "Discriminator Loss: tf.Tensor(1.1254447, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.061383, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 15060\n",
+ "Discriminator Loss: tf.Tensor(0.5844064, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.48121524, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 15061\n",
+ "Discriminator Loss: tf.Tensor(0.7609582, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.8989812, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 15062\n",
+ "Discriminator Loss: tf.Tensor(0.73248816, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.34921697, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 15063\n",
+ "Discriminator Loss: tf.Tensor(0.51803434, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.6029394, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 15064\n",
+ "Discriminator Loss: tf.Tensor(0.2314986, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.9782888, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 15065\n",
+ "Discriminator Loss: tf.Tensor(0.40097624, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.3840368, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 15066\n",
+ "Discriminator Loss: tf.Tensor(0.20665894, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.1946694, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 15067\n",
+ "Discriminator Loss: tf.Tensor(0.98726636, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.075725764, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 15068\n",
+ "Discriminator Loss: tf.Tensor(1.5921835, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.7095115, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 15069\n",
+ "Discriminator Loss: tf.Tensor(0.43009976, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.75831133, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 15070\n",
+ "Discriminator Loss: tf.Tensor(0.76251745, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.5351074, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 15071\n",
+ "Discriminator Loss: tf.Tensor(0.08776617, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.1349683, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 15072\n",
+ "Discriminator Loss: tf.Tensor(0.39384153, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.79444885, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 15073\n",
+ "Discriminator Loss: tf.Tensor(0.86760914, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.3428648, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 15074\n",
+ "Discriminator Loss: tf.Tensor(0.3346302, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.87799263, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 15075\n",
+ "Discriminator Loss: tf.Tensor(1.3959266, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(3.3090312, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 15076\n",
+ "Discriminator Loss: tf.Tensor(0.64942557, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.1367307, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 15077\n",
+ "Discriminator Loss: tf.Tensor(1.069626, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.0038439743, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 15078\n",
+ "Discriminator Loss: tf.Tensor(0.74711573, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.0463111, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 15079\n",
+ "Discriminator Loss: tf.Tensor(0.2141752, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.1659007, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 15080\n",
+ "Discriminator Loss: tf.Tensor(1.1104256, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.0074737817, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 15081\n",
+ "Discriminator Loss: tf.Tensor(0.2723708, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.1726623, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 15082\n",
+ "Discriminator Loss: tf.Tensor(0.3875294, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.2087363, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 15083\n",
+ "Discriminator Loss: tf.Tensor(0.9342659, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.20951678, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 15084\n",
+ "Discriminator Loss: tf.Tensor(0.8541436, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.6066167, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 15085\n",
+ "Discriminator Loss: tf.Tensor(0.22656402, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.9864569, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 15086\n",
+ "Discriminator Loss: tf.Tensor(0.07574986, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.6577493, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 15087\n",
+ "Discriminator Loss: tf.Tensor(1.391856, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.3366817, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 15088\n",
+ "Discriminator Loss: tf.Tensor(1.4997798, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.9250014, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 15089\n",
+ "Discriminator Loss: tf.Tensor(0.7672092, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.6499038, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 15090\n",
+ "Discriminator Loss: tf.Tensor(1.0074427, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.9088472, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 15091\n",
+ "Discriminator Loss: tf.Tensor(0.8246491, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.30345967, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 15092\n",
+ "Discriminator Loss: tf.Tensor(0.80413175, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.6881965, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 15093\n",
+ "Discriminator Loss: tf.Tensor(0.32169476, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.8555651, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 15094\n",
+ "Discriminator Loss: tf.Tensor(0.4608158, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.403053, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 15095\n",
+ "Discriminator Loss: tf.Tensor(0.36261776, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.9686837, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 15096\n",
+ "Discriminator Loss: tf.Tensor(1.1081171, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.2475429, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 15097\n",
+ "Discriminator Loss: tf.Tensor(0.86451864, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.18950266, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 15098\n",
+ "Discriminator Loss: tf.Tensor(0.77873933, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.9209137, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 15099\n",
+ "Discriminator Loss: tf.Tensor(0.42212704, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.62142223, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 15100\n",
+ "Discriminator Loss: tf.Tensor(0.5650171, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.2614114, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 15101\n",
+ "Discriminator Loss: tf.Tensor(0.20341155, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.94640875, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 15102\n",
+ "Discriminator Loss: tf.Tensor(0.9630263, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.3844612, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 15103\n",
+ "Discriminator Loss: tf.Tensor(0.8361592, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.41805574, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 15104\n",
+ "Discriminator Loss: tf.Tensor(0.9315257, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.2732594, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 15105\n",
+ "Discriminator Loss: tf.Tensor(1.0183401, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.050092947, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 15106\n",
+ "Discriminator Loss: tf.Tensor(0.63230723, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.1201866, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 15107\n",
+ "Discriminator Loss: tf.Tensor(0.20815197, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.99122787, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 15108\n",
+ "Discriminator Loss: tf.Tensor(0.21686815, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.5089357, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 15109\n",
+ "Discriminator Loss: tf.Tensor(0.33511338, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.9376897, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 15110\n",
+ "Discriminator Loss: tf.Tensor(0.7161343, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(3.0244913, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 15111\n",
+ "Discriminator Loss: tf.Tensor(0.41880798, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.5813179, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 15112\n",
+ "Discriminator Loss: tf.Tensor(1.1451768, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.11539108, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 15113\n",
+ "Discriminator Loss: tf.Tensor(1.2724237, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.4375446, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 15114\n",
+ "Discriminator Loss: tf.Tensor(0.7007282, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.5676661, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 15115\n",
+ "Discriminator Loss: tf.Tensor(0.9106072, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.1589937, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 15116\n",
+ "Discriminator Loss: tf.Tensor(0.7771449, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.2640228, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 15117\n",
+ "Discriminator Loss: tf.Tensor(0.46805322, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.2652218, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 15118\n",
+ "Discriminator Loss: tf.Tensor(0.046482515, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.1770244, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 15119\n",
+ "Discriminator Loss: tf.Tensor(68.406784, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.59174156, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 15120\n",
+ "Discriminator Loss: tf.Tensor(20.237547, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.2210899, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 15121\n",
+ "Discriminator Loss: tf.Tensor(7.466055, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.21506555, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 15122\n",
+ "Discriminator Loss: tf.Tensor(5.332654, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.31168404, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 15123\n",
+ "Discriminator Loss: tf.Tensor(4.509216, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.33814156, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 15124\n",
+ "Discriminator Loss: tf.Tensor(4.094932, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.4228034, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 15125\n",
+ "Discriminator Loss: tf.Tensor(3.1998465, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.3986132, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 15126\n",
+ "Discriminator Loss: tf.Tensor(3.0186076, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.38878664, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 15127\n",
+ "Discriminator Loss: tf.Tensor(2.8821287, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.36667255, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 15128\n",
+ "Discriminator Loss: tf.Tensor(2.7856681, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.3765174, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 15129\n",
+ "Discriminator Loss: tf.Tensor(2.5706513, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.35870096, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 15130\n",
+ "Discriminator Loss: tf.Tensor(2.39823, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.37179527, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 15131\n",
+ "Discriminator Loss: tf.Tensor(2.4370365, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.3927753, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 15132\n",
+ "Discriminator Loss: tf.Tensor(2.6763663, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.43277264, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 15133\n",
+ "Discriminator Loss: tf.Tensor(2.2118723, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.47787377, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 15134\n",
+ "Discriminator Loss: tf.Tensor(2.2070537, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.53746045, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 15135\n",
+ "Discriminator Loss: tf.Tensor(2.1471908, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.51874983, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 15136\n",
+ "Discriminator Loss: tf.Tensor(2.138287, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.56580955, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 15137\n",
+ "Discriminator Loss: tf.Tensor(2.0222182, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.5013446, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 15138\n",
+ "Discriminator Loss: tf.Tensor(2.1465535, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.6122725, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 15139\n",
+ "Discriminator Loss: tf.Tensor(2.019061, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.43838367, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 15140\n",
+ "Discriminator Loss: tf.Tensor(2.014291, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.5897301, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 15141\n",
+ "Discriminator Loss: tf.Tensor(1.9961151, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.44321942, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 15142\n",
+ "Discriminator Loss: tf.Tensor(1.9214997, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.5661306, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 15143\n",
+ "Discriminator Loss: tf.Tensor(1.9525093, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.4983717, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 15144\n",
+ "Discriminator Loss: tf.Tensor(1.9831876, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.5473551, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 15145\n",
+ "Discriminator Loss: tf.Tensor(1.8836154, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.49921298, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 15146\n",
+ "Discriminator Loss: tf.Tensor(1.832081, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.62895584, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 15147\n",
+ "Discriminator Loss: tf.Tensor(1.7462478, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.7868562, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 15148\n",
+ "Discriminator Loss: tf.Tensor(1.8121142, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.64500195, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 15149\n",
+ "Discriminator Loss: tf.Tensor(1.7263789, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.9509298, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 15150\n",
+ "Discriminator Loss: tf.Tensor(1.8059462, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.44353473, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 15151\n",
+ "Discriminator Loss: tf.Tensor(1.7673407, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.5472707, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 15152\n",
+ "Discriminator Loss: tf.Tensor(2.0044181, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.48187938, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 15153\n",
+ "Discriminator Loss: tf.Tensor(1.6966505, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.71524477, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 15154\n",
+ "Discriminator Loss: tf.Tensor(1.5956177, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.6928721, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 15155\n",
+ "Discriminator Loss: tf.Tensor(1.6140355, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.39679435, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 15156\n",
+ "Discriminator Loss: tf.Tensor(1.5963974, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.9561791, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 15157\n",
+ "Discriminator Loss: tf.Tensor(1.5251456, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.88927794, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 15158\n",
+ "Discriminator Loss: tf.Tensor(2.8928518, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.7848574, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 15159\n",
+ "Discriminator Loss: tf.Tensor(2.042957, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.6904991, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 15160\n",
+ "Discriminator Loss: tf.Tensor(1.7942336, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.25037444, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 15161\n",
+ "Discriminator Loss: tf.Tensor(1.6116911, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.061840296, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 15162\n",
+ "Discriminator Loss: tf.Tensor(1.5591503, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.09718784, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 15163\n",
+ "Discriminator Loss: tf.Tensor(1.4706417, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.13923192, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 15164\n",
+ "Discriminator Loss: tf.Tensor(1.5529625, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.0018187086, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 15165\n",
+ "Discriminator Loss: tf.Tensor(1.320669, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.2769782, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 15166\n",
+ "Discriminator Loss: tf.Tensor(1.4351499, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.037662994, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 15167\n",
+ "Discriminator Loss: tf.Tensor(1.4699256, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.16691272, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 15168\n",
+ "Discriminator Loss: tf.Tensor(1.3438456, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.7242437, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 15169\n",
+ "Discriminator Loss: tf.Tensor(1.1469526, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.77660006, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 15170\n",
+ "Discriminator Loss: tf.Tensor(0.91605127, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.178851, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 15171\n",
+ "Discriminator Loss: tf.Tensor(2.4293609, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-1.313214, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 15172\n",
+ "Discriminator Loss: tf.Tensor(1.4747543, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.17532283, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 15173\n",
+ "Discriminator Loss: tf.Tensor(1.0171919, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.645611, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 15174\n",
+ "Discriminator Loss: tf.Tensor(0.6737647, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.1981586, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 15175\n",
+ "Discriminator Loss: tf.Tensor(1.3948064, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.19974579, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 15176\n",
+ "Discriminator Loss: tf.Tensor(0.5537819, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.88249546, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 15177\n",
+ "Discriminator Loss: tf.Tensor(0.49833128, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.1745844, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 15178\n",
+ "Discriminator Loss: tf.Tensor(1.7416005, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.5793319, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 15179\n",
+ "Discriminator Loss: tf.Tensor(1.0050896, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.1002798, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 15180\n",
+ "Discriminator Loss: tf.Tensor(1.1891116, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.0015821151, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 15181\n",
+ "Discriminator Loss: tf.Tensor(0.80356663, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.3950562, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 15182\n",
+ "Discriminator Loss: tf.Tensor(1.1079094, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.018101288, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 15183\n",
+ "Discriminator Loss: tf.Tensor(0.3722878, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.9860684, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 15184\n",
+ "Discriminator Loss: tf.Tensor(0.4076633, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.6136065, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 15185\n",
+ "Discriminator Loss: tf.Tensor(1.0296999, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.10765139, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 15186\n",
+ "Discriminator Loss: tf.Tensor(0.7298404, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.8787113, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 15187\n",
+ "Discriminator Loss: tf.Tensor(0.7335143, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.39313126, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 15188\n",
+ "Discriminator Loss: tf.Tensor(0.87165016, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.9569794, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 15189\n",
+ "Discriminator Loss: tf.Tensor(0.6252552, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.6166633, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 15190\n",
+ "Discriminator Loss: tf.Tensor(0.42497975, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.7970036, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 15191\n",
+ "Discriminator Loss: tf.Tensor(0.6978787, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.36289135, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 15192\n",
+ "Discriminator Loss: tf.Tensor(0.30340022, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.0027363, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 15193\n",
+ "Discriminator Loss: tf.Tensor(0.69970804, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.5563076, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 15194\n",
+ "Discriminator Loss: tf.Tensor(0.579057, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.3652735, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 15195\n",
+ "Discriminator Loss: tf.Tensor(0.48606583, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.7965257, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 15196\n",
+ "Discriminator Loss: tf.Tensor(0.5186914, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.6831484, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 15197\n",
+ "Discriminator Loss: tf.Tensor(1.2327056, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.20798637, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 15198\n",
+ "Discriminator Loss: tf.Tensor(1.2021537, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.6208527, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 15199\n",
+ "Discriminator Loss: tf.Tensor(0.49598056, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.75818515, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 15200\n",
+ "Discriminator Loss: tf.Tensor(0.60254335, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.7615856, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 15201\n",
+ "Discriminator Loss: tf.Tensor(1.2754077, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.0478927, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 15202\n",
+ "Discriminator Loss: tf.Tensor(0.20376518, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.135009, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 15203\n",
+ "Discriminator Loss: tf.Tensor(0.09131905, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.0108167, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 15204\n",
+ "Discriminator Loss: tf.Tensor(0.36699027, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.4373456, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 15205\n",
+ "Discriminator Loss: tf.Tensor(0.98228234, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.290237, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 15206\n",
+ "Discriminator Loss: tf.Tensor(0.5199077, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.533755, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 15207\n",
+ "Discriminator Loss: tf.Tensor(1.2896236, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.40095234, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 15208\n",
+ "Discriminator Loss: tf.Tensor(1.1854492, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.0316632, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 15209\n",
+ "Discriminator Loss: tf.Tensor(1.5167239, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.46911404, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 15210\n",
+ "Discriminator Loss: tf.Tensor(0.6678621, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.392423, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 15211\n",
+ "Discriminator Loss: tf.Tensor(0.9773736, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.31427857, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 15212\n",
+ "Discriminator Loss: tf.Tensor(0.53707093, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.0324714, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 15213\n",
+ "Discriminator Loss: tf.Tensor(0.37034062, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.0542608, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 15214\n",
+ "Discriminator Loss: tf.Tensor(0.59176004, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.5747184, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 15215\n",
+ "Discriminator Loss: tf.Tensor(1.375412, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.965271, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 15216\n",
+ "Discriminator Loss: tf.Tensor(0.21691325, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.0523974, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 15217\n",
+ "Discriminator Loss: tf.Tensor(0.51358026, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.648096, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 15218\n",
+ "Discriminator Loss: tf.Tensor(0.8291117, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.734298, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 15219\n",
+ "Discriminator Loss: tf.Tensor(1.3982508, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.06017655, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 15220\n",
+ "Discriminator Loss: tf.Tensor(0.4604736, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.950759, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 15221\n",
+ "Discriminator Loss: tf.Tensor(0.73877096, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.61638135, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 15222\n",
+ "Discriminator Loss: tf.Tensor(0.7087626, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.8062608, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 15223\n",
+ "Discriminator Loss: tf.Tensor(1.0254098, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.21359217, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 15224\n",
+ "Discriminator Loss: tf.Tensor(0.39661086, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.133035, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 15225\n",
+ "Discriminator Loss: tf.Tensor(1.3899188, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.27656373, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 15226\n",
+ "Discriminator Loss: tf.Tensor(1.3070226, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.7527866, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 15227\n",
+ "Discriminator Loss: tf.Tensor(0.4161994, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.6240433, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 15228\n",
+ "Discriminator Loss: tf.Tensor(0.4285312, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.5624878, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 15229\n",
+ "Discriminator Loss: tf.Tensor(0.64877963, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.45868972, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 15230\n",
+ "Discriminator Loss: tf.Tensor(1.4701947, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(3.421337, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 15231\n",
+ "Discriminator Loss: tf.Tensor(0.31984013, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.0115302, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 15232\n",
+ "Discriminator Loss: tf.Tensor(0.15639308, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.3377002, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 15233\n",
+ "Discriminator Loss: tf.Tensor(1.3766118, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.27736798, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 15234\n",
+ "Discriminator Loss: tf.Tensor(1.2248776, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.208606, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 15235\n",
+ "Discriminator Loss: tf.Tensor(0.87979895, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.13405097, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 15236\n",
+ "Discriminator Loss: tf.Tensor(0.45854947, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.0551937, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 15237\n",
+ "Discriminator Loss: tf.Tensor(0.8255523, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.61770886, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 15238\n",
+ "Discriminator Loss: tf.Tensor(0.25034845, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.3266032, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 15239\n",
+ "Discriminator Loss: tf.Tensor(0.84597135, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.26871625, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 15240\n",
+ "Discriminator Loss: tf.Tensor(0.9826393, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(3.461692, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 15241\n",
+ "Discriminator Loss: tf.Tensor(0.30502507, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.8595144, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 15242\n",
+ "Discriminator Loss: tf.Tensor(0.4331464, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.65909606, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 15243\n",
+ "Discriminator Loss: tf.Tensor(0.7100299, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(3.1721191, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 15244\n",
+ "Discriminator Loss: tf.Tensor(0.16731629, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.7056522, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 15245\n",
+ "Discriminator Loss: tf.Tensor(0.46152127, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.6518505, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 15246\n",
+ "Discriminator Loss: tf.Tensor(0.7013782, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(3.0337098, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 15247\n",
+ "Discriminator Loss: tf.Tensor(0.26410744, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.9056555, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 15248\n",
+ "Discriminator Loss: tf.Tensor(0.22101356, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.2903205, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 15249\n",
+ "Discriminator Loss: tf.Tensor(0.6626447, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.3581196, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 15250\n",
+ "Discriminator Loss: tf.Tensor(1.1810675, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(3.0638678, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 15251\n",
+ "Discriminator Loss: tf.Tensor(0.04310009, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.437657, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 15252\n",
+ "Discriminator Loss: tf.Tensor(0.72177595, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.8792472, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 15253\n",
+ "Discriminator Loss: tf.Tensor(3.3326354, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.901799, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 15254\n",
+ "Discriminator Loss: tf.Tensor(1.4193283, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.59783816, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 15255\n",
+ "Discriminator Loss: tf.Tensor(2.38153, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.8401322, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 15256\n",
+ "Discriminator Loss: tf.Tensor(1.1204147, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.71488124, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 15257\n",
+ "Discriminator Loss: tf.Tensor(0.7569512, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.3985691, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 15258\n",
+ "Discriminator Loss: tf.Tensor(0.8217341, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.6470503, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 15259\n",
+ "Discriminator Loss: tf.Tensor(1.3045251, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.5952144, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 15260\n",
+ "Discriminator Loss: tf.Tensor(0.96711534, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.6377666, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 15261\n",
+ "Discriminator Loss: tf.Tensor(0.6380292, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.3853639, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 15262\n",
+ "Discriminator Loss: tf.Tensor(1.534725, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.045823365, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 15263\n",
+ "Discriminator Loss: tf.Tensor(0.91085804, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.2480496, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 15264\n",
+ "Discriminator Loss: tf.Tensor(1.1343682, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.20960937, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 15265\n",
+ "Discriminator Loss: tf.Tensor(0.9053812, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.2010751, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 15266\n",
+ "Discriminator Loss: tf.Tensor(1.4254748, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.07117682, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 15267\n",
+ "Discriminator Loss: tf.Tensor(0.9546667, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.8235512, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 15268\n",
+ "Discriminator Loss: tf.Tensor(0.91066325, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.1444126, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 15269\n",
+ "Discriminator Loss: tf.Tensor(2.098133, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.93855315, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 15270\n",
+ "Discriminator Loss: tf.Tensor(0.8396947, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.8482855, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 15271\n",
+ "Discriminator Loss: tf.Tensor(0.4506984, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.698546, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 15272\n",
+ "Discriminator Loss: tf.Tensor(0.6780563, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.38448548, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 15273\n",
+ "Discriminator Loss: tf.Tensor(0.74992526, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.9145365, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 15274\n",
+ "Discriminator Loss: tf.Tensor(0.28192297, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.89071435, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 15275\n",
+ "Discriminator Loss: tf.Tensor(0.5172229, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.841843, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 15276\n",
+ "Discriminator Loss: tf.Tensor(0.95038104, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.12651987, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 15277\n",
+ "Discriminator Loss: tf.Tensor(0.7558825, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.5351981, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 15278\n",
+ "Discriminator Loss: tf.Tensor(1.3389223, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.16228248, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 15279\n",
+ "Discriminator Loss: tf.Tensor(0.6564468, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.3262907, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 15280\n",
+ "Discriminator Loss: tf.Tensor(1.1690797, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.122774005, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 15281\n",
+ "Discriminator Loss: tf.Tensor(0.15000145, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.6785284, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 15282\n",
+ "Discriminator Loss: tf.Tensor(0.44327193, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.0527824, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 15283\n",
+ "Discriminator Loss: tf.Tensor(0.56335616, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.4864646, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 15284\n",
+ "Discriminator Loss: tf.Tensor(1.0029578, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.848768, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 15285\n",
+ "Discriminator Loss: tf.Tensor(0.16136333, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.0431432, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 15286\n",
+ "Discriminator Loss: tf.Tensor(1.0385939, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.017477946, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 15287\n",
+ "Discriminator Loss: tf.Tensor(0.72309375, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.9117479, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 15288\n",
+ "Discriminator Loss: tf.Tensor(0.21152544, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.86341923, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 15289\n",
+ "Discriminator Loss: tf.Tensor(0.6365558, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.7158372, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 15290\n",
+ "Discriminator Loss: tf.Tensor(0.14752042, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.8996056, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 15291\n",
+ "Discriminator Loss: tf.Tensor(1.1909786, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(3.0871065, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 15292\n",
+ "Discriminator Loss: tf.Tensor(0.06467749, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.0780169, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 15293\n",
+ "Discriminator Loss: tf.Tensor(1.0975837, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.2785633, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 15294\n",
+ "Discriminator Loss: tf.Tensor(0.5039995, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.6916168, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 15295\n",
+ "Discriminator Loss: tf.Tensor(0.124046475, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.6318249, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 15296\n",
+ "Discriminator Loss: tf.Tensor(1.0223999, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.80139685, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 15297\n",
+ "Discriminator Loss: tf.Tensor(1.2244661, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.0168846, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 15298\n",
+ "Discriminator Loss: tf.Tensor(1.4919237, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.08642387, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 15299\n",
+ "Discriminator Loss: tf.Tensor(0.9468967, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.4639626, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 15300\n",
+ "Discriminator Loss: tf.Tensor(1.4750842, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.31099638, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 15301\n",
+ "Discriminator Loss: tf.Tensor(0.54410636, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.1347185, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 15302\n",
+ "Discriminator Loss: tf.Tensor(0.97676086, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.19144881, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 15303\n",
+ "Discriminator Loss: tf.Tensor(1.0290684, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.8688997, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 15304\n",
+ "Discriminator Loss: tf.Tensor(0.98973376, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.3499011, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 15305\n",
+ "Discriminator Loss: tf.Tensor(0.45176658, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.6213638, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 15306\n",
+ "Discriminator Loss: tf.Tensor(0.66609627, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.35790697, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 15307\n",
+ "Discriminator Loss: tf.Tensor(1.2466139, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.2327292, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 15308\n",
+ "Discriminator Loss: tf.Tensor(0.1754435, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.0398511, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 15309\n",
+ "Discriminator Loss: tf.Tensor(0.66755366, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.5774035, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 15310\n",
+ "Discriminator Loss: tf.Tensor(1.3023436, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.19911106, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 15311\n",
+ "Discriminator Loss: tf.Tensor(0.72912276, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.7994503, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 15312\n",
+ "Discriminator Loss: tf.Tensor(1.0084636, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.27570835, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 15313\n",
+ "Discriminator Loss: tf.Tensor(0.5018928, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.6706005, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 15314\n",
+ "Discriminator Loss: tf.Tensor(0.6557318, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.58298045, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 15315\n",
+ "Discriminator Loss: tf.Tensor(1.0124723, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.388309, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 15316\n",
+ "Discriminator Loss: tf.Tensor(0.56515676, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.5451537, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 15317\n",
+ "Discriminator Loss: tf.Tensor(0.5118344, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.0013998, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 15318\n",
+ "Discriminator Loss: tf.Tensor(0.63151264, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.5338083, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 15319\n",
+ "Discriminator Loss: tf.Tensor(1.1165293, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.6643746, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 15320\n",
+ "Discriminator Loss: tf.Tensor(0.62467045, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.48516607, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 15321\n",
+ "Discriminator Loss: tf.Tensor(0.74103826, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.2312129, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 15322\n",
+ "Discriminator Loss: tf.Tensor(0.20292921, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.83237004, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 15323\n",
+ "Discriminator Loss: tf.Tensor(0.9533673, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.9656906, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 15324\n",
+ "Discriminator Loss: tf.Tensor(0.033270743, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.3282905, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 15325\n",
+ "Discriminator Loss: tf.Tensor(48.72309, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.76899785, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 15326\n",
+ "Discriminator Loss: tf.Tensor(25.16441, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.7323775, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 15327\n",
+ "Discriminator Loss: tf.Tensor(9.409722, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.49989453, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 15328\n",
+ "Discriminator Loss: tf.Tensor(5.3992577, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.50368524, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 15329\n",
+ "Discriminator Loss: tf.Tensor(4.3468776, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.51646286, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 15330\n",
+ "Discriminator Loss: tf.Tensor(3.5572853, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.44255814, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 15331\n",
+ "Discriminator Loss: tf.Tensor(3.512126, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.53394246, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 15332\n",
+ "Discriminator Loss: tf.Tensor(3.425838, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.54880315, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 15333\n",
+ "Discriminator Loss: tf.Tensor(2.9277272, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.54628605, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 15334\n",
+ "Discriminator Loss: tf.Tensor(2.4871137, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.5988293, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 15335\n",
+ "Discriminator Loss: tf.Tensor(2.499011, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.64419574, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 15336\n",
+ "Discriminator Loss: tf.Tensor(2.3224902, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.68802595, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 15337\n",
+ "Discriminator Loss: tf.Tensor(2.243299, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.60956454, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 15338\n",
+ "Discriminator Loss: tf.Tensor(2.358483, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.66425306, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 15339\n",
+ "Discriminator Loss: tf.Tensor(2.280086, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.68501216, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 15340\n",
+ "Discriminator Loss: tf.Tensor(2.1658127, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.59329575, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 15341\n",
+ "Discriminator Loss: tf.Tensor(2.1563013, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.64064044, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 15342\n",
+ "Discriminator Loss: tf.Tensor(2.0925732, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.566289, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 15343\n",
+ "Discriminator Loss: tf.Tensor(2.064083, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.55478495, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 15344\n",
+ "Discriminator Loss: tf.Tensor(2.031857, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.56475407, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 15345\n",
+ "Discriminator Loss: tf.Tensor(2.000422, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.5292835, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 15346\n",
+ "Discriminator Loss: tf.Tensor(2.004883, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.5679795, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 15347\n",
+ "Discriminator Loss: tf.Tensor(1.8949857, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.5266948, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 15348\n",
+ "Discriminator Loss: tf.Tensor(1.8773123, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.5273685, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 15349\n",
+ "Discriminator Loss: tf.Tensor(1.8517051, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.5423905, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 15350\n",
+ "Discriminator Loss: tf.Tensor(1.8524063, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.7197676, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 15351\n",
+ "Discriminator Loss: tf.Tensor(2.017429, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.7102633, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 15352\n",
+ "Discriminator Loss: tf.Tensor(1.8369834, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.8055994, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 15353\n",
+ "Discriminator Loss: tf.Tensor(1.6613562, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.7780445, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 15354\n",
+ "Discriminator Loss: tf.Tensor(2.022384, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.85022706, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 15355\n",
+ "Discriminator Loss: tf.Tensor(1.8752, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.20973158, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 15356\n",
+ "Discriminator Loss: tf.Tensor(1.7670258, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.42072532, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 15357\n",
+ "Discriminator Loss: tf.Tensor(1.7526592, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.4467045, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 15358\n",
+ "Discriminator Loss: tf.Tensor(1.5643115, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.4829494, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 15359\n",
+ "Discriminator Loss: tf.Tensor(1.5474643, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.6287717, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 15360\n",
+ "Discriminator Loss: tf.Tensor(1.6800873, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.5444798, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 15361\n",
+ "Discriminator Loss: tf.Tensor(1.9383395, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.73838204, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 15362\n",
+ "Discriminator Loss: tf.Tensor(1.6073017, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.64329606, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 15363\n",
+ "Discriminator Loss: tf.Tensor(1.6249919, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.89773965, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 15364\n",
+ "Discriminator Loss: tf.Tensor(1.577538, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.7736071, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 15365\n",
+ "Discriminator Loss: tf.Tensor(1.6197565, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.0279545, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 15366\n",
+ "Discriminator Loss: tf.Tensor(1.8448856, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.49311864, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 15367\n",
+ "Discriminator Loss: tf.Tensor(1.7017375, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.2374558, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 15368\n",
+ "Discriminator Loss: tf.Tensor(1.4591358, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.27581376, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 15369\n",
+ "Discriminator Loss: tf.Tensor(1.4297916, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.38443795, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 15370\n",
+ "Discriminator Loss: tf.Tensor(1.2923429, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.4881047, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 15371\n",
+ "Discriminator Loss: tf.Tensor(1.2454052, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.78631926, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 15372\n",
+ "Discriminator Loss: tf.Tensor(1.2027463, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.0722903, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 15373\n",
+ "Discriminator Loss: tf.Tensor(1.8836915, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.81694937, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 15374\n",
+ "Discriminator Loss: tf.Tensor(1.4557571, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.3699453, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 15375\n",
+ "Discriminator Loss: tf.Tensor(1.0199592, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.53942424, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 15376\n",
+ "Discriminator Loss: tf.Tensor(0.71667063, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.6790425, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 15377\n",
+ "Discriminator Loss: tf.Tensor(0.632505, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.6944144, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 15378\n",
+ "Discriminator Loss: tf.Tensor(1.0230267, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.5437107, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 15379\n",
+ "Discriminator Loss: tf.Tensor(1.7171092, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.48880848, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 15380\n",
+ "Discriminator Loss: tf.Tensor(1.3106327, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.38072622, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 15381\n",
+ "Discriminator Loss: tf.Tensor(1.1821213, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.15842853, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 15382\n",
+ "Discriminator Loss: tf.Tensor(0.9756781, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.1418295, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 15383\n",
+ "Discriminator Loss: tf.Tensor(1.766731, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.60539776, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 15384\n",
+ "Discriminator Loss: tf.Tensor(0.7616818, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.7547312, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 15385\n",
+ "Discriminator Loss: tf.Tensor(0.44396642, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.7571411, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 15386\n",
+ "Discriminator Loss: tf.Tensor(1.3949441, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.1265986, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 15387\n",
+ "Discriminator Loss: tf.Tensor(1.1733664, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.023352643, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 15388\n",
+ "Discriminator Loss: tf.Tensor(0.5146693, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.0934855, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 15389\n",
+ "Discriminator Loss: tf.Tensor(1.4743875, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.41307533, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 15390\n",
+ "Discriminator Loss: tf.Tensor(0.77471435, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.3396608, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 15391\n",
+ "Discriminator Loss: tf.Tensor(1.1200641, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.0044466155, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 15392\n",
+ "Discriminator Loss: tf.Tensor(0.5542461, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.1773304, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 15393\n",
+ "Discriminator Loss: tf.Tensor(1.0399176, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.26530212, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 15394\n",
+ "Discriminator Loss: tf.Tensor(0.47216487, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.2228838, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 15395\n",
+ "Discriminator Loss: tf.Tensor(1.2603515, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.11168212, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 15396\n",
+ "Discriminator Loss: tf.Tensor(0.6768862, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.2487416, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 15397\n",
+ "Discriminator Loss: tf.Tensor(1.439151, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.40955642, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 15398\n",
+ "Discriminator Loss: tf.Tensor(0.6961516, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.3781227, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 15399\n",
+ "Discriminator Loss: tf.Tensor(1.2112669, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.0016883513, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 15400\n",
+ "Discriminator Loss: tf.Tensor(0.5439792, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.0336372, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 15401\n",
+ "Discriminator Loss: tf.Tensor(0.87395096, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.41323486, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 15402\n",
+ "Discriminator Loss: tf.Tensor(0.74055386, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.2122052, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 15403\n",
+ "Discriminator Loss: tf.Tensor(0.41742185, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.6089326, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 15404\n",
+ "Discriminator Loss: tf.Tensor(0.6102377, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.345004, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 15405\n",
+ "Discriminator Loss: tf.Tensor(0.27417576, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.7720639, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 15406\n",
+ "Discriminator Loss: tf.Tensor(0.69210774, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.901602, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 15407\n",
+ "Discriminator Loss: tf.Tensor(0.2308094, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.99755365, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 15408\n",
+ "Discriminator Loss: tf.Tensor(0.3013109, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.8402587, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 15409\n",
+ "Discriminator Loss: tf.Tensor(1.4998838, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.27132726, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 15410\n",
+ "Discriminator Loss: tf.Tensor(1.0089874, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.1548681, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 15411\n",
+ "Discriminator Loss: tf.Tensor(2.032812, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.6458528, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 15412\n",
+ "Discriminator Loss: tf.Tensor(0.32159778, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.3396115, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 15413\n",
+ "Discriminator Loss: tf.Tensor(0.93048036, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.38663062, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 15414\n",
+ "Discriminator Loss: tf.Tensor(1.3211584, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(3.1972044, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 15415\n",
+ "Discriminator Loss: tf.Tensor(0.56596106, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.5590068, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 15416\n",
+ "Discriminator Loss: tf.Tensor(0.44940287, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.0480683, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 15417\n",
+ "Discriminator Loss: tf.Tensor(0.37375727, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.68850535, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 15418\n",
+ "Discriminator Loss: tf.Tensor(0.7049995, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.8800948, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 15419\n",
+ "Discriminator Loss: tf.Tensor(0.48074225, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.834555, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 15420\n",
+ "Discriminator Loss: tf.Tensor(0.28125685, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(3.1459887, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 15421\n",
+ "Discriminator Loss: tf.Tensor(0.4794864, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.0033053, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 15422\n",
+ "Discriminator Loss: tf.Tensor(0.63591367, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.5015382, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 15423\n",
+ "Discriminator Loss: tf.Tensor(2.089263, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.83050114, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 15424\n",
+ "Discriminator Loss: tf.Tensor(1.205694, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.3786035, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 15425\n",
+ "Discriminator Loss: tf.Tensor(0.6072133, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.46153888, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 15426\n",
+ "Discriminator Loss: tf.Tensor(0.5730821, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.4542525, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 15427\n",
+ "Discriminator Loss: tf.Tensor(0.29772708, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.7615319, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 15428\n",
+ "Discriminator Loss: tf.Tensor(0.30512577, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(3.2572813, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 15429\n",
+ "Discriminator Loss: tf.Tensor(0.37361294, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.1357248, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 15430\n",
+ "Discriminator Loss: tf.Tensor(0.19092186, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.1039904, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 15431\n",
+ "Discriminator Loss: tf.Tensor(0.9028523, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.13090579, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 15432\n",
+ "Discriminator Loss: tf.Tensor(0.35679772, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(3.1145573, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 15433\n",
+ "Discriminator Loss: tf.Tensor(0.40788254, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.9216415, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 15434\n",
+ "Discriminator Loss: tf.Tensor(1.0129023, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.14233582, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 15435\n",
+ "Discriminator Loss: tf.Tensor(0.6941128, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(3.2458782, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 15436\n",
+ "Discriminator Loss: tf.Tensor(0.12204179, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.6060616, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 15437\n",
+ "Discriminator Loss: tf.Tensor(0.3568198, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.93903226, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 15438\n",
+ "Discriminator Loss: tf.Tensor(0.7803302, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.890356, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 15439\n",
+ "Discriminator Loss: tf.Tensor(1.0821459, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.121979885, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 15440\n",
+ "Discriminator Loss: tf.Tensor(0.5302506, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.8642223, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 15441\n",
+ "Discriminator Loss: tf.Tensor(0.18096712, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.6632915, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 15442\n",
+ "Discriminator Loss: tf.Tensor(0.62747985, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.9105137, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 15443\n",
+ "Discriminator Loss: tf.Tensor(0.8818925, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(3.4188116, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 15444\n",
+ "Discriminator Loss: tf.Tensor(0.6622062, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.67837685, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 15445\n",
+ "Discriminator Loss: tf.Tensor(0.6670987, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.8872095, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 15446\n",
+ "Discriminator Loss: tf.Tensor(1.4302285, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.37905955, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 15447\n",
+ "Discriminator Loss: tf.Tensor(0.89618003, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.8383526, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 15448\n",
+ "Discriminator Loss: tf.Tensor(1.1996417, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.013722059, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 15449\n",
+ "Discriminator Loss: tf.Tensor(1.0580385, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.2850637, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 15450\n",
+ "Discriminator Loss: tf.Tensor(0.8937602, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.46944383, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 15451\n",
+ "Discriminator Loss: tf.Tensor(0.56251293, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.8272542, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 15452\n",
+ "Discriminator Loss: tf.Tensor(0.60854053, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.55689794, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 15453\n",
+ "Discriminator Loss: tf.Tensor(0.8346029, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.6835537, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 15454\n",
+ "Discriminator Loss: tf.Tensor(0.278021, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.2875768, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 15455\n",
+ "Discriminator Loss: tf.Tensor(0.6711799, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.41554198, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 15456\n",
+ "Discriminator Loss: tf.Tensor(0.5538174, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.3575137, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 15457\n",
+ "Discriminator Loss: tf.Tensor(0.9467501, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.2575898, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 15458\n",
+ "Discriminator Loss: tf.Tensor(0.5128267, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(3.0725937, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 15459\n",
+ "Discriminator Loss: tf.Tensor(0.93965876, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.18220066, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 15460\n",
+ "Discriminator Loss: tf.Tensor(0.99574983, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.9690485, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 15461\n",
+ "Discriminator Loss: tf.Tensor(1.0013708, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.017798983, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 15462\n",
+ "Discriminator Loss: tf.Tensor(0.66452265, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(3.1269882, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 15463\n",
+ "Discriminator Loss: tf.Tensor(0.23022598, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.84917766, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 15464\n",
+ "Discriminator Loss: tf.Tensor(1.4071707, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(4.4014497, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 15465\n",
+ "Discriminator Loss: tf.Tensor(0.3279052, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.6034198, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 15466\n",
+ "Discriminator Loss: tf.Tensor(0.46824682, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.5979252, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 15467\n",
+ "Discriminator Loss: tf.Tensor(0.6891491, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(3.247184, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 15468\n",
+ "Discriminator Loss: tf.Tensor(0.20196347, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.7266132, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 15469\n",
+ "Discriminator Loss: tf.Tensor(0.76936996, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.50153166, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 15470\n",
+ "Discriminator Loss: tf.Tensor(0.59431076, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(4.1806207, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 15471\n",
+ "Discriminator Loss: tf.Tensor(1.3902191, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.28586614, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 15472\n",
+ "Discriminator Loss: tf.Tensor(1.6098474, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(3.7233868, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 15473\n",
+ "Discriminator Loss: tf.Tensor(1.9373436, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.34710416, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 15474\n",
+ "Discriminator Loss: tf.Tensor(0.8846042, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.4545091, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 15475\n",
+ "Discriminator Loss: tf.Tensor(1.7431045, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.7151208, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 15476\n",
+ "Discriminator Loss: tf.Tensor(0.9498279, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.6267691, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 15477\n",
+ "Discriminator Loss: tf.Tensor(1.1979648, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.09619305, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 15478\n",
+ "Discriminator Loss: tf.Tensor(0.5626495, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.844309, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 15479\n",
+ "Discriminator Loss: tf.Tensor(0.5877356, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.5718649, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 15480\n",
+ "Discriminator Loss: tf.Tensor(0.5673516, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.4287078, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 15481\n",
+ "Discriminator Loss: tf.Tensor(0.41785297, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.6892578, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 15482\n",
+ "Discriminator Loss: tf.Tensor(0.72378963, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(3.1683578, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 15483\n",
+ "Discriminator Loss: tf.Tensor(0.25034013, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.068442, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 15484\n",
+ "Discriminator Loss: tf.Tensor(2.4717062, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-1.2296938, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 15485\n",
+ "Discriminator Loss: tf.Tensor(1.095231, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.7442006, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 15486\n",
+ "Discriminator Loss: tf.Tensor(0.6420683, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.3880485, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 15487\n",
+ "Discriminator Loss: tf.Tensor(0.71828884, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.4387732, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 15488\n",
+ "Discriminator Loss: tf.Tensor(0.113410786, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.097718, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 15489\n",
+ "Discriminator Loss: tf.Tensor(0.1977674, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.666227, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 15490\n",
+ "Discriminator Loss: tf.Tensor(0.7745147, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.53158, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 15491\n",
+ "Discriminator Loss: tf.Tensor(1.1811157, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(3.0004284, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 15492\n",
+ "Discriminator Loss: tf.Tensor(0.72084427, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.6728754, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 15493\n",
+ "Discriminator Loss: tf.Tensor(1.3964216, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.661619, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 15494\n",
+ "Discriminator Loss: tf.Tensor(0.9514489, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.36297336, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 15495\n",
+ "Discriminator Loss: tf.Tensor(0.52257663, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.9446859, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 15496\n",
+ "Discriminator Loss: tf.Tensor(0.75616366, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.9314907, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 15497\n",
+ "Discriminator Loss: tf.Tensor(0.7811769, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.4294174, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 15498\n",
+ "Discriminator Loss: tf.Tensor(0.572077, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.6016942, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 15499\n",
+ "Discriminator Loss: tf.Tensor(0.7347436, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.076742, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 15500\n",
+ "Discriminator Loss: tf.Tensor(0.73459285, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.48918203, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 15501\n",
+ "Discriminator Loss: tf.Tensor(0.8788949, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.3459365, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 15502\n",
+ "Discriminator Loss: tf.Tensor(1.1312696, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.11057363, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 15503\n",
+ "Discriminator Loss: tf.Tensor(0.57716864, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.3208783, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 15504\n",
+ "Discriminator Loss: tf.Tensor(0.28947806, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.9471033, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 15505\n",
+ "Discriminator Loss: tf.Tensor(0.49246407, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.7973938, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 15506\n",
+ "Discriminator Loss: tf.Tensor(0.97355646, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.17044882, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 15507\n",
+ "Discriminator Loss: tf.Tensor(0.82975644, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.561899, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 15508\n",
+ "Discriminator Loss: tf.Tensor(1.0745382, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.2364921, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 15509\n",
+ "Discriminator Loss: tf.Tensor(1.2893181, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.3656483, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 15510\n",
+ "Discriminator Loss: tf.Tensor(0.72142416, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.5274311, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 15511\n",
+ "Discriminator Loss: tf.Tensor(1.2734668, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.551329, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 15512\n",
+ "Discriminator Loss: tf.Tensor(0.119736716, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.96302277, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 15513\n",
+ "Discriminator Loss: tf.Tensor(0.5894894, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.533364, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 15514\n",
+ "Discriminator Loss: tf.Tensor(0.20564476, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.1146996, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 15515\n",
+ "Discriminator Loss: tf.Tensor(1.0142624, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.07158806, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 15516\n",
+ "Discriminator Loss: tf.Tensor(1.1523618, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.5012553, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 15517\n",
+ "Discriminator Loss: tf.Tensor(0.2703858, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.8334224, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 15518\n",
+ "Discriminator Loss: tf.Tensor(1.2982846, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.924558, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 15519\n",
+ "Discriminator Loss: tf.Tensor(0.20846657, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.8512251, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 15520\n",
+ "Discriminator Loss: tf.Tensor(0.90952253, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.5983093, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 15521\n",
+ "Discriminator Loss: tf.Tensor(0.37511787, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.5832347, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 15522\n",
+ "Discriminator Loss: tf.Tensor(0.57380617, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.68897456, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 15523\n",
+ "Discriminator Loss: tf.Tensor(0.8773376, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.4791358, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 15524\n",
+ "Discriminator Loss: tf.Tensor(1.2201504, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.029818991, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 15525\n",
+ "Discriminator Loss: tf.Tensor(0.6067517, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.8682978, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 15526\n",
+ "Discriminator Loss: tf.Tensor(0.38241157, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.6207833, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 15527\n",
+ "Discriminator Loss: tf.Tensor(0.49659526, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.6501719, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 15528\n",
+ "Discriminator Loss: tf.Tensor(0.63170296, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.5576005, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 15529\n",
+ "Discriminator Loss: tf.Tensor(0.16258773, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.6877726, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 15530\n",
+ "Discriminator Loss: tf.Tensor(0.39288628, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.95960313, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 15531\n",
+ "Discriminator Loss: tf.Tensor(0.7679856, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.8529613, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 15532\n",
+ "Discriminator Loss: tf.Tensor(0.20586476, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.842601, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 15533\n",
+ "Discriminator Loss: tf.Tensor(0.7298224, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.904215, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 15534\n",
+ "Discriminator Loss: tf.Tensor(0.4562944, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.0016059, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 15535\n",
+ "Discriminator Loss: tf.Tensor(0.9905424, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.5567787, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 15536\n",
+ "Discriminator Loss: tf.Tensor(1.0424438, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.085248835, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 15537\n",
+ "Discriminator Loss: tf.Tensor(0.29222584, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.226107, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 15538\n",
+ "Discriminator Loss: tf.Tensor(0.36395097, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.1243931, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 15539\n",
+ "Discriminator Loss: tf.Tensor(1.9139993, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.6468479, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 15540\n",
+ "Discriminator Loss: tf.Tensor(0.776631, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.5934494, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 15541\n",
+ "Discriminator Loss: tf.Tensor(0.50647074, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.5839516, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 15542\n",
+ "Discriminator Loss: tf.Tensor(1.1843147, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(3.4408538, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 15543\n",
+ "Discriminator Loss: tf.Tensor(0.26357174, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.7288948, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 15544\n",
+ "Discriminator Loss: tf.Tensor(0.5731405, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.5847628, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 15545\n",
+ "Discriminator Loss: tf.Tensor(0.7566447, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(3.115774, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 15546\n",
+ "Discriminator Loss: tf.Tensor(0.27820876, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.6514152, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 15547\n",
+ "Discriminator Loss: tf.Tensor(0.4714844, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.610766, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 15548\n",
+ "Discriminator Loss: tf.Tensor(0.7889718, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(3.466049, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 15549\n",
+ "Discriminator Loss: tf.Tensor(0.12863444, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.4830471, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 15550\n",
+ "Discriminator Loss: tf.Tensor(1.1653464, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.015309595, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 15551\n",
+ "Discriminator Loss: tf.Tensor(1.7617674, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.6705105, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 15552\n",
+ "Discriminator Loss: tf.Tensor(1.1103303, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.011814619, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 15553\n",
+ "Discriminator Loss: tf.Tensor(0.45670575, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.2606375, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 15554\n",
+ "Discriminator Loss: tf.Tensor(0.5212016, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.6248819, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 15555\n",
+ "Discriminator Loss: tf.Tensor(0.7842307, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(3.7856252, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 15556\n",
+ "Discriminator Loss: tf.Tensor(0.28752053, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.74816895, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 15557\n",
+ "Discriminator Loss: tf.Tensor(1.6924794, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(4.463969, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 15558\n",
+ "Discriminator Loss: tf.Tensor(0.06501926, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.0354978, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 15559\n",
+ "Discriminator Loss: tf.Tensor(0.14945999, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.3353177, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 15560\n",
+ "Discriminator Loss: tf.Tensor(1.1601075, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.3500247, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 15561\n",
+ "Discriminator Loss: tf.Tensor(3.302558, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.980093, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 15562\n",
+ "Discriminator Loss: tf.Tensor(0.80380213, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.85724306, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 15563\n",
+ "Discriminator Loss: tf.Tensor(1.4021072, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.6741953, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 15564\n",
+ "Discriminator Loss: tf.Tensor(0.81250626, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.35808954, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 15565\n",
+ "Discriminator Loss: tf.Tensor(1.2395382, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.5855833, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 15566\n",
+ "Discriminator Loss: tf.Tensor(0.7123923, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.6194947, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 15567\n",
+ "Discriminator Loss: tf.Tensor(0.5674149, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.6445757, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 15568\n",
+ "Discriminator Loss: tf.Tensor(0.22457656, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.0517281, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 15569\n",
+ "Discriminator Loss: tf.Tensor(0.6709265, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.36669537, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 15570\n",
+ "Discriminator Loss: tf.Tensor(0.8771616, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.215812, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 15571\n",
+ "Discriminator Loss: tf.Tensor(0.5731714, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.7754731, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 15572\n",
+ "Discriminator Loss: tf.Tensor(0.8083731, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.6686721, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 15573\n",
+ "Discriminator Loss: tf.Tensor(1.5292023, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.24453147, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 15574\n",
+ "Discriminator Loss: tf.Tensor(0.9124733, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.6294322, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 15575\n",
+ "Discriminator Loss: tf.Tensor(1.2657723, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.016572738, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 15576\n",
+ "Discriminator Loss: tf.Tensor(0.8535478, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.655891, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 15577\n",
+ "Discriminator Loss: tf.Tensor(0.7985754, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.35326186, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 15578\n",
+ "Discriminator Loss: tf.Tensor(0.6857994, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.734581, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 15579\n",
+ "Discriminator Loss: tf.Tensor(0.8233924, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.3990701, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 15580\n",
+ "Discriminator Loss: tf.Tensor(0.38817206, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.7068604, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 15581\n",
+ "Discriminator Loss: tf.Tensor(0.8102681, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.29492417, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 15582\n",
+ "Discriminator Loss: tf.Tensor(0.7131909, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.1313274, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 15583\n",
+ "Discriminator Loss: tf.Tensor(0.896859, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.1266302, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 15584\n",
+ "Discriminator Loss: tf.Tensor(1.2007635, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.13775481, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 15585\n",
+ "Discriminator Loss: tf.Tensor(0.6072795, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.073095, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 15586\n",
+ "Discriminator Loss: tf.Tensor(0.46791178, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.6639864, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 15587\n",
+ "Discriminator Loss: tf.Tensor(0.7253238, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.43656, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 15588\n",
+ "Discriminator Loss: tf.Tensor(0.26592946, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.77800125, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 15589\n",
+ "Discriminator Loss: tf.Tensor(0.81398714, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(3.02164, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 15590\n",
+ "Discriminator Loss: tf.Tensor(0.6238586, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.92012995, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 15591\n",
+ "Discriminator Loss: tf.Tensor(0.49207819, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.8543043, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 15592\n",
+ "Discriminator Loss: tf.Tensor(1.3418288, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.11546353, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 15593\n",
+ "Discriminator Loss: tf.Tensor(0.43033135, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.3269272, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 15594\n",
+ "Discriminator Loss: tf.Tensor(0.33218193, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.3254302, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 15595\n",
+ "Discriminator Loss: tf.Tensor(1.0645689, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.034573864, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 15596\n",
+ "Discriminator Loss: tf.Tensor(0.82178056, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.5085607, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 15597\n",
+ "Discriminator Loss: tf.Tensor(0.23905078, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.2435501, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 15598\n",
+ "Discriminator Loss: tf.Tensor(0.46547523, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.68602306, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 15599\n",
+ "Discriminator Loss: tf.Tensor(0.57873905, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.491144, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 15600\n",
+ "Discriminator Loss: tf.Tensor(1.0794284, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.18723893, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 15601\n",
+ "Discriminator Loss: tf.Tensor(0.89455354, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.1331513, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 15602\n",
+ "Discriminator Loss: tf.Tensor(1.0367162, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.0338732, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 15603\n",
+ "Discriminator Loss: tf.Tensor(1.085255, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.8804035, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 15604\n",
+ "Discriminator Loss: tf.Tensor(0.7319307, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.3474566, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 15605\n",
+ "Discriminator Loss: tf.Tensor(0.7757001, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.489206, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 15606\n",
+ "Discriminator Loss: tf.Tensor(0.7709344, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.2872987, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 15607\n",
+ "Discriminator Loss: tf.Tensor(0.7214919, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.5550687, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 15608\n",
+ "Discriminator Loss: tf.Tensor(0.16012344, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.9394744, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 15609\n",
+ "Discriminator Loss: tf.Tensor(0.29475644, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.0893505, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 15610\n",
+ "Discriminator Loss: tf.Tensor(0.7331813, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.50157875, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 15611\n",
+ "Discriminator Loss: tf.Tensor(1.8018355, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(3.2987912, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 15612\n",
+ "Discriminator Loss: tf.Tensor(0.38113695, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.8350628, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 15613\n",
+ "Discriminator Loss: tf.Tensor(0.074020684, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.5987136, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 15614\n",
+ "Discriminator Loss: tf.Tensor(145.64162, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.8666188, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 15615\n",
+ "Discriminator Loss: tf.Tensor(43.297108, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.72983265, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 15616\n",
+ "Discriminator Loss: tf.Tensor(14.34164, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.7806433, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 15617\n",
+ "Discriminator Loss: tf.Tensor(9.830716, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.80051214, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 15618\n",
+ "Discriminator Loss: tf.Tensor(7.807425, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.818178, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 15619\n",
+ "Discriminator Loss: tf.Tensor(5.429295, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.8140121, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 15620\n",
+ "Discriminator Loss: tf.Tensor(5.296884, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.8576332, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 15621\n",
+ "Discriminator Loss: tf.Tensor(3.8864827, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.86457396, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 15622\n",
+ "Discriminator Loss: tf.Tensor(3.5606103, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.8756547, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 15623\n",
+ "Discriminator Loss: tf.Tensor(3.0545995, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.8277893, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 15624\n",
+ "Discriminator Loss: tf.Tensor(3.1632352, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.74734044, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 15625\n",
+ "Discriminator Loss: tf.Tensor(2.6783175, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.7085275, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 15626\n",
+ "Discriminator Loss: tf.Tensor(2.6004567, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.7214594, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 15627\n",
+ "Discriminator Loss: tf.Tensor(3.2248275, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.70332986, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 15628\n",
+ "Discriminator Loss: tf.Tensor(2.6396053, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.6725871, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 15629\n",
+ "Discriminator Loss: tf.Tensor(2.4167826, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.708796, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 15630\n",
+ "Discriminator Loss: tf.Tensor(2.6001143, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.7273469, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 15631\n",
+ "Discriminator Loss: tf.Tensor(2.2518458, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.77810127, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 15632\n",
+ "Discriminator Loss: tf.Tensor(2.2253232, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.8759615, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 15633\n",
+ "Discriminator Loss: tf.Tensor(2.2851999, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.84440106, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 15634\n",
+ "Discriminator Loss: tf.Tensor(2.29782, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.9873764, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 15635\n",
+ "Discriminator Loss: tf.Tensor(2.0585163, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.6531537, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 15636\n",
+ "Discriminator Loss: tf.Tensor(2.0333388, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.77927786, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 15637\n",
+ "Discriminator Loss: tf.Tensor(2.0005436, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.78425807, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 15638\n",
+ "Discriminator Loss: tf.Tensor(2.0883627, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.8292716, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 15639\n",
+ "Discriminator Loss: tf.Tensor(2.0417945, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.8937058, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 15640\n",
+ "Discriminator Loss: tf.Tensor(2.034989, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.8923347, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 15641\n",
+ "Discriminator Loss: tf.Tensor(1.9904696, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.8744361, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 15642\n",
+ "Discriminator Loss: tf.Tensor(2.0689816, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.8406666, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 15643\n",
+ "Discriminator Loss: tf.Tensor(2.0461292, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.87692136, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 15644\n",
+ "Discriminator Loss: tf.Tensor(1.8252009, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.85286856, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 15645\n",
+ "Discriminator Loss: tf.Tensor(1.6131057, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.90825415, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 15646\n",
+ "Discriminator Loss: tf.Tensor(2.0506465, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.2510799, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 15647\n",
+ "Discriminator Loss: tf.Tensor(1.8821322, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.35782218, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 15648\n",
+ "Discriminator Loss: tf.Tensor(1.9469218, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.6107389, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 15649\n",
+ "Discriminator Loss: tf.Tensor(1.866844, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.8695397, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 15650\n",
+ "Discriminator Loss: tf.Tensor(1.8043152, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.0138994, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 15651\n",
+ "Discriminator Loss: tf.Tensor(1.7773305, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.43124226, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 15652\n",
+ "Discriminator Loss: tf.Tensor(1.6078659, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.7009484, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 15653\n",
+ "Discriminator Loss: tf.Tensor(1.5528362, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.7261997, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 15654\n",
+ "Discriminator Loss: tf.Tensor(1.2731797, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.9885998, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 15655\n",
+ "Discriminator Loss: tf.Tensor(1.5176512, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.31772652, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 15656\n",
+ "Discriminator Loss: tf.Tensor(1.4093182, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.3467299, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 15657\n",
+ "Discriminator Loss: tf.Tensor(1.5575855, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.2906499, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 15658\n",
+ "Discriminator Loss: tf.Tensor(1.3570879, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.3324019, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 15659\n",
+ "Discriminator Loss: tf.Tensor(1.1655295, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.0782248, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 15660\n",
+ "Discriminator Loss: tf.Tensor(1.7822291, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.6443583, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 15661\n",
+ "Discriminator Loss: tf.Tensor(1.508749, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.50389403, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 15662\n",
+ "Discriminator Loss: tf.Tensor(1.1288621, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.5779111, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 15663\n",
+ "Discriminator Loss: tf.Tensor(1.2503899, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.5698062, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 15664\n",
+ "Discriminator Loss: tf.Tensor(1.332964, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.6759947, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 15665\n",
+ "Discriminator Loss: tf.Tensor(1.1134746, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.9095915, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 15666\n",
+ "Discriminator Loss: tf.Tensor(0.9991624, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.3058534, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 15667\n",
+ "Discriminator Loss: tf.Tensor(1.7984078, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.44946837, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 15668\n",
+ "Discriminator Loss: tf.Tensor(1.2775931, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.40596566, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 15669\n",
+ "Discriminator Loss: tf.Tensor(0.9944067, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.56032157, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 15670\n",
+ "Discriminator Loss: tf.Tensor(0.4393372, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.92557406, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 15671\n",
+ "Discriminator Loss: tf.Tensor(0.8528275, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.3647408, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 15672\n",
+ "Discriminator Loss: tf.Tensor(1.8785806, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.7345665, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 15673\n",
+ "Discriminator Loss: tf.Tensor(1.4098486, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.8812216, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 15674\n",
+ "Discriminator Loss: tf.Tensor(0.74422324, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.0343684, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 15675\n",
+ "Discriminator Loss: tf.Tensor(1.0437568, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.090906866, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 15676\n",
+ "Discriminator Loss: tf.Tensor(0.7549766, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.82086515, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 15677\n",
+ "Discriminator Loss: tf.Tensor(0.5337333, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.90624696, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 15678\n",
+ "Discriminator Loss: tf.Tensor(1.0185459, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.6648059, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 15679\n",
+ "Discriminator Loss: tf.Tensor(1.4103023, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.34130752, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 15680\n",
+ "Discriminator Loss: tf.Tensor(0.8095085, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.2343549, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 15681\n",
+ "Discriminator Loss: tf.Tensor(1.227279, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.18776698, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 15682\n",
+ "Discriminator Loss: tf.Tensor(0.9352415, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.478859, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 15683\n",
+ "Discriminator Loss: tf.Tensor(0.7855357, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.32563916, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 15684\n",
+ "Discriminator Loss: tf.Tensor(0.6278322, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.6398541, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 15685\n",
+ "Discriminator Loss: tf.Tensor(0.9267795, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.202672, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 15686\n",
+ "Discriminator Loss: tf.Tensor(0.7032524, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.5232086, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 15687\n",
+ "Discriminator Loss: tf.Tensor(0.51390237, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.6683933, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 15688\n",
+ "Discriminator Loss: tf.Tensor(0.10190357, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.6414933, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 15689\n",
+ "Discriminator Loss: tf.Tensor(0.6940229, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.6168721, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 15690\n",
+ "Discriminator Loss: tf.Tensor(1.4322863, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.310403, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 15691\n",
+ "Discriminator Loss: tf.Tensor(0.7639837, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.53534526, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 15692\n",
+ "Discriminator Loss: tf.Tensor(0.49730715, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.7791218, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 15693\n",
+ "Discriminator Loss: tf.Tensor(0.9312506, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.4276774, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 15694\n",
+ "Discriminator Loss: tf.Tensor(0.7847715, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.0339897, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 15695\n",
+ "Discriminator Loss: tf.Tensor(0.8218312, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.3468233, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 15696\n",
+ "Discriminator Loss: tf.Tensor(0.57898134, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.8597969, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 15697\n",
+ "Discriminator Loss: tf.Tensor(1.2339503, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.13347046, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 15698\n",
+ "Discriminator Loss: tf.Tensor(0.9857895, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.979561, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 15699\n",
+ "Discriminator Loss: tf.Tensor(1.2007288, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.11821828, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 15700\n",
+ "Discriminator Loss: tf.Tensor(0.7029323, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.9470721, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 15701\n",
+ "Discriminator Loss: tf.Tensor(0.5294244, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.62556726, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 15702\n",
+ "Discriminator Loss: tf.Tensor(0.4229258, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.2328913, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 15703\n",
+ "Discriminator Loss: tf.Tensor(0.29598483, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.0656842, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 15704\n",
+ "Discriminator Loss: tf.Tensor(0.31309655, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.7797987, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 15705\n",
+ "Discriminator Loss: tf.Tensor(1.8035622, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.9648163, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 15706\n",
+ "Discriminator Loss: tf.Tensor(0.2088376, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.900718, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 15707\n",
+ "Discriminator Loss: tf.Tensor(1.0754356, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.6663537, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 15708\n",
+ "Discriminator Loss: tf.Tensor(0.25108516, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.1370902, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 15709\n",
+ "Discriminator Loss: tf.Tensor(0.27372998, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.80819553, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 15710\n",
+ "Discriminator Loss: tf.Tensor(0.80895007, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.7449481, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 15711\n",
+ "Discriminator Loss: tf.Tensor(0.13788706, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.4338173, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 15712\n",
+ "Discriminator Loss: tf.Tensor(0.8727986, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.3609806, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 15713\n",
+ "Discriminator Loss: tf.Tensor(0.48684987, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.6096902, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 15714\n",
+ "Discriminator Loss: tf.Tensor(0.19559357, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.0290176, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 15715\n",
+ "Discriminator Loss: tf.Tensor(0.5027267, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.931048, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 15716\n",
+ "Discriminator Loss: tf.Tensor(1.1636024, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.02833783, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 15717\n",
+ "Discriminator Loss: tf.Tensor(1.8208363, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(3.3666992, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 15718\n",
+ "Discriminator Loss: tf.Tensor(0.49433878, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.72633713, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 15719\n",
+ "Discriminator Loss: tf.Tensor(0.94731057, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.2642078, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 15720\n",
+ "Discriminator Loss: tf.Tensor(1.0692677, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.019360216, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 15721\n",
+ "Discriminator Loss: tf.Tensor(0.6022265, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.5459316, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 15722\n",
+ "Discriminator Loss: tf.Tensor(0.5272528, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.8207932, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 15723\n",
+ "Discriminator Loss: tf.Tensor(1.4267071, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.7457457, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 15724\n",
+ "Discriminator Loss: tf.Tensor(0.58498055, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.49441004, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 15725\n",
+ "Discriminator Loss: tf.Tensor(0.7258633, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.4148705, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 15726\n",
+ "Discriminator Loss: tf.Tensor(0.030392906, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.2089831, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 15727\n",
+ "Discriminator Loss: tf.Tensor(79.69726, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.7530686, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 15728\n",
+ "Discriminator Loss: tf.Tensor(26.984062, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.4289362, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 15729\n",
+ "Discriminator Loss: tf.Tensor(11.352187, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.1881206, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 15730\n",
+ "Discriminator Loss: tf.Tensor(6.0718384, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.3373666, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 15731\n",
+ "Discriminator Loss: tf.Tensor(5.028112, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.36177382, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 15732\n",
+ "Discriminator Loss: tf.Tensor(4.2728295, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.40526655, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 15733\n",
+ "Discriminator Loss: tf.Tensor(3.684147, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.44634652, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 15734\n",
+ "Discriminator Loss: tf.Tensor(3.4598389, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.50068367, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 15735\n",
+ "Discriminator Loss: tf.Tensor(3.1434762, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.53799456, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 15736\n",
+ "Discriminator Loss: tf.Tensor(3.0774856, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.5909417, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 15737\n",
+ "Discriminator Loss: tf.Tensor(2.6960702, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.62466663, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 15738\n",
+ "Discriminator Loss: tf.Tensor(2.6481931, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.61555904, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 15739\n",
+ "Discriminator Loss: tf.Tensor(2.4111698, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.6295186, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 15740\n",
+ "Discriminator Loss: tf.Tensor(2.366403, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.5723527, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 15741\n",
+ "Discriminator Loss: tf.Tensor(2.3284166, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.68551844, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 15742\n",
+ "Discriminator Loss: tf.Tensor(2.21265, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.6213916, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 15743\n",
+ "Discriminator Loss: tf.Tensor(2.2668848, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.623118, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 15744\n",
+ "Discriminator Loss: tf.Tensor(2.234078, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.652085, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 15745\n",
+ "Discriminator Loss: tf.Tensor(2.0784683, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.641629, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 15746\n",
+ "Discriminator Loss: tf.Tensor(2.0054955, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.7133918, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 15747\n",
+ "Discriminator Loss: tf.Tensor(1.9718306, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.6280659, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 15748\n",
+ "Discriminator Loss: tf.Tensor(1.9870228, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.7072342, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 15749\n",
+ "Discriminator Loss: tf.Tensor(1.950567, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.7015069, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 15750\n",
+ "Discriminator Loss: tf.Tensor(2.0114002, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.7203172, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 15751\n",
+ "Discriminator Loss: tf.Tensor(1.9510419, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.7071182, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 15752\n",
+ "Discriminator Loss: tf.Tensor(1.9135938, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.7201634, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 15753\n",
+ "Discriminator Loss: tf.Tensor(1.8351978, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.546112, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 15754\n",
+ "Discriminator Loss: tf.Tensor(1.8474104, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.66418326, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 15755\n",
+ "Discriminator Loss: tf.Tensor(1.9000832, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.65415406, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 15756\n",
+ "Discriminator Loss: tf.Tensor(1.9226675, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.63394314, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 15757\n",
+ "Discriminator Loss: tf.Tensor(1.9067228, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.67288136, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 15758\n",
+ "Discriminator Loss: tf.Tensor(1.6506333, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.7472351, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 15759\n",
+ "Discriminator Loss: tf.Tensor(1.7228881, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.49123654, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 15760\n",
+ "Discriminator Loss: tf.Tensor(1.8440561, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.662167, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 15761\n",
+ "Discriminator Loss: tf.Tensor(1.9116138, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.6820097, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 15762\n",
+ "Discriminator Loss: tf.Tensor(1.6843319, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.0084237, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 15763\n",
+ "Discriminator Loss: tf.Tensor(1.8593135, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.06316415, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 15764\n",
+ "Discriminator Loss: tf.Tensor(1.7053343, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.1801429, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 15765\n",
+ "Discriminator Loss: tf.Tensor(1.4948716, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.34525117, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 15766\n",
+ "Discriminator Loss: tf.Tensor(1.5269182, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.262789, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 15767\n",
+ "Discriminator Loss: tf.Tensor(1.6535219, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.30640075, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 15768\n",
+ "Discriminator Loss: tf.Tensor(1.5304183, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.4171255, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 15769\n",
+ "Discriminator Loss: tf.Tensor(1.3315568, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.41527367, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 15770\n",
+ "Discriminator Loss: tf.Tensor(1.2883779, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.3728155, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 15771\n",
+ "Discriminator Loss: tf.Tensor(1.6598897, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.2297006, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 15772\n",
+ "Discriminator Loss: tf.Tensor(1.9572201, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.529487, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 15773\n",
+ "Discriminator Loss: tf.Tensor(1.6291833, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.14826477, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 15774\n",
+ "Discriminator Loss: tf.Tensor(1.4817876, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.03275879, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 15775\n",
+ "Discriminator Loss: tf.Tensor(1.3992938, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.1764787, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 15776\n",
+ "Discriminator Loss: tf.Tensor(1.3163216, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.18862987, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 15777\n",
+ "Discriminator Loss: tf.Tensor(1.441092, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.44198465, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 15778\n",
+ "Discriminator Loss: tf.Tensor(1.2581964, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.40914717, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 15779\n",
+ "Discriminator Loss: tf.Tensor(0.95324796, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.590393, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 15780\n",
+ "Discriminator Loss: tf.Tensor(0.5706409, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.8468248, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 15781\n",
+ "Discriminator Loss: tf.Tensor(1.1952384, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.2810675, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 15782\n",
+ "Discriminator Loss: tf.Tensor(1.4983044, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.3773403, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 15783\n",
+ "Discriminator Loss: tf.Tensor(1.1256715, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.73461866, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 15784\n",
+ "Discriminator Loss: tf.Tensor(1.0201209, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.49257717, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 15785\n",
+ "Discriminator Loss: tf.Tensor(0.6120831, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.1727868, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 15786\n",
+ "Discriminator Loss: tf.Tensor(1.8042622, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.7370531, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 15787\n",
+ "Discriminator Loss: tf.Tensor(0.7796301, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.0270962, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 15788\n",
+ "Discriminator Loss: tf.Tensor(0.72061145, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.5637948, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 15789\n",
+ "Discriminator Loss: tf.Tensor(0.34538794, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.94583994, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 15790\n",
+ "Discriminator Loss: tf.Tensor(0.9887158, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.816946, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 15791\n",
+ "Discriminator Loss: tf.Tensor(1.3312336, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.18533684, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 15792\n",
+ "Discriminator Loss: tf.Tensor(0.62775916, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.2318668, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 15793\n",
+ "Discriminator Loss: tf.Tensor(1.1959888, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.04561791, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 15794\n",
+ "Discriminator Loss: tf.Tensor(0.24296854, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.1862801, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 15795\n",
+ "Discriminator Loss: tf.Tensor(1.3812269, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.10792818, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 15796\n",
+ "Discriminator Loss: tf.Tensor(0.33265352, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.4702158, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 15797\n",
+ "Discriminator Loss: tf.Tensor(0.6808676, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.69368815, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 15798\n",
+ "Discriminator Loss: tf.Tensor(0.47283268, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.9456695, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 15799\n",
+ "Discriminator Loss: tf.Tensor(0.80740356, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.29406813, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 15800\n",
+ "Discriminator Loss: tf.Tensor(0.5653312, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.8526415, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 15801\n",
+ "Discriminator Loss: tf.Tensor(0.5255535, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.6735077, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 15802\n",
+ "Discriminator Loss: tf.Tensor(0.48422325, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.7195274, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 15803\n",
+ "Discriminator Loss: tf.Tensor(1.0034798, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.015778475, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 15804\n",
+ "Discriminator Loss: tf.Tensor(0.56632173, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.8276173, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 15805\n",
+ "Discriminator Loss: tf.Tensor(0.9982978, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.28457332, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 15806\n",
+ "Discriminator Loss: tf.Tensor(0.5357185, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.0958138, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 15807\n",
+ "Discriminator Loss: tf.Tensor(0.51799184, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.63447505, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 15808\n",
+ "Discriminator Loss: tf.Tensor(0.48047394, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.3121963, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 15809\n",
+ "Discriminator Loss: tf.Tensor(0.3930724, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.71544313, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 15810\n",
+ "Discriminator Loss: tf.Tensor(0.26741397, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.7335386, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 15811\n",
+ "Discriminator Loss: tf.Tensor(0.28843373, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.2960622, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 15812\n",
+ "Discriminator Loss: tf.Tensor(1.6706241, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.5795539, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 15813\n",
+ "Discriminator Loss: tf.Tensor(1.2392461, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.5795534, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 15814\n",
+ "Discriminator Loss: tf.Tensor(0.317616, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.7320517, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 15815\n",
+ "Discriminator Loss: tf.Tensor(0.48341337, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.5701284, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 15816\n",
+ "Discriminator Loss: tf.Tensor(0.34405518, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.0780877, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 15817\n",
+ "Discriminator Loss: tf.Tensor(0.44362295, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.8542631, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 15818\n",
+ "Discriminator Loss: tf.Tensor(0.87490356, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(3.0004685, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 15819\n",
+ "Discriminator Loss: tf.Tensor(0.3704673, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.0164124, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 15820\n",
+ "Discriminator Loss: tf.Tensor(0.2995351, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.3505062, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 15821\n",
+ "Discriminator Loss: tf.Tensor(1.4313645, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.40620494, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 15822\n",
+ "Discriminator Loss: tf.Tensor(1.1644462, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(3.0348747, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 15823\n",
+ "Discriminator Loss: tf.Tensor(0.5526759, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.5607197, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 15824\n",
+ "Discriminator Loss: tf.Tensor(0.857309, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.7524223, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 15825\n",
+ "Discriminator Loss: tf.Tensor(0.56223494, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.56611896, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 15826\n",
+ "Discriminator Loss: tf.Tensor(1.0989004, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(3.1973145, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 15827\n",
+ "Discriminator Loss: tf.Tensor(0.22178379, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.93288165, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 15828\n",
+ "Discriminator Loss: tf.Tensor(1.1913316, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.7085388, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 15829\n",
+ "Discriminator Loss: tf.Tensor(0.21545726, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.9014108, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 15830\n",
+ "Discriminator Loss: tf.Tensor(0.6381533, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.8125696, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 15831\n",
+ "Discriminator Loss: tf.Tensor(0.4307688, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.9598415, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 15832\n",
+ "Discriminator Loss: tf.Tensor(0.9130342, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.7625992, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 15833\n",
+ "Discriminator Loss: tf.Tensor(0.83426046, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.47873512, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 15834\n",
+ "Discriminator Loss: tf.Tensor(0.8954984, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.873299, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 15835\n",
+ "Discriminator Loss: tf.Tensor(0.35667384, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.7290614, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 15836\n",
+ "Discriminator Loss: tf.Tensor(0.44185495, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.912419, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 15837\n",
+ "Discriminator Loss: tf.Tensor(0.47001016, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.873157, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 15838\n",
+ "Discriminator Loss: tf.Tensor(0.5443083, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.53457236, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 15839\n",
+ "Discriminator Loss: tf.Tensor(0.95409364, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.8012009, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 15840\n",
+ "Discriminator Loss: tf.Tensor(0.16373524, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.9418998, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 15841\n",
+ "Discriminator Loss: tf.Tensor(0.5528095, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.8666255, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 15842\n",
+ "Discriminator Loss: tf.Tensor(0.65436155, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.79359764, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 15843\n",
+ "Discriminator Loss: tf.Tensor(0.5031381, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.2064412, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 15844\n",
+ "Discriminator Loss: tf.Tensor(1.4216653, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.047703803, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 15845\n",
+ "Discriminator Loss: tf.Tensor(1.1919637, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(3.1067817, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 15846\n",
+ "Discriminator Loss: tf.Tensor(0.24784392, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.9870491, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 15847\n",
+ "Discriminator Loss: tf.Tensor(0.32670882, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.8932985, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 15848\n",
+ "Discriminator Loss: tf.Tensor(0.69502866, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.35227475, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 15849\n",
+ "Discriminator Loss: tf.Tensor(0.68200886, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(3.1922843, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 15850\n",
+ "Discriminator Loss: tf.Tensor(0.7470444, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.9317481, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 15851\n",
+ "Discriminator Loss: tf.Tensor(0.7735647, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.7998827, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 15852\n",
+ "Discriminator Loss: tf.Tensor(0.24774963, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.86990577, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 15853\n",
+ "Discriminator Loss: tf.Tensor(1.3406134, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(3.5697339, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 15854\n",
+ "Discriminator Loss: tf.Tensor(0.06193873, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.2727455, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 15855\n",
+ "Discriminator Loss: tf.Tensor(0.46844473, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.69001323, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 15856\n",
+ "Discriminator Loss: tf.Tensor(1.239542, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(3.5787802, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 15857\n",
+ "Discriminator Loss: tf.Tensor(0.17312253, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.5951924, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 15858\n",
+ "Discriminator Loss: tf.Tensor(0.9325073, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.14880133, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 15859\n",
+ "Discriminator Loss: tf.Tensor(0.9867516, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.4086928, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 15860\n",
+ "Discriminator Loss: tf.Tensor(0.35435483, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.9382642, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 15861\n",
+ "Discriminator Loss: tf.Tensor(0.90349543, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.245721, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 15862\n",
+ "Discriminator Loss: tf.Tensor(0.9256604, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.42038313, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 15863\n",
+ "Discriminator Loss: tf.Tensor(1.0305033, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.6372392, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 15864\n",
+ "Discriminator Loss: tf.Tensor(0.35737747, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.0367149, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 15865\n",
+ "Discriminator Loss: tf.Tensor(0.36271107, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.1848409, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 15866\n",
+ "Discriminator Loss: tf.Tensor(1.5018226, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.4089913, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 15867\n",
+ "Discriminator Loss: tf.Tensor(0.851208, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.2682002, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 15868\n",
+ "Discriminator Loss: tf.Tensor(1.4721768, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.021790802, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 15869\n",
+ "Discriminator Loss: tf.Tensor(0.46728775, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.5409274, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 15870\n",
+ "Discriminator Loss: tf.Tensor(0.77371, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.43353724, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 15871\n",
+ "Discriminator Loss: tf.Tensor(0.4440384, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.3205895, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 15872\n",
+ "Discriminator Loss: tf.Tensor(0.734223, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.2367189, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 15873\n",
+ "Discriminator Loss: tf.Tensor(1.800784, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.55642194, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 15874\n",
+ "Discriminator Loss: tf.Tensor(0.51467085, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.5109634, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 15875\n",
+ "Discriminator Loss: tf.Tensor(0.7349058, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.46989867, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 15876\n",
+ "Discriminator Loss: tf.Tensor(0.48486185, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.0382032, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 15877\n",
+ "Discriminator Loss: tf.Tensor(0.6197907, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.5292554, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 15878\n",
+ "Discriminator Loss: tf.Tensor(1.145327, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.3200743, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 15879\n",
+ "Discriminator Loss: tf.Tensor(0.9090743, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.20607461, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 15880\n",
+ "Discriminator Loss: tf.Tensor(0.40880108, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.078282, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 15881\n",
+ "Discriminator Loss: tf.Tensor(0.3730273, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.8390654, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 15882\n",
+ "Discriminator Loss: tf.Tensor(0.93276024, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.9056714, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 15883\n",
+ "Discriminator Loss: tf.Tensor(0.21213081, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.4230219, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 15884\n",
+ "Discriminator Loss: tf.Tensor(0.9020869, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.23830855, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 15885\n",
+ "Discriminator Loss: tf.Tensor(1.0503149, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.8119724, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 15886\n",
+ "Discriminator Loss: tf.Tensor(0.27135262, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.847385, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 15887\n",
+ "Discriminator Loss: tf.Tensor(0.78237706, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.799722, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 15888\n",
+ "Discriminator Loss: tf.Tensor(0.20454794, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.0435115, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 15889\n",
+ "Discriminator Loss: tf.Tensor(0.37147534, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.3067411, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 15890\n",
+ "Discriminator Loss: tf.Tensor(1.1651878, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.1294653, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 15891\n",
+ "Discriminator Loss: tf.Tensor(0.6642784, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.841077, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 15892\n",
+ "Discriminator Loss: tf.Tensor(0.5732766, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.63963443, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 15893\n",
+ "Discriminator Loss: tf.Tensor(0.7616751, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.9111989, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 15894\n",
+ "Discriminator Loss: tf.Tensor(0.93909854, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.50638753, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 15895\n",
+ "Discriminator Loss: tf.Tensor(0.93484443, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.9486983, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 15896\n",
+ "Discriminator Loss: tf.Tensor(0.6289946, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.43608356, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 15897\n",
+ "Discriminator Loss: tf.Tensor(0.5117017, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.8490276, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 15898\n",
+ "Discriminator Loss: tf.Tensor(0.14708705, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.6456751, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 15899\n",
+ "Discriminator Loss: tf.Tensor(97.647766, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.1482844, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 15900\n",
+ "Discriminator Loss: tf.Tensor(42.617104, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.4357643, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 15901\n",
+ "Discriminator Loss: tf.Tensor(12.410075, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.6277695, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 15902\n",
+ "Discriminator Loss: tf.Tensor(6.909932, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.67976123, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 15903\n",
+ "Discriminator Loss: tf.Tensor(5.865937, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.6911235, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 15904\n",
+ "Discriminator Loss: tf.Tensor(4.1881037, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.69512206, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 15905\n",
+ "Discriminator Loss: tf.Tensor(4.779237, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.61211973, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 15906\n",
+ "Discriminator Loss: tf.Tensor(3.9291306, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.49489298, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 15907\n",
+ "Discriminator Loss: tf.Tensor(3.9063778, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.42588532, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 15908\n",
+ "Discriminator Loss: tf.Tensor(3.3948488, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.51404023, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 15909\n",
+ "Discriminator Loss: tf.Tensor(3.4787157, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.54662603, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 15910\n",
+ "Discriminator Loss: tf.Tensor(3.1988802, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.6262961, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 15911\n",
+ "Discriminator Loss: tf.Tensor(2.9841075, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.64399916, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 15912\n",
+ "Discriminator Loss: tf.Tensor(2.8543415, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.6645177, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 15913\n",
+ "Discriminator Loss: tf.Tensor(2.8226337, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.6878136, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 15914\n",
+ "Discriminator Loss: tf.Tensor(2.599264, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.7166798, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 15915\n",
+ "Discriminator Loss: tf.Tensor(2.538379, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.6981473, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 15916\n",
+ "Discriminator Loss: tf.Tensor(2.412755, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.713381, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 15917\n",
+ "Discriminator Loss: tf.Tensor(2.2995026, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.68975395, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 15918\n",
+ "Discriminator Loss: tf.Tensor(2.3775768, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.7311662, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 15919\n",
+ "Discriminator Loss: tf.Tensor(2.165103, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.79483074, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 15920\n",
+ "Discriminator Loss: tf.Tensor(2.2042112, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.66388917, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 15921\n",
+ "Discriminator Loss: tf.Tensor(2.1619742, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.76501924, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 15922\n",
+ "Discriminator Loss: tf.Tensor(2.03209, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.74043435, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 15923\n",
+ "Discriminator Loss: tf.Tensor(2.153214, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.69889784, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 15924\n",
+ "Discriminator Loss: tf.Tensor(2.1802714, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.54283935, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 15925\n",
+ "Discriminator Loss: tf.Tensor(1.9805722, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.69721085, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 15926\n",
+ "Discriminator Loss: tf.Tensor(1.847688, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.8670401, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 15927\n",
+ "Discriminator Loss: tf.Tensor(1.7591676, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.787694, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 15928\n",
+ "Discriminator Loss: tf.Tensor(1.6811085, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.66115034, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 15929\n",
+ "Discriminator Loss: tf.Tensor(1.9115407, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.7120421, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 15930\n",
+ "Discriminator Loss: tf.Tensor(1.8606253, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.80623657, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 15931\n",
+ "Discriminator Loss: tf.Tensor(1.71507, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.8666242, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 15932\n",
+ "Discriminator Loss: tf.Tensor(1.773007, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.99339455, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 15933\n",
+ "Discriminator Loss: tf.Tensor(1.8188574, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.18246211, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 15934\n",
+ "Discriminator Loss: tf.Tensor(1.6069182, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.5816751, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 15935\n",
+ "Discriminator Loss: tf.Tensor(1.6522083, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.5845623, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 15936\n",
+ "Discriminator Loss: tf.Tensor(1.5293802, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.6508687, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 15937\n",
+ "Discriminator Loss: tf.Tensor(1.6611543, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.6491423, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 15938\n",
+ "Discriminator Loss: tf.Tensor(1.6447093, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.7693026, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 15939\n",
+ "Discriminator Loss: tf.Tensor(1.5991061, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.999132, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 15940\n",
+ "Discriminator Loss: tf.Tensor(1.5737482, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.08820904, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 15941\n",
+ "Discriminator Loss: tf.Tensor(1.3371198, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.5109188, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 15942\n",
+ "Discriminator Loss: tf.Tensor(1.2261853, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.6393371, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 15943\n",
+ "Discriminator Loss: tf.Tensor(1.6889657, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.3137509, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 15944\n",
+ "Discriminator Loss: tf.Tensor(1.4461716, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.7444137, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 15945\n",
+ "Discriminator Loss: tf.Tensor(1.2142167, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.7413253, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 15946\n",
+ "Discriminator Loss: tf.Tensor(1.2123883, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.0374005, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 15947\n",
+ "Discriminator Loss: tf.Tensor(1.5277936, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.338136, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 15948\n",
+ "Discriminator Loss: tf.Tensor(1.2306312, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.4810555, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 15949\n",
+ "Discriminator Loss: tf.Tensor(1.2672359, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.2867311, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 15950\n",
+ "Discriminator Loss: tf.Tensor(0.8073946, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.8295142, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 15951\n",
+ "Discriminator Loss: tf.Tensor(0.90946037, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.0551623, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 15952\n",
+ "Discriminator Loss: tf.Tensor(2.3465235, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-1.1828413, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 15953\n",
+ "Discriminator Loss: tf.Tensor(1.3806958, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.70902586, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 15954\n",
+ "Discriminator Loss: tf.Tensor(1.1520181, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.2013539, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 15955\n",
+ "Discriminator Loss: tf.Tensor(1.3683399, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.15349104, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 15956\n",
+ "Discriminator Loss: tf.Tensor(0.9637061, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.65383357, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 15957\n",
+ "Discriminator Loss: tf.Tensor(0.69694614, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.7505252, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 15958\n",
+ "Discriminator Loss: tf.Tensor(0.8418778, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.3155742, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 15959\n",
+ "Discriminator Loss: tf.Tensor(1.4265295, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.35682213, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 15960\n",
+ "Discriminator Loss: tf.Tensor(0.5536719, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.9007897, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 15961\n",
+ "Discriminator Loss: tf.Tensor(0.7221757, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.97698754, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 15962\n",
+ "Discriminator Loss: tf.Tensor(0.66842675, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.83347386, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 15963\n",
+ "Discriminator Loss: tf.Tensor(0.96291226, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.8740488, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 15964\n",
+ "Discriminator Loss: tf.Tensor(1.4869184, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.45639503, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 15965\n",
+ "Discriminator Loss: tf.Tensor(0.5933088, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.4863883, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 15966\n",
+ "Discriminator Loss: tf.Tensor(0.51633835, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.5901923, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 15967\n",
+ "Discriminator Loss: tf.Tensor(0.6333858, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.7947387, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 15968\n",
+ "Discriminator Loss: tf.Tensor(0.5237194, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.71582, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 15969\n",
+ "Discriminator Loss: tf.Tensor(0.6328808, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.148834, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 15970\n",
+ "Discriminator Loss: tf.Tensor(1.4332682, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.4137005, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 15971\n",
+ "Discriminator Loss: tf.Tensor(0.44951636, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.7042154, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 15972\n",
+ "Discriminator Loss: tf.Tensor(1.2293952, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.16408964, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 15973\n",
+ "Discriminator Loss: tf.Tensor(0.29219314, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.1029003, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 15974\n",
+ "Discriminator Loss: tf.Tensor(1.7816845, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.50405145, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 15975\n",
+ "Discriminator Loss: tf.Tensor(1.2440304, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.9050087, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 15976\n",
+ "Discriminator Loss: tf.Tensor(1.0812038, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.03968553, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 15977\n",
+ "Discriminator Loss: tf.Tensor(0.9766421, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.7722069, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 15978\n",
+ "Discriminator Loss: tf.Tensor(0.7215786, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.3102019, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 15979\n",
+ "Discriminator Loss: tf.Tensor(0.5521367, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.962591, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 15980\n",
+ "Discriminator Loss: tf.Tensor(1.287771, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.15016496, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 15981\n",
+ "Discriminator Loss: tf.Tensor(0.92784864, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.6117573, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 15982\n",
+ "Discriminator Loss: tf.Tensor(1.6811614, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.5654042, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 15983\n",
+ "Discriminator Loss: tf.Tensor(0.67762285, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.6508244, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 15984\n",
+ "Discriminator Loss: tf.Tensor(0.92992425, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.109867685, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 15985\n",
+ "Discriminator Loss: tf.Tensor(0.47153708, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.3345478, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 15986\n",
+ "Discriminator Loss: tf.Tensor(0.4372794, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.7328515, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 15987\n",
+ "Discriminator Loss: tf.Tensor(0.392732, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.7919455, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 15988\n",
+ "Discriminator Loss: tf.Tensor(0.23837447, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.0383673, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 15989\n",
+ "Discriminator Loss: tf.Tensor(0.298675, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.35492, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 15990\n",
+ "Discriminator Loss: tf.Tensor(1.2197715, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.08340797, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 15991\n",
+ "Discriminator Loss: tf.Tensor(1.1731932, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.800143, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 15992\n",
+ "Discriminator Loss: tf.Tensor(0.06654817, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.0474643, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 15993\n",
+ "Discriminator Loss: tf.Tensor(0.43035555, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.75260156, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 15994\n",
+ "Discriminator Loss: tf.Tensor(1.0853057, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.759489, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 15995\n",
+ "Discriminator Loss: tf.Tensor(0.44881535, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.7252796, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 15996\n",
+ "Discriminator Loss: tf.Tensor(1.3002452, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.7911794, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 15997\n",
+ "Discriminator Loss: tf.Tensor(0.52130973, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.3496552, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 15998\n",
+ "Discriminator Loss: tf.Tensor(1.1017209, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.00562494, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 15999\n",
+ "Discriminator Loss: tf.Tensor(0.70593727, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.6715697, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 16000\n",
+ "Discriminator Loss: tf.Tensor(1.441991, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.04435751, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 16001\n",
+ "Discriminator Loss: tf.Tensor(0.9614423, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.0395317, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 16002\n",
+ "Discriminator Loss: tf.Tensor(0.9975271, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.23462135, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 16003\n",
+ "Discriminator Loss: tf.Tensor(0.41896254, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.8926147, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 16004\n",
+ "Discriminator Loss: tf.Tensor(0.75350165, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.3018094, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 16005\n",
+ "Discriminator Loss: tf.Tensor(0.87471795, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.0845947, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 16006\n",
+ "Discriminator Loss: tf.Tensor(0.19645718, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.0851346, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 16007\n",
+ "Discriminator Loss: tf.Tensor(0.42838463, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.6503666, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 16008\n",
+ "Discriminator Loss: tf.Tensor(0.8974291, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.708431, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 16009\n",
+ "Discriminator Loss: tf.Tensor(1.045358, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.13205428, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 16010\n",
+ "Discriminator Loss: tf.Tensor(0.5632786, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.9676908, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 16011\n",
+ "Discriminator Loss: tf.Tensor(1.532559, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.037318725, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 16012\n",
+ "Discriminator Loss: tf.Tensor(0.57356215, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.4518523, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 16013\n",
+ "Discriminator Loss: tf.Tensor(0.20975807, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.1027709, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 16014\n",
+ "Discriminator Loss: tf.Tensor(0.8286611, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.2030741, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 16015\n",
+ "Discriminator Loss: tf.Tensor(0.84729224, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.8366556, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 16016\n",
+ "Discriminator Loss: tf.Tensor(0.078124985, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.1483108, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 16017\n",
+ "Discriminator Loss: tf.Tensor(0.8719093, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.48205808, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 16018\n",
+ "Discriminator Loss: tf.Tensor(0.77263814, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.311566, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 16019\n",
+ "Discriminator Loss: tf.Tensor(0.27941185, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.8503631, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 16020\n",
+ "Discriminator Loss: tf.Tensor(0.5614896, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.1859572, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 16021\n",
+ "Discriminator Loss: tf.Tensor(1.0990524, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.15264852, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 16022\n",
+ "Discriminator Loss: tf.Tensor(0.49504626, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.1462667, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 16023\n",
+ "Discriminator Loss: tf.Tensor(1.264703, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.37745473, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 16024\n",
+ "Discriminator Loss: tf.Tensor(1.3169621, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.2015226, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 16025\n",
+ "Discriminator Loss: tf.Tensor(1.065764, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.02522091, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 16026\n",
+ "Discriminator Loss: tf.Tensor(0.5177052, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.1302626, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 16027\n",
+ "Discriminator Loss: tf.Tensor(0.24471839, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.0521225, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 16028\n",
+ "Discriminator Loss: tf.Tensor(0.9700772, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.095077604, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 16029\n",
+ "Discriminator Loss: tf.Tensor(0.6908836, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.1731465, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 16030\n",
+ "Discriminator Loss: tf.Tensor(0.105336145, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.9774113, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 16031\n",
+ "Discriminator Loss: tf.Tensor(0.24693568, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.94197, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 16032\n",
+ "Discriminator Loss: tf.Tensor(0.61249346, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.4640316, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 16033\n",
+ "Discriminator Loss: tf.Tensor(0.96442765, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.12293086, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 16034\n",
+ "Discriminator Loss: tf.Tensor(0.73303115, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.8404913, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 16035\n",
+ "Discriminator Loss: tf.Tensor(0.3071748, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.38197, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 16036\n",
+ "Discriminator Loss: tf.Tensor(1.0516272, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.08951125, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 16037\n",
+ "Discriminator Loss: tf.Tensor(0.45771462, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.0448399, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 16038\n",
+ "Discriminator Loss: tf.Tensor(0.18586382, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.0470185, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 16039\n",
+ "Discriminator Loss: tf.Tensor(0.49687755, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.3262665, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 16040\n",
+ "Discriminator Loss: tf.Tensor(0.54906106, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.48081407, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 16041\n",
+ "Discriminator Loss: tf.Tensor(1.2910882, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(3.256733, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 16042\n",
+ "Discriminator Loss: tf.Tensor(0.28290454, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.1484708, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 16043\n",
+ "Discriminator Loss: tf.Tensor(1.498748, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.4461411, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 16044\n",
+ "Discriminator Loss: tf.Tensor(0.95965505, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.0160773, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 16045\n",
+ "Discriminator Loss: tf.Tensor(0.6953424, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.3932128, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 16046\n",
+ "Discriminator Loss: tf.Tensor(0.83517504, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.0728006, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 16047\n",
+ "Discriminator Loss: tf.Tensor(0.9413203, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.3161089, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 16048\n",
+ "Discriminator Loss: tf.Tensor(0.62620306, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.3829322, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 16049\n",
+ "Discriminator Loss: tf.Tensor(0.042951703, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.0884184, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 16050\n",
+ "Discriminator Loss: tf.Tensor(41.555256, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.6637389, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 16051\n",
+ "Discriminator Loss: tf.Tensor(36.844116, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.69381374, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 16052\n",
+ "Discriminator Loss: tf.Tensor(9.994659, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.18149157, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 16053\n",
+ "Discriminator Loss: tf.Tensor(6.2695374, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.3872002, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 16054\n",
+ "Discriminator Loss: tf.Tensor(4.575049, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.37142166, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 16055\n",
+ "Discriminator Loss: tf.Tensor(3.4855185, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.36414456, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 16056\n",
+ "Discriminator Loss: tf.Tensor(3.3709881, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.37816787, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 16057\n",
+ "Discriminator Loss: tf.Tensor(3.0383606, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.33629537, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 16058\n",
+ "Discriminator Loss: tf.Tensor(2.972591, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.34957483, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 16059\n",
+ "Discriminator Loss: tf.Tensor(2.7173064, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.34049368, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 16060\n",
+ "Discriminator Loss: tf.Tensor(2.7921388, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.35360965, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 16061\n",
+ "Discriminator Loss: tf.Tensor(2.5693727, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.37650192, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 16062\n",
+ "Discriminator Loss: tf.Tensor(2.4903092, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.39679214, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 16063\n",
+ "Discriminator Loss: tf.Tensor(2.488681, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.3694829, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 16064\n",
+ "Discriminator Loss: tf.Tensor(2.4090612, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.39989868, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 16065\n",
+ "Discriminator Loss: tf.Tensor(2.4739082, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.4107007, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 16066\n",
+ "Discriminator Loss: tf.Tensor(2.3364987, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.4288915, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 16067\n",
+ "Discriminator Loss: tf.Tensor(2.1478896, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.42700338, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 16068\n",
+ "Discriminator Loss: tf.Tensor(2.1045225, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.4477531, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 16069\n",
+ "Discriminator Loss: tf.Tensor(2.1483092, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.39534557, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 16070\n",
+ "Discriminator Loss: tf.Tensor(1.9829594, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.36604992, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 16071\n",
+ "Discriminator Loss: tf.Tensor(1.9862386, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.45524988, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 16072\n",
+ "Discriminator Loss: tf.Tensor(1.9716809, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.40679884, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 16073\n",
+ "Discriminator Loss: tf.Tensor(1.982135, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.47542366, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 16074\n",
+ "Discriminator Loss: tf.Tensor(1.9952341, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.33922005, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 16075\n",
+ "Discriminator Loss: tf.Tensor(2.0085728, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.49707952, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 16076\n",
+ "Discriminator Loss: tf.Tensor(1.896252, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.4764955, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 16077\n",
+ "Discriminator Loss: tf.Tensor(1.8678737, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.41004786, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 16078\n",
+ "Discriminator Loss: tf.Tensor(1.8708823, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.4843988, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 16079\n",
+ "Discriminator Loss: tf.Tensor(1.911521, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.254528, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 16080\n",
+ "Discriminator Loss: tf.Tensor(1.8401622, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.5809627, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 16081\n",
+ "Discriminator Loss: tf.Tensor(1.7038275, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.70005065, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 16082\n",
+ "Discriminator Loss: tf.Tensor(1.7618358, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.9395614, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 16083\n",
+ "Discriminator Loss: tf.Tensor(1.8852224, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.500129, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 16084\n",
+ "Discriminator Loss: tf.Tensor(2.0059123, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.4326419, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 16085\n",
+ "Discriminator Loss: tf.Tensor(1.7442135, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.38632536, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 16086\n",
+ "Discriminator Loss: tf.Tensor(1.766861, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.47306672, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 16087\n",
+ "Discriminator Loss: tf.Tensor(1.4189792, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.53307253, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 16088\n",
+ "Discriminator Loss: tf.Tensor(1.5556769, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.6938608, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 16089\n",
+ "Discriminator Loss: tf.Tensor(25.192476, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(18.686335, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 16090\n",
+ "Discriminator Loss: tf.Tensor(1.9818796, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.5343325, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 16091\n",
+ "Discriminator Loss: tf.Tensor(1.5578525, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.31371835, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 16092\n",
+ "Discriminator Loss: tf.Tensor(1.388979, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.4356998, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 16093\n",
+ "Discriminator Loss: tf.Tensor(1.1314692, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.5176509, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 16094\n",
+ "Discriminator Loss: tf.Tensor(1.2184182, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.3872241, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 16095\n",
+ "Discriminator Loss: tf.Tensor(1.5753508, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.2659756, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 16096\n",
+ "Discriminator Loss: tf.Tensor(1.8449006, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.32908386, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 16097\n",
+ "Discriminator Loss: tf.Tensor(1.8546317, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.19781786, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 16098\n",
+ "Discriminator Loss: tf.Tensor(1.5153515, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.6541697, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 16099\n",
+ "Discriminator Loss: tf.Tensor(1.179654, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.5719798, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 16100\n",
+ "Discriminator Loss: tf.Tensor(0.98180395, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.5998971, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 16101\n",
+ "Discriminator Loss: tf.Tensor(1.1649947, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.25267565, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 16102\n",
+ "Discriminator Loss: tf.Tensor(1.7326505, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.0656768, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 16103\n",
+ "Discriminator Loss: tf.Tensor(1.6884505, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.5235706, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 16104\n",
+ "Discriminator Loss: tf.Tensor(1.3590552, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.7005491, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 16105\n",
+ "Discriminator Loss: tf.Tensor(1.1889998, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.5459084, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 16106\n",
+ "Discriminator Loss: tf.Tensor(0.9957639, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.7529194, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 16107\n",
+ "Discriminator Loss: tf.Tensor(1.0795447, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.149058, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 16108\n",
+ "Discriminator Loss: tf.Tensor(1.5740881, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.38265535, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 16109\n",
+ "Discriminator Loss: tf.Tensor(1.0050966, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.651306, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 16110\n",
+ "Discriminator Loss: tf.Tensor(0.70767206, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.75488895, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 16111\n",
+ "Discriminator Loss: tf.Tensor(0.88736343, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.4113823, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 16112\n",
+ "Discriminator Loss: tf.Tensor(1.0371766, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.12647344, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 16113\n",
+ "Discriminator Loss: tf.Tensor(0.75435203, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.0894219, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 16114\n",
+ "Discriminator Loss: tf.Tensor(0.8131531, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.57797486, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 16115\n",
+ "Discriminator Loss: tf.Tensor(0.254119, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.3150569, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 16116\n",
+ "Discriminator Loss: tf.Tensor(1.4320884, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.37041888, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 16117\n",
+ "Discriminator Loss: tf.Tensor(0.6242827, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.4553261, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 16118\n",
+ "Discriminator Loss: tf.Tensor(0.838267, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.55809087, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 16119\n",
+ "Discriminator Loss: tf.Tensor(0.7256671, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.1447874, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 16120\n",
+ "Discriminator Loss: tf.Tensor(1.2868526, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.13133566, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 16121\n",
+ "Discriminator Loss: tf.Tensor(0.4154923, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.1998644, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 16122\n",
+ "Discriminator Loss: tf.Tensor(0.9674347, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.36006153, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 16123\n",
+ "Discriminator Loss: tf.Tensor(0.35765147, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.5096169, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 16124\n",
+ "Discriminator Loss: tf.Tensor(0.9827232, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.1554894, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 16125\n",
+ "Discriminator Loss: tf.Tensor(0.821032, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.9107372, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 16126\n",
+ "Discriminator Loss: tf.Tensor(0.6337172, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.8312573, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 16127\n",
+ "Discriminator Loss: tf.Tensor(0.36314684, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.8532786, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 16128\n",
+ "Discriminator Loss: tf.Tensor(0.27653256, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.8738992, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 16129\n",
+ "Discriminator Loss: tf.Tensor(0.7083154, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.0711017, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 16130\n",
+ "Discriminator Loss: tf.Tensor(1.1829475, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.037891984, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 16131\n",
+ "Discriminator Loss: tf.Tensor(1.2037905, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.315757, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 16132\n",
+ "Discriminator Loss: tf.Tensor(1.2893258, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.15709005, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 16133\n",
+ "Discriminator Loss: tf.Tensor(0.9560924, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.5572582, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 16134\n",
+ "Discriminator Loss: tf.Tensor(1.2561845, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.10386958, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 16135\n",
+ "Discriminator Loss: tf.Tensor(0.7035271, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.4926583, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 16136\n",
+ "Discriminator Loss: tf.Tensor(1.2990831, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.18505369, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 16137\n",
+ "Discriminator Loss: tf.Tensor(0.83376753, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.5000135, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 16138\n",
+ "Discriminator Loss: tf.Tensor(1.0213622, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.15837674, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 16139\n",
+ "Discriminator Loss: tf.Tensor(0.57815653, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.063803, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 16140\n",
+ "Discriminator Loss: tf.Tensor(0.45227307, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.6139272, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 16141\n",
+ "Discriminator Loss: tf.Tensor(0.46274254, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.4327104, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 16142\n",
+ "Discriminator Loss: tf.Tensor(0.34679663, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.9436262, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 16143\n",
+ "Discriminator Loss: tf.Tensor(0.86379665, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(3.1806648, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 16144\n",
+ "Discriminator Loss: tf.Tensor(0.27825016, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.79115695, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 16145\n",
+ "Discriminator Loss: tf.Tensor(0.41871312, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.7966583, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 16146\n",
+ "Discriminator Loss: tf.Tensor(0.36159822, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.2744666, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 16147\n",
+ "Discriminator Loss: tf.Tensor(1.6353844, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.59428906, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 16148\n",
+ "Discriminator Loss: tf.Tensor(0.69099784, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.2019918, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 16149\n",
+ "Discriminator Loss: tf.Tensor(0.8044487, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.6595977, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 16150\n",
+ "Discriminator Loss: tf.Tensor(1.002351, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(3.2090847, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 16151\n",
+ "Discriminator Loss: tf.Tensor(0.094555736, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.1472083, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 16152\n",
+ "Discriminator Loss: tf.Tensor(0.9395247, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.20286952, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 16153\n",
+ "Discriminator Loss: tf.Tensor(0.35523278, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.375154, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 16154\n",
+ "Discriminator Loss: tf.Tensor(0.037739057, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.4063978, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 16155\n",
+ "Discriminator Loss: tf.Tensor(95.40009, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.2755508, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 16156\n",
+ "Discriminator Loss: tf.Tensor(24.621334, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.8296402, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 16157\n",
+ "Discriminator Loss: tf.Tensor(9.170989, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.61934793, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 16158\n",
+ "Discriminator Loss: tf.Tensor(7.2115912, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.5504819, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 16159\n",
+ "Discriminator Loss: tf.Tensor(5.9208746, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.5013205, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 16160\n",
+ "Discriminator Loss: tf.Tensor(4.5903277, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.50398487, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 16161\n",
+ "Discriminator Loss: tf.Tensor(4.556543, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.49738967, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 16162\n",
+ "Discriminator Loss: tf.Tensor(3.7000186, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.47399592, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 16163\n",
+ "Discriminator Loss: tf.Tensor(3.8113942, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.4758644, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 16164\n",
+ "Discriminator Loss: tf.Tensor(3.4825563, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.4835106, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 16165\n",
+ "Discriminator Loss: tf.Tensor(2.8455458, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.5129635, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 16166\n",
+ "Discriminator Loss: tf.Tensor(2.9722705, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.53107053, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 16167\n",
+ "Discriminator Loss: tf.Tensor(2.5274513, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.5945573, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 16168\n",
+ "Discriminator Loss: tf.Tensor(2.633737, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.6061341, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 16169\n",
+ "Discriminator Loss: tf.Tensor(2.6033778, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.65367943, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 16170\n",
+ "Discriminator Loss: tf.Tensor(2.5905187, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.70414084, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 16171\n",
+ "Discriminator Loss: tf.Tensor(2.5463097, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.71919185, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 16172\n",
+ "Discriminator Loss: tf.Tensor(2.5301147, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.73486894, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 16173\n",
+ "Discriminator Loss: tf.Tensor(2.4453535, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.7247262, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 16174\n",
+ "Discriminator Loss: tf.Tensor(2.3666015, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.64299977, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 16175\n",
+ "Discriminator Loss: tf.Tensor(2.2500932, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.6844781, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 16176\n",
+ "Discriminator Loss: tf.Tensor(2.21575, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.71089935, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 16177\n",
+ "Discriminator Loss: tf.Tensor(1.9884785, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.63304204, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 16178\n",
+ "Discriminator Loss: tf.Tensor(2.0698745, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.6269162, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 16179\n",
+ "Discriminator Loss: tf.Tensor(2.0394597, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.65057576, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 16180\n",
+ "Discriminator Loss: tf.Tensor(1.9521399, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.7542141, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 16181\n",
+ "Discriminator Loss: tf.Tensor(1.8958497, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.8067662, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 16182\n",
+ "Discriminator Loss: tf.Tensor(1.9233129, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.79407376, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 16183\n",
+ "Discriminator Loss: tf.Tensor(1.9207494, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.71107143, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 16184\n",
+ "Discriminator Loss: tf.Tensor(1.9419371, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.6698906, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 16185\n",
+ "Discriminator Loss: tf.Tensor(1.9475332, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.69552404, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 16186\n",
+ "Discriminator Loss: tf.Tensor(1.8236772, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.6446132, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 16187\n",
+ "Discriminator Loss: tf.Tensor(1.6823381, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.6202101, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 16188\n",
+ "Discriminator Loss: tf.Tensor(1.6433431, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.63711596, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 16189\n",
+ "Discriminator Loss: tf.Tensor(1.838865, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.7150712, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 16190\n",
+ "Discriminator Loss: tf.Tensor(1.7871287, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.71385574, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 16191\n",
+ "Discriminator Loss: tf.Tensor(1.695902, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.7646253, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 16192\n",
+ "Discriminator Loss: tf.Tensor(1.6185136, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.8432295, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 16193\n",
+ "Discriminator Loss: tf.Tensor(1.7816377, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.1407523, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 16194\n",
+ "Discriminator Loss: tf.Tensor(1.8997658, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.1098392, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 16195\n",
+ "Discriminator Loss: tf.Tensor(1.2916117, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.10901084, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 16196\n",
+ "Discriminator Loss: tf.Tensor(1.4820875, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.30087915, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 16197\n",
+ "Discriminator Loss: tf.Tensor(1.9376278, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.3590174, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 16198\n",
+ "Discriminator Loss: tf.Tensor(1.8473592, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.07311306, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 16199\n",
+ "Discriminator Loss: tf.Tensor(1.6689408, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.35226905, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 16200\n",
+ "Discriminator Loss: tf.Tensor(1.3557664, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.610851, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 16201\n",
+ "Discriminator Loss: tf.Tensor(1.1660696, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.5820554, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 16202\n",
+ "Discriminator Loss: tf.Tensor(1.5606606, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.23645927, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 16203\n",
+ "Discriminator Loss: tf.Tensor(1.3544141, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.41359854, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 16204\n",
+ "Discriminator Loss: tf.Tensor(1.5080353, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.0340922, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 16205\n",
+ "Discriminator Loss: tf.Tensor(2.0380166, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.726208, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 16206\n",
+ "Discriminator Loss: tf.Tensor(1.6384282, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.06290407, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 16207\n",
+ "Discriminator Loss: tf.Tensor(0.9152015, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.5766192, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 16208\n",
+ "Discriminator Loss: tf.Tensor(0.4808048, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.79873735, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 16209\n",
+ "Discriminator Loss: tf.Tensor(38.91626, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(36.19469, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 16210\n",
+ "Discriminator Loss: tf.Tensor(1.7233591, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.5238177, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 16211\n",
+ "Discriminator Loss: tf.Tensor(1.4465747, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.7081706, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 16212\n",
+ "Discriminator Loss: tf.Tensor(1.2679431, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.787541, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 16213\n",
+ "Discriminator Loss: tf.Tensor(1.1436522, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.9135917, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 16214\n",
+ "Discriminator Loss: tf.Tensor(1.2812569, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.59238124, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 16215\n",
+ "Discriminator Loss: tf.Tensor(1.3342873, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.63144845, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 16216\n",
+ "Discriminator Loss: tf.Tensor(1.1279659, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.6119366, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 16217\n",
+ "Discriminator Loss: tf.Tensor(0.97147167, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.008655, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 16218\n",
+ "Discriminator Loss: tf.Tensor(1.0765066, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.24517612, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 16219\n",
+ "Discriminator Loss: tf.Tensor(1.0738213, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.1368227, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 16220\n",
+ "Discriminator Loss: tf.Tensor(1.6864244, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.52365553, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 16221\n",
+ "Discriminator Loss: tf.Tensor(1.1624191, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.61236566, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 16222\n",
+ "Discriminator Loss: tf.Tensor(0.95427895, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.76599145, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 16223\n",
+ "Discriminator Loss: tf.Tensor(0.8426118, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.2232006, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 16224\n",
+ "Discriminator Loss: tf.Tensor(1.2451315, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.060379755, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 16225\n",
+ "Discriminator Loss: tf.Tensor(0.5572726, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.97810173, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 16226\n",
+ "Discriminator Loss: tf.Tensor(0.34137142, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.3920351, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 16227\n",
+ "Discriminator Loss: tf.Tensor(0.8910363, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.26295272, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 16228\n",
+ "Discriminator Loss: tf.Tensor(0.65226674, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.295936, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 16229\n",
+ "Discriminator Loss: tf.Tensor(0.9186853, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.2583777, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 16230\n",
+ "Discriminator Loss: tf.Tensor(0.499487, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.2626712, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 16231\n",
+ "Discriminator Loss: tf.Tensor(1.4665803, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.18028466, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 16232\n",
+ "Discriminator Loss: tf.Tensor(0.39759108, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.0856907, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 16233\n",
+ "Discriminator Loss: tf.Tensor(1.5257187, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.3975145, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 16234\n",
+ "Discriminator Loss: tf.Tensor(0.5837751, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.0960633, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 16235\n",
+ "Discriminator Loss: tf.Tensor(1.1169727, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.003978893, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 16236\n",
+ "Discriminator Loss: tf.Tensor(0.6681964, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.1289997, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 16237\n",
+ "Discriminator Loss: tf.Tensor(1.7537233, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.34120727, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 16238\n",
+ "Discriminator Loss: tf.Tensor(0.389481, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.8626413, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 16239\n",
+ "Discriminator Loss: tf.Tensor(0.8903744, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.0525935, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 16240\n",
+ "Discriminator Loss: tf.Tensor(1.4217458, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.3511808, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 16241\n",
+ "Discriminator Loss: tf.Tensor(0.6025401, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.2875332, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 16242\n",
+ "Discriminator Loss: tf.Tensor(1.3655466, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.12989025, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 16243\n",
+ "Discriminator Loss: tf.Tensor(0.28062502, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.4424483, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 16244\n",
+ "Discriminator Loss: tf.Tensor(0.90370816, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.62968254, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 16245\n",
+ "Discriminator Loss: tf.Tensor(0.8743125, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.9679704, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 16246\n",
+ "Discriminator Loss: tf.Tensor(1.1412854, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.06840425, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 16247\n",
+ "Discriminator Loss: tf.Tensor(0.73033124, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.9110354, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 16248\n",
+ "Discriminator Loss: tf.Tensor(0.26937467, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.0794944, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 16249\n",
+ "Discriminator Loss: tf.Tensor(0.65856785, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.54150105, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 16250\n",
+ "Discriminator Loss: tf.Tensor(0.44683373, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.9984078, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 16251\n",
+ "Discriminator Loss: tf.Tensor(0.38859677, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.7967458, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 16252\n",
+ "Discriminator Loss: tf.Tensor(0.7558931, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.4269965, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 16253\n",
+ "Discriminator Loss: tf.Tensor(0.3095253, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.78662497, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 16254\n",
+ "Discriminator Loss: tf.Tensor(0.7036184, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.0982884, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 16255\n",
+ "Discriminator Loss: tf.Tensor(1.0823867, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.11861127, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 16256\n",
+ "Discriminator Loss: tf.Tensor(1.1991905, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(3.1901226, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 16257\n",
+ "Discriminator Loss: tf.Tensor(0.38450235, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.8350339, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 16258\n",
+ "Discriminator Loss: tf.Tensor(0.36025894, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.3860483, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 16259\n",
+ "Discriminator Loss: tf.Tensor(0.41482142, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.6896418, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 16260\n",
+ "Discriminator Loss: tf.Tensor(1.2908365, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.2088506, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 16261\n",
+ "Discriminator Loss: tf.Tensor(1.2347513, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.06369559, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 16262\n",
+ "Discriminator Loss: tf.Tensor(0.97692823, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.488143, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 16263\n",
+ "Discriminator Loss: tf.Tensor(0.68311954, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.50440747, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 16264\n",
+ "Discriminator Loss: tf.Tensor(0.97105217, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.7856853, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 16265\n",
+ "Discriminator Loss: tf.Tensor(0.757548, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.47306564, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 16266\n",
+ "Discriminator Loss: tf.Tensor(1.1970953, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.72177, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 16267\n",
+ "Discriminator Loss: tf.Tensor(2.3026621, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-1.2220912, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 16268\n",
+ "Discriminator Loss: tf.Tensor(0.68295187, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.4718314, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 16269\n",
+ "Discriminator Loss: tf.Tensor(0.7311854, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.32376218, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 16270\n",
+ "Discriminator Loss: tf.Tensor(0.60754025, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.6285942, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 16271\n",
+ "Discriminator Loss: tf.Tensor(0.22209057, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.404678, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 16272\n",
+ "Discriminator Loss: tf.Tensor(1.1459272, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.0704922, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 16273\n",
+ "Discriminator Loss: tf.Tensor(0.5395933, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.5755966, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 16274\n",
+ "Discriminator Loss: tf.Tensor(0.3117332, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.7163468, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 16275\n",
+ "Discriminator Loss: tf.Tensor(0.8354955, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.8559434, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 16276\n",
+ "Discriminator Loss: tf.Tensor(0.0843021, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.6190286, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 16277\n",
+ "Discriminator Loss: tf.Tensor(47.7709, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.52494043, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 16278\n",
+ "Discriminator Loss: tf.Tensor(38.301987, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.45922482, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 16279\n",
+ "Discriminator Loss: tf.Tensor(11.152582, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.34355113, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 16280\n",
+ "Discriminator Loss: tf.Tensor(6.226923, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.59082925, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 16281\n",
+ "Discriminator Loss: tf.Tensor(4.8210287, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.6463618, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 16282\n",
+ "Discriminator Loss: tf.Tensor(4.3505177, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.6684211, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 16283\n",
+ "Discriminator Loss: tf.Tensor(3.940545, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.651213, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 16284\n",
+ "Discriminator Loss: tf.Tensor(3.9243648, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.62935644, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 16285\n",
+ "Discriminator Loss: tf.Tensor(3.3405855, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.6351782, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 16286\n",
+ "Discriminator Loss: tf.Tensor(3.1341782, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.562887, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 16287\n",
+ "Discriminator Loss: tf.Tensor(2.7966714, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.6556456, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 16288\n",
+ "Discriminator Loss: tf.Tensor(2.8065963, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.61231005, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 16289\n",
+ "Discriminator Loss: tf.Tensor(2.4686925, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.695209, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 16290\n",
+ "Discriminator Loss: tf.Tensor(2.6237073, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.5832105, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 16291\n",
+ "Discriminator Loss: tf.Tensor(2.3899434, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.7083251, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 16292\n",
+ "Discriminator Loss: tf.Tensor(2.3389232, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.6277507, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 16293\n",
+ "Discriminator Loss: tf.Tensor(2.2400863, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.7203472, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 16294\n",
+ "Discriminator Loss: tf.Tensor(2.2114475, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.6558983, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 16295\n",
+ "Discriminator Loss: tf.Tensor(2.1785696, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.6827154, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 16296\n",
+ "Discriminator Loss: tf.Tensor(2.1341474, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.6641796, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 16297\n",
+ "Discriminator Loss: tf.Tensor(2.1005275, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.75208193, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 16298\n",
+ "Discriminator Loss: tf.Tensor(2.141861, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.64890385, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 16299\n",
+ "Discriminator Loss: tf.Tensor(1.9692271, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.7095509, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 16300\n",
+ "Discriminator Loss: tf.Tensor(2.020079, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.6578966, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 16301\n",
+ "Discriminator Loss: tf.Tensor(1.9853096, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.62530917, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 16302\n",
+ "Discriminator Loss: tf.Tensor(1.9289379, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.7472961, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 16303\n",
+ "Discriminator Loss: tf.Tensor(1.9463791, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.66999644, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 16304\n",
+ "Discriminator Loss: tf.Tensor(1.9035188, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.7866499, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 16305\n",
+ "Discriminator Loss: tf.Tensor(1.9144896, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.588325, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 16306\n",
+ "Discriminator Loss: tf.Tensor(1.7621987, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.72321004, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 16307\n",
+ "Discriminator Loss: tf.Tensor(1.7557766, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.794655, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 16308\n",
+ "Discriminator Loss: tf.Tensor(1.9178406, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.57988185, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 16309\n",
+ "Discriminator Loss: tf.Tensor(1.8905969, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.64117885, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 16310\n",
+ "Discriminator Loss: tf.Tensor(1.7631183, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.77037174, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 16311\n",
+ "Discriminator Loss: tf.Tensor(1.7253699, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.85534143, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 16312\n",
+ "Discriminator Loss: tf.Tensor(1.7418566, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.722909, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 16313\n",
+ "Discriminator Loss: tf.Tensor(1.6570338, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.9773774, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 16314\n",
+ "Discriminator Loss: tf.Tensor(1.6618823, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.8272023, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 16315\n",
+ "Discriminator Loss: tf.Tensor(1.742423, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.8680055, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 16316\n",
+ "Discriminator Loss: tf.Tensor(1.5594424, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.82515574, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 16317\n",
+ "Discriminator Loss: tf.Tensor(1.6051099, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.9595253, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 16318\n",
+ "Discriminator Loss: tf.Tensor(1.6020468, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.77801657, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 16319\n",
+ "Discriminator Loss: tf.Tensor(1.719024, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.6362683, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 16320\n",
+ "Discriminator Loss: tf.Tensor(1.2743025, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.0148455, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 16321\n",
+ "Discriminator Loss: tf.Tensor(1.6083864, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.38872623, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 16322\n",
+ "Discriminator Loss: tf.Tensor(1.5657703, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.0406063, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 16323\n",
+ "Discriminator Loss: tf.Tensor(1.759371, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.020692104, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 16324\n",
+ "Discriminator Loss: tf.Tensor(1.4684749, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.05178703, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 16325\n",
+ "Discriminator Loss: tf.Tensor(1.2788507, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.24214482, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 16326\n",
+ "Discriminator Loss: tf.Tensor(1.4523823, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.55907494, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 16327\n",
+ "Discriminator Loss: tf.Tensor(1.4676884, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.6496946, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 16328\n",
+ "Discriminator Loss: tf.Tensor(1.3403671, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.74668485, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 16329\n",
+ "Discriminator Loss: tf.Tensor(0.88927335, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.80626774, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 16330\n",
+ "Discriminator Loss: tf.Tensor(1.266981, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.86096007, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 16331\n",
+ "Discriminator Loss: tf.Tensor(1.4893993, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.6568611, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 16332\n",
+ "Discriminator Loss: tf.Tensor(1.08337, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.74524623, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 16333\n",
+ "Discriminator Loss: tf.Tensor(1.4237788, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.1930943, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 16334\n",
+ "Discriminator Loss: tf.Tensor(1.7968206, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.6652486, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 16335\n",
+ "Discriminator Loss: tf.Tensor(1.1380457, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.57204, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 16336\n",
+ "Discriminator Loss: tf.Tensor(0.9681182, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.33837858, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 16337\n",
+ "Discriminator Loss: tf.Tensor(1.2862265, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.5119816, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 16338\n",
+ "Discriminator Loss: tf.Tensor(1.1988355, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.068815194, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 16339\n",
+ "Discriminator Loss: tf.Tensor(0.74657524, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.2812437, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 16340\n",
+ "Discriminator Loss: tf.Tensor(1.2777865, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.25221592, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 16341\n",
+ "Discriminator Loss: tf.Tensor(0.72968847, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.85208815, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 16342\n",
+ "Discriminator Loss: tf.Tensor(0.40204847, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.0885292, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 16343\n",
+ "Discriminator Loss: tf.Tensor(0.9573346, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.32200754, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 16344\n",
+ "Discriminator Loss: tf.Tensor(1.2634267, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.079895, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 16345\n",
+ "Discriminator Loss: tf.Tensor(1.0467186, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.03692947, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 16346\n",
+ "Discriminator Loss: tf.Tensor(0.5547348, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.413649, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 16347\n",
+ "Discriminator Loss: tf.Tensor(0.73769116, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.283658, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 16348\n",
+ "Discriminator Loss: tf.Tensor(0.6926255, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.036326, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 16349\n",
+ "Discriminator Loss: tf.Tensor(0.34077457, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.0178319, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 16350\n",
+ "Discriminator Loss: tf.Tensor(0.24993965, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.9475253, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 16351\n",
+ "Discriminator Loss: tf.Tensor(0.7098851, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.1449077, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 16352\n",
+ "Discriminator Loss: tf.Tensor(0.41868967, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.6166343, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 16353\n",
+ "Discriminator Loss: tf.Tensor(0.90184104, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.9157381, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 16354\n",
+ "Discriminator Loss: tf.Tensor(1.2237978, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.022112945, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 16355\n",
+ "Discriminator Loss: tf.Tensor(0.44112977, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.7905045, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 16356\n",
+ "Discriminator Loss: tf.Tensor(1.2958729, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.03806473, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 16357\n",
+ "Discriminator Loss: tf.Tensor(0.62212765, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.2022784, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 16358\n",
+ "Discriminator Loss: tf.Tensor(1.0081095, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.43324044, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 16359\n",
+ "Discriminator Loss: tf.Tensor(0.9493453, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.447448, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 16360\n",
+ "Discriminator Loss: tf.Tensor(0.6744461, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.3560538, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 16361\n",
+ "Discriminator Loss: tf.Tensor(0.9765964, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.2531822, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 16362\n",
+ "Discriminator Loss: tf.Tensor(0.25610438, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.8345103, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 16363\n",
+ "Discriminator Loss: tf.Tensor(0.6862933, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.745569, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 16364\n",
+ "Discriminator Loss: tf.Tensor(0.21405374, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.248891, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 16365\n",
+ "Discriminator Loss: tf.Tensor(0.6002486, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.41739658, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 16366\n",
+ "Discriminator Loss: tf.Tensor(1.0084493, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.8143432, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 16367\n",
+ "Discriminator Loss: tf.Tensor(0.158989, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.1596183, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 16368\n",
+ "Discriminator Loss: tf.Tensor(0.2961841, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.2812902, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 16369\n",
+ "Discriminator Loss: tf.Tensor(0.9548553, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.076650985, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 16370\n",
+ "Discriminator Loss: tf.Tensor(0.819477, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.9438944, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 16371\n",
+ "Discriminator Loss: tf.Tensor(0.24659228, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.5894512, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 16372\n",
+ "Discriminator Loss: tf.Tensor(0.19775708, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.8891797, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 16373\n",
+ "Discriminator Loss: tf.Tensor(0.54056954, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.568191, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 16374\n",
+ "Discriminator Loss: tf.Tensor(0.3480603, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.9752572, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 16375\n",
+ "Discriminator Loss: tf.Tensor(0.42800078, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.3974125, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 16376\n",
+ "Discriminator Loss: tf.Tensor(0.2974488, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.87420535, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 16377\n",
+ "Discriminator Loss: tf.Tensor(0.6536956, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.5433476, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 16378\n",
+ "Discriminator Loss: tf.Tensor(1.5451436, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.4690175, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 16379\n",
+ "Discriminator Loss: tf.Tensor(0.62042224, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(3.2128477, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 16380\n",
+ "Discriminator Loss: tf.Tensor(0.20719978, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.3513595, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 16381\n",
+ "Discriminator Loss: tf.Tensor(0.9683749, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.35126868, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 16382\n",
+ "Discriminator Loss: tf.Tensor(1.8301172, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.8570259, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 16383\n",
+ "Discriminator Loss: tf.Tensor(1.9575027, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.7678488, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 16384\n",
+ "Discriminator Loss: tf.Tensor(0.7291351, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.5433525, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 16385\n",
+ "Discriminator Loss: tf.Tensor(1.3360819, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.07856514, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 16386\n",
+ "Discriminator Loss: tf.Tensor(0.80246854, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.6836628, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 16387\n",
+ "Discriminator Loss: tf.Tensor(1.1289304, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.017152773, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 16388\n",
+ "Discriminator Loss: tf.Tensor(0.71161133, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.2055008, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 16389\n",
+ "Discriminator Loss: tf.Tensor(0.5957033, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.5160505, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 16390\n",
+ "Discriminator Loss: tf.Tensor(0.62735724, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.9904258, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 16391\n",
+ "Discriminator Loss: tf.Tensor(0.057475347, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.3535916, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 16392\n",
+ "Discriminator Loss: tf.Tensor(80.22292, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.058001865, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 16393\n",
+ "Discriminator Loss: tf.Tensor(28.810322, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.2086464, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 16394\n",
+ "Discriminator Loss: tf.Tensor(9.268084, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.48195156, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 16395\n",
+ "Discriminator Loss: tf.Tensor(5.162938, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.7062638, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 16396\n",
+ "Discriminator Loss: tf.Tensor(4.215727, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.8649998, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 16397\n",
+ "Discriminator Loss: tf.Tensor(3.9704359, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.9289956, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 16398\n",
+ "Discriminator Loss: tf.Tensor(3.4891295, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.9143708, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 16399\n",
+ "Discriminator Loss: tf.Tensor(2.8997352, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.8963205, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 16400\n",
+ "Discriminator Loss: tf.Tensor(2.867248, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.8272341, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 16401\n",
+ "Discriminator Loss: tf.Tensor(2.8494518, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.8060031, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 16402\n",
+ "Discriminator Loss: tf.Tensor(2.940897, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.7821243, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 16403\n",
+ "Discriminator Loss: tf.Tensor(3.0552225, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.7410526, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 16404\n",
+ "Discriminator Loss: tf.Tensor(2.7106137, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.7293585, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 16405\n",
+ "Discriminator Loss: tf.Tensor(2.5655503, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.747894, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 16406\n",
+ "Discriminator Loss: tf.Tensor(2.4462285, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.7483676, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 16407\n",
+ "Discriminator Loss: tf.Tensor(2.4871838, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.752188, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 16408\n",
+ "Discriminator Loss: tf.Tensor(2.3099797, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.7823305, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 16409\n",
+ "Discriminator Loss: tf.Tensor(2.1620293, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.77888685, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 16410\n",
+ "Discriminator Loss: tf.Tensor(2.0825665, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.81675005, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 16411\n",
+ "Discriminator Loss: tf.Tensor(2.0768123, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.727606, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 16412\n",
+ "Discriminator Loss: tf.Tensor(2.0455132, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.81766444, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 16413\n",
+ "Discriminator Loss: tf.Tensor(1.9939383, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.78200847, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 16414\n",
+ "Discriminator Loss: tf.Tensor(2.089626, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.80981034, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 16415\n",
+ "Discriminator Loss: tf.Tensor(2.047999, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.81892663, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 16416\n",
+ "Discriminator Loss: tf.Tensor(2.0685573, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.7773469, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 16417\n",
+ "Discriminator Loss: tf.Tensor(2.1787608, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.5381307, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 16418\n",
+ "Discriminator Loss: tf.Tensor(2.3313265, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.41609958, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 16419\n",
+ "Discriminator Loss: tf.Tensor(1.9033386, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.81839204, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 16420\n",
+ "Discriminator Loss: tf.Tensor(1.8311474, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.8610317, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 16421\n",
+ "Discriminator Loss: tf.Tensor(1.7632678, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.86819524, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 16422\n",
+ "Discriminator Loss: tf.Tensor(1.6558515, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.7467106, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 16423\n",
+ "Discriminator Loss: tf.Tensor(1.6908565, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.8354408, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 16424\n",
+ "Discriminator Loss: tf.Tensor(1.6017733, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.93348217, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 16425\n",
+ "Discriminator Loss: tf.Tensor(1.7386367, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.85544634, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 16426\n",
+ "Discriminator Loss: tf.Tensor(1.6519463, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.9445133, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 16427\n",
+ "Discriminator Loss: tf.Tensor(1.7818973, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.22026025, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 16428\n",
+ "Discriminator Loss: tf.Tensor(1.7025788, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.5856311, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 16429\n",
+ "Discriminator Loss: tf.Tensor(1.6686947, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.64802146, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 16430\n",
+ "Discriminator Loss: tf.Tensor(1.3922671, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.93678004, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 16431\n",
+ "Discriminator Loss: tf.Tensor(1.5597341, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.32705688, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 16432\n",
+ "Discriminator Loss: tf.Tensor(2.1636047, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.029946843, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 16433\n",
+ "Discriminator Loss: tf.Tensor(1.7200258, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.41675803, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 16434\n",
+ "Discriminator Loss: tf.Tensor(1.4580045, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.67433906, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 16435\n",
+ "Discriminator Loss: tf.Tensor(1.1584747, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.772244, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 16436\n",
+ "Discriminator Loss: tf.Tensor(1.3402297, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.7477269, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 16437\n",
+ "Discriminator Loss: tf.Tensor(1.3864669, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.6504765, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 16438\n",
+ "Discriminator Loss: tf.Tensor(1.522835, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.3402394, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 16439\n",
+ "Discriminator Loss: tf.Tensor(1.6824195, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.43854573, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 16440\n",
+ "Discriminator Loss: tf.Tensor(1.4385666, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.18599136, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 16441\n",
+ "Discriminator Loss: tf.Tensor(1.5008992, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.04141513, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 16442\n",
+ "Discriminator Loss: tf.Tensor(1.1676182, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.8661491, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 16443\n",
+ "Discriminator Loss: tf.Tensor(1.0316534, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.552571, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 16444\n",
+ "Discriminator Loss: tf.Tensor(1.3323591, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.59135956, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 16445\n",
+ "Discriminator Loss: tf.Tensor(1.0981965, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.4285213, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 16446\n",
+ "Discriminator Loss: tf.Tensor(0.843842, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.9901989, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 16447\n",
+ "Discriminator Loss: tf.Tensor(0.97321635, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.16540486, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 16448\n",
+ "Discriminator Loss: tf.Tensor(1.1349306, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.5155339, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 16449\n",
+ "Discriminator Loss: tf.Tensor(1.779787, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.6631601, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 16450\n",
+ "Discriminator Loss: tf.Tensor(1.0571336, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.7935851, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 16451\n",
+ "Discriminator Loss: tf.Tensor(0.66498077, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.7293412, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 16452\n",
+ "Discriminator Loss: tf.Tensor(1.3236717, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.6771812, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 16453\n",
+ "Discriminator Loss: tf.Tensor(1.3945506, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.16897704, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 16454\n",
+ "Discriminator Loss: tf.Tensor(0.71503556, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.0926154, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 16455\n",
+ "Discriminator Loss: tf.Tensor(1.0372624, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.100161046, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 16456\n",
+ "Discriminator Loss: tf.Tensor(0.5984908, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.1909791, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 16457\n",
+ "Discriminator Loss: tf.Tensor(0.8113072, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.27479616, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 16458\n",
+ "Discriminator Loss: tf.Tensor(0.37060478, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.2769076, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 16459\n",
+ "Discriminator Loss: tf.Tensor(0.6139578, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.6712435, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 16460\n",
+ "Discriminator Loss: tf.Tensor(0.785351, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.9354148, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 16461\n",
+ "Discriminator Loss: tf.Tensor(1.1529195, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.05208813, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 16462\n",
+ "Discriminator Loss: tf.Tensor(0.54999477, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.1421348, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 16463\n",
+ "Discriminator Loss: tf.Tensor(1.5544112, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.27722558, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 16464\n",
+ "Discriminator Loss: tf.Tensor(0.5017867, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.5102649, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 16465\n",
+ "Discriminator Loss: tf.Tensor(1.2766026, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.053288642, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 16466\n",
+ "Discriminator Loss: tf.Tensor(0.59904623, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.6436477, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 16467\n",
+ "Discriminator Loss: tf.Tensor(0.7804672, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.32927153, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 16468\n",
+ "Discriminator Loss: tf.Tensor(0.45328316, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.6373662, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 16469\n",
+ "Discriminator Loss: tf.Tensor(1.2397889, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.19128506, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 16470\n",
+ "Discriminator Loss: tf.Tensor(0.6263552, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.5803372, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 16471\n",
+ "Discriminator Loss: tf.Tensor(0.7142496, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.32175246, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 16472\n",
+ "Discriminator Loss: tf.Tensor(0.8453766, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.9940368, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 16473\n",
+ "Discriminator Loss: tf.Tensor(1.0910872, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.119772814, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 16474\n",
+ "Discriminator Loss: tf.Tensor(0.55931616, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.0970448, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 16475\n",
+ "Discriminator Loss: tf.Tensor(0.5662199, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.2782925, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 16476\n",
+ "Discriminator Loss: tf.Tensor(1.3533455, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.21573693, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 16477\n",
+ "Discriminator Loss: tf.Tensor(1.0128293, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.236873, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 16478\n",
+ "Discriminator Loss: tf.Tensor(0.27390876, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.74867654, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 16479\n",
+ "Discriminator Loss: tf.Tensor(0.5897146, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.6423695, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 16480\n",
+ "Discriminator Loss: tf.Tensor(0.32465968, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.99368954, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 16481\n",
+ "Discriminator Loss: tf.Tensor(0.45280594, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.3901806, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 16482\n",
+ "Discriminator Loss: tf.Tensor(1.3155906, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.2963411, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 16483\n",
+ "Discriminator Loss: tf.Tensor(0.7939206, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.2031229, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 16484\n",
+ "Discriminator Loss: tf.Tensor(0.64977586, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.69404763, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 16485\n",
+ "Discriminator Loss: tf.Tensor(0.17221493, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.0221002, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 16486\n",
+ "Discriminator Loss: tf.Tensor(0.8125771, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.72564816, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 16487\n",
+ "Discriminator Loss: tf.Tensor(0.629779, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(3.2299163, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 16488\n",
+ "Discriminator Loss: tf.Tensor(0.46355316, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.7381434, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 16489\n",
+ "Discriminator Loss: tf.Tensor(0.8626247, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.8189923, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 16490\n",
+ "Discriminator Loss: tf.Tensor(1.3262326, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.21699147, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 16491\n",
+ "Discriminator Loss: tf.Tensor(0.7671415, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(3.3282242, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 16492\n",
+ "Discriminator Loss: tf.Tensor(0.35390496, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.1325393, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 16493\n",
+ "Discriminator Loss: tf.Tensor(0.7568969, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.48817766, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 16494\n",
+ "Discriminator Loss: tf.Tensor(1.1755073, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(3.348035, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 16495\n",
+ "Discriminator Loss: tf.Tensor(0.64662105, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.5044668, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 16496\n",
+ "Discriminator Loss: tf.Tensor(0.37200493, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.4762473, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 16497\n",
+ "Discriminator Loss: tf.Tensor(0.48479795, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.6083364, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 16498\n",
+ "Discriminator Loss: tf.Tensor(1.1722602, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(3.9417963, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 16499\n",
+ "Discriminator Loss: tf.Tensor(0.3552597, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.66967726, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 16500\n",
+ "Discriminator Loss: tf.Tensor(0.8032506, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.8644984, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 16501\n",
+ "Discriminator Loss: tf.Tensor(1.2091229, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.17857812, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 16502\n",
+ "Discriminator Loss: tf.Tensor(1.5255244, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.8815224, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 16503\n",
+ "Discriminator Loss: tf.Tensor(0.4855914, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.52939004, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 16504\n",
+ "Discriminator Loss: tf.Tensor(0.72709763, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.6841228, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 16505\n",
+ "Discriminator Loss: tf.Tensor(0.14831623, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.3318136, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 16506\n",
+ "Discriminator Loss: tf.Tensor(0.21386735, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.8580257, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 16507\n",
+ "Discriminator Loss: tf.Tensor(1.2475655, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(3.1691978, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 16508\n",
+ "Discriminator Loss: tf.Tensor(0.3492133, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.0838008, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 16509\n",
+ "Discriminator Loss: tf.Tensor(0.15772793, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.0374569, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 16510\n",
+ "Discriminator Loss: tf.Tensor(0.6882168, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.5866796, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 16511\n",
+ "Discriminator Loss: tf.Tensor(1.2516387, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.12969732, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 16512\n",
+ "Discriminator Loss: tf.Tensor(0.99820244, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(3.002115, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 16513\n",
+ "Discriminator Loss: tf.Tensor(0.18527135, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.8986604, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 16514\n",
+ "Discriminator Loss: tf.Tensor(0.42846793, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.3075907, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 16515\n",
+ "Discriminator Loss: tf.Tensor(1.2784959, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.2810495, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 16516\n",
+ "Discriminator Loss: tf.Tensor(0.79822195, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.9151676, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 16517\n",
+ "Discriminator Loss: tf.Tensor(1.0704808, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.14509894, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 16518\n",
+ "Discriminator Loss: tf.Tensor(0.9603339, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.0706863, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 16519\n",
+ "Discriminator Loss: tf.Tensor(1.4166025, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.065989286, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 16520\n",
+ "Discriminator Loss: tf.Tensor(0.33907375, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.846386, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 16521\n",
+ "Discriminator Loss: tf.Tensor(0.63114995, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.5887223, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 16522\n",
+ "Discriminator Loss: tf.Tensor(0.80014, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.8925908, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 16523\n",
+ "Discriminator Loss: tf.Tensor(0.33859038, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.8403718, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 16524\n",
+ "Discriminator Loss: tf.Tensor(0.43146324, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.0816946, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 16525\n",
+ "Discriminator Loss: tf.Tensor(0.4798388, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.85051346, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 16526\n",
+ "Discriminator Loss: tf.Tensor(0.70957434, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.3059294, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 16527\n",
+ "Discriminator Loss: tf.Tensor(0.541617, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.51748496, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 16528\n",
+ "Discriminator Loss: tf.Tensor(1.3266323, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.56304, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 16529\n",
+ "Discriminator Loss: tf.Tensor(0.5130285, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.5705803, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 16530\n",
+ "Discriminator Loss: tf.Tensor(0.15913388, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.539764, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 16531\n",
+ "Discriminator Loss: tf.Tensor(0.5193683, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.5352736, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 16532\n",
+ "Discriminator Loss: tf.Tensor(1.7366731, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.54304904, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 16533\n",
+ "Discriminator Loss: tf.Tensor(1.1239755, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.213117, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 16534\n",
+ "Discriminator Loss: tf.Tensor(0.72503114, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.561907, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 16535\n",
+ "Discriminator Loss: tf.Tensor(0.7193536, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.5045633, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 16536\n",
+ "Discriminator Loss: tf.Tensor(0.887361, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.1547385, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 16537\n",
+ "Discriminator Loss: tf.Tensor(0.9876461, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.2575781, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 16538\n",
+ "Discriminator Loss: tf.Tensor(0.33115357, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.91894776, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 16539\n",
+ "Discriminator Loss: tf.Tensor(0.60579383, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.3474042, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 16540\n",
+ "Discriminator Loss: tf.Tensor(1.0009167, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.20586945, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 16541\n",
+ "Discriminator Loss: tf.Tensor(0.7411134, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.5789135, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 16542\n",
+ "Discriminator Loss: tf.Tensor(0.24094772, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.9299986, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 16543\n",
+ "Discriminator Loss: tf.Tensor(0.27211922, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.403458, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 16544\n",
+ "Discriminator Loss: tf.Tensor(0.16424526, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.95571184, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 16545\n",
+ "Discriminator Loss: tf.Tensor(1.9007473, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(3.7781105, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 16546\n",
+ "Discriminator Loss: tf.Tensor(0.341564, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.77629644, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 16547\n",
+ "Discriminator Loss: tf.Tensor(0.9322102, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.968835, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 16548\n",
+ "Discriminator Loss: tf.Tensor(1.3409684, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.15581423, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 16549\n",
+ "Discriminator Loss: tf.Tensor(1.297824, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.4043334, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 16550\n",
+ "Discriminator Loss: tf.Tensor(0.5475171, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.8007345, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 16551\n",
+ "Discriminator Loss: tf.Tensor(0.4972789, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.743658, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 16552\n",
+ "Discriminator Loss: tf.Tensor(1.1231608, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.1961633, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 16553\n",
+ "Discriminator Loss: tf.Tensor(0.48063862, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.2420835, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 16554\n",
+ "Discriminator Loss: tf.Tensor(0.5990291, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.73604983, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 16555\n",
+ "Discriminator Loss: tf.Tensor(0.9598856, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(3.4444704, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 16556\n",
+ "Discriminator Loss: tf.Tensor(0.28716144, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.212675, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 16557\n",
+ "Discriminator Loss: tf.Tensor(0.6994657, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.6995705, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 16558\n",
+ "Discriminator Loss: tf.Tensor(0.9584163, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.907753, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 16559\n",
+ "Discriminator Loss: tf.Tensor(0.30856007, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.8748166, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 16560\n",
+ "Discriminator Loss: tf.Tensor(0.82402927, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.0117114, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 16561\n",
+ "Discriminator Loss: tf.Tensor(1.4299321, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.4018832, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 16562\n",
+ "Discriminator Loss: tf.Tensor(0.3633192, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.9120592, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 16563\n",
+ "Discriminator Loss: tf.Tensor(0.23941028, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.938741, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 16564\n",
+ "Discriminator Loss: tf.Tensor(0.6229296, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.7524996, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 16565\n",
+ "Discriminator Loss: tf.Tensor(0.60327935, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.52259123, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 16566\n",
+ "Discriminator Loss: tf.Tensor(1.3542417, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.4799643, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 16567\n",
+ "Discriminator Loss: tf.Tensor(0.65072453, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.50262237, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 16568\n",
+ "Discriminator Loss: tf.Tensor(1.3503999, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.1559975, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 16569\n",
+ "Discriminator Loss: tf.Tensor(0.8150672, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.22374873, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 16570\n",
+ "Discriminator Loss: tf.Tensor(0.8526226, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.102605, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 16571\n",
+ "Discriminator Loss: tf.Tensor(1.1225706, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.10936049, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 16572\n",
+ "Discriminator Loss: tf.Tensor(1.0900633, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.7969023, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 16573\n",
+ "Discriminator Loss: tf.Tensor(0.3229123, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.76501346, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 16574\n",
+ "Discriminator Loss: tf.Tensor(1.2269913, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.757658, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 16575\n",
+ "Discriminator Loss: tf.Tensor(0.44818908, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.68744564, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 16576\n",
+ "Discriminator Loss: tf.Tensor(0.851618, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.3901708, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 16577\n",
+ "Discriminator Loss: tf.Tensor(0.3536773, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.95400506, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 16578\n",
+ "Discriminator Loss: tf.Tensor(0.3819694, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.3664798, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 16579\n",
+ "Discriminator Loss: tf.Tensor(0.5092562, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.69021034, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 16580\n",
+ "Discriminator Loss: tf.Tensor(1.1541731, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.9301636, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 16581\n",
+ "Discriminator Loss: tf.Tensor(0.5752784, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.4544827, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 16582\n",
+ "Discriminator Loss: tf.Tensor(1.1134871, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.5104182, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 16583\n",
+ "Discriminator Loss: tf.Tensor(0.46777517, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.72291535, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 16584\n",
+ "Discriminator Loss: tf.Tensor(0.6361711, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.4283726, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 16585\n",
+ "Discriminator Loss: tf.Tensor(0.708704, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.4683025, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 16586\n",
+ "Discriminator Loss: tf.Tensor(0.8130797, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.049734, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 16587\n",
+ "Discriminator Loss: tf.Tensor(0.57543576, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.585213, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 16588\n",
+ "Discriminator Loss: tf.Tensor(0.83967984, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.9368794, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 16589\n",
+ "Discriminator Loss: tf.Tensor(0.066940844, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.1092038, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 16590\n",
+ "Discriminator Loss: tf.Tensor(0.40100747, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.6157688, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 16591\n",
+ "Discriminator Loss: tf.Tensor(0.57344997, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.6640938, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 16592\n",
+ "Discriminator Loss: tf.Tensor(0.8335389, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.947347, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 16593\n",
+ "Discriminator Loss: tf.Tensor(0.21739161, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.4912299, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 16594\n",
+ "Discriminator Loss: tf.Tensor(0.75835073, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.0896367, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 16595\n",
+ "Discriminator Loss: tf.Tensor(1.1447446, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.2033551, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 16596\n",
+ "Discriminator Loss: tf.Tensor(1.6176525, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.31625476, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 16597\n",
+ "Discriminator Loss: tf.Tensor(1.4958864, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.83014, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 16598\n",
+ "Discriminator Loss: tf.Tensor(0.5689666, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.61865443, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 16599\n",
+ "Discriminator Loss: tf.Tensor(1.2275784, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.0548255, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 16600\n",
+ "Discriminator Loss: tf.Tensor(0.98214895, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.09532625, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 16601\n",
+ "Discriminator Loss: tf.Tensor(1.0548893, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.6720902, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 16602\n",
+ "Discriminator Loss: tf.Tensor(0.36544365, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.8108347, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 16603\n",
+ "Discriminator Loss: tf.Tensor(0.620368, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.6485234, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 16604\n",
+ "Discriminator Loss: tf.Tensor(0.34663424, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.79974794, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 16605\n",
+ "Discriminator Loss: tf.Tensor(1.5412266, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.0638323, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 16606\n",
+ "Discriminator Loss: tf.Tensor(0.719055, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.44308606, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 16607\n",
+ "Discriminator Loss: tf.Tensor(1.0349301, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.7221559, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 16608\n",
+ "Discriminator Loss: tf.Tensor(0.78406805, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.3277361, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 16609\n",
+ "Discriminator Loss: tf.Tensor(0.5521763, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.4626454, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 16610\n",
+ "Discriminator Loss: tf.Tensor(0.57583374, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.2033864, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 16611\n",
+ "Discriminator Loss: tf.Tensor(0.53767705, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.7700246, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 16612\n",
+ "Discriminator Loss: tf.Tensor(1.6916428, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.4219506, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 16613\n",
+ "Discriminator Loss: tf.Tensor(0.5660024, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.50768214, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 16614\n",
+ "Discriminator Loss: tf.Tensor(0.8479538, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.6608547, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 16615\n",
+ "Discriminator Loss: tf.Tensor(0.9181072, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.15211369, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 16616\n",
+ "Discriminator Loss: tf.Tensor(0.62274224, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.6858834, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 16617\n",
+ "Discriminator Loss: tf.Tensor(0.78758377, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.24352616, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 16618\n",
+ "Discriminator Loss: tf.Tensor(0.90191793, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.5931358, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 16619\n",
+ "Discriminator Loss: tf.Tensor(1.2869052, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.18107182, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 16620\n",
+ "Discriminator Loss: tf.Tensor(0.66214186, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.3545662, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 16621\n",
+ "Discriminator Loss: tf.Tensor(0.63145053, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.5766464, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 16622\n",
+ "Discriminator Loss: tf.Tensor(1.3310189, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.2014364, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 16623\n",
+ "Discriminator Loss: tf.Tensor(1.1344984, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.2465959, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 16624\n",
+ "Discriminator Loss: tf.Tensor(0.63229865, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.3988959, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 16625\n",
+ "Discriminator Loss: tf.Tensor(0.8408301, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.1139543, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 16626\n",
+ "Discriminator Loss: tf.Tensor(1.2627637, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.13003255, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 16627\n",
+ "Discriminator Loss: tf.Tensor(1.069214, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.803783, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 16628\n",
+ "Discriminator Loss: tf.Tensor(1.469096, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.45234108, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 16629\n",
+ "Discriminator Loss: tf.Tensor(0.962668, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.4293035, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 16630\n",
+ "Discriminator Loss: tf.Tensor(1.0220865, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.13719977, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 16631\n",
+ "Discriminator Loss: tf.Tensor(1.1608263, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.450563, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 16632\n",
+ "Discriminator Loss: tf.Tensor(0.8312514, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.30098203, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 16633\n",
+ "Discriminator Loss: tf.Tensor(0.83051836, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.2926191, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 16634\n",
+ "Discriminator Loss: tf.Tensor(0.64283144, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.4540461, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 16635\n",
+ "Discriminator Loss: tf.Tensor(0.7389376, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.48698258, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 16636\n",
+ "Discriminator Loss: tf.Tensor(1.1239849, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.765997, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 16637\n",
+ "Discriminator Loss: tf.Tensor(1.5923277, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.55814546, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 16638\n",
+ "Discriminator Loss: tf.Tensor(0.6501721, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.2014536, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 16639\n",
+ "Discriminator Loss: tf.Tensor(0.32062933, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.82252026, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 16640\n",
+ "Discriminator Loss: tf.Tensor(1.352288, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.8828773, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 16641\n",
+ "Discriminator Loss: tf.Tensor(1.0427988, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.048281223, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 16642\n",
+ "Discriminator Loss: tf.Tensor(1.1512408, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.5723948, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 16643\n",
+ "Discriminator Loss: tf.Tensor(1.0012232, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.09383204, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 16644\n",
+ "Discriminator Loss: tf.Tensor(0.9829381, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.9532976, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 16645\n",
+ "Discriminator Loss: tf.Tensor(1.490469, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.47811374, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 16646\n",
+ "Discriminator Loss: tf.Tensor(0.59250903, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.3346246, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 16647\n",
+ "Discriminator Loss: tf.Tensor(0.9670338, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.21696068, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 16648\n",
+ "Discriminator Loss: tf.Tensor(0.6785418, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.2351507, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 16649\n",
+ "Discriminator Loss: tf.Tensor(0.74085164, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.49182835, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 16650\n",
+ "Discriminator Loss: tf.Tensor(0.5843494, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.171418, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 16651\n",
+ "Discriminator Loss: tf.Tensor(0.85463583, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.26048347, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 16652\n",
+ "Discriminator Loss: tf.Tensor(1.1761535, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.9800758, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 16653\n",
+ "Discriminator Loss: tf.Tensor(0.89621425, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.18512376, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 16654\n",
+ "Discriminator Loss: tf.Tensor(0.58037627, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.9510609, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 16655\n",
+ "Discriminator Loss: tf.Tensor(0.4812904, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.6430879, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 16656\n",
+ "Discriminator Loss: tf.Tensor(0.77972096, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.0736663, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 16657\n",
+ "Discriminator Loss: tf.Tensor(0.77309465, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.4260066, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 16658\n",
+ "Discriminator Loss: tf.Tensor(0.7431052, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.888248, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 16659\n",
+ "Discriminator Loss: tf.Tensor(1.0812668, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.032917127, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 16660\n",
+ "Discriminator Loss: tf.Tensor(1.1018548, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.8690448, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 16661\n",
+ "Discriminator Loss: tf.Tensor(1.1104038, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.061535288, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 16662\n",
+ "Discriminator Loss: tf.Tensor(1.1519934, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.9316653, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 16663\n",
+ "Discriminator Loss: tf.Tensor(1.1916738, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.17377174, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 16664\n",
+ "Discriminator Loss: tf.Tensor(1.0947977, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.816562, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 16665\n",
+ "Discriminator Loss: tf.Tensor(0.79584754, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.29363135, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 16666\n",
+ "Discriminator Loss: tf.Tensor(0.93659925, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.6834501, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 16667\n",
+ "Discriminator Loss: tf.Tensor(0.66798687, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.404623, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 16668\n",
+ "Discriminator Loss: tf.Tensor(0.940804, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.1538944, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 16669\n",
+ "Discriminator Loss: tf.Tensor(0.44329837, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.6103873, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 16670\n",
+ "Discriminator Loss: tf.Tensor(0.8873624, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.0219882, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 16671\n",
+ "Discriminator Loss: tf.Tensor(0.7834977, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.56925696, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 16672\n",
+ "Discriminator Loss: tf.Tensor(0.48259556, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.1101495, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 16673\n",
+ "Discriminator Loss: tf.Tensor(0.5474804, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.71862084, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 16674\n",
+ "Discriminator Loss: tf.Tensor(1.9077513, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(3.0820749, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 16675\n",
+ "Discriminator Loss: tf.Tensor(0.83179617, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.27076066, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 16676\n",
+ "Discriminator Loss: tf.Tensor(0.8869229, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.7545857, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 16677\n",
+ "Discriminator Loss: tf.Tensor(0.9130666, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.10965749, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 16678\n",
+ "Discriminator Loss: tf.Tensor(0.92369187, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.2938068, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 16679\n",
+ "Discriminator Loss: tf.Tensor(0.85804904, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.30534118, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 16680\n",
+ "Discriminator Loss: tf.Tensor(0.7687863, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.8327454, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 16681\n",
+ "Discriminator Loss: tf.Tensor(0.9509141, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.08673102, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 16682\n",
+ "Discriminator Loss: tf.Tensor(0.5650734, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.114333, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 16683\n",
+ "Discriminator Loss: tf.Tensor(0.50430334, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.80078155, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 16684\n",
+ "Discriminator Loss: tf.Tensor(0.938261, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.044787, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 16685\n",
+ "Discriminator Loss: tf.Tensor(1.0102357, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.024339741, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 16686\n",
+ "Discriminator Loss: tf.Tensor(1.0374557, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.9179763, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 16687\n",
+ "Discriminator Loss: tf.Tensor(0.6259147, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.7283361, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 16688\n",
+ "Discriminator Loss: tf.Tensor(0.40263385, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.8698412, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 16689\n",
+ "Discriminator Loss: tf.Tensor(0.66567117, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.5071406, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 16690\n",
+ "Discriminator Loss: tf.Tensor(1.2977141, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.356284, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 16691\n",
+ "Discriminator Loss: tf.Tensor(1.1116854, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.07651929, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 16692\n",
+ "Discriminator Loss: tf.Tensor(0.54259914, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.7869883, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 16693\n",
+ "Discriminator Loss: tf.Tensor(0.736666, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.6390534, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 16694\n",
+ "Discriminator Loss: tf.Tensor(0.4166188, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.4939836, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 16695\n",
+ "Discriminator Loss: tf.Tensor(0.79271114, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.71368456, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 16696\n",
+ "Discriminator Loss: tf.Tensor(0.57674766, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.6832317, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 16697\n",
+ "Discriminator Loss: tf.Tensor(0.9329576, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.11063542, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 16698\n",
+ "Discriminator Loss: tf.Tensor(1.512342, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.0250878, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 16699\n",
+ "Discriminator Loss: tf.Tensor(1.0787321, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.14839718, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 16700\n",
+ "Discriminator Loss: tf.Tensor(0.5926531, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.2576014, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 16701\n",
+ "Discriminator Loss: tf.Tensor(0.8453349, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.18189211, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 16702\n",
+ "Discriminator Loss: tf.Tensor(0.44488043, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.857237, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 16703\n",
+ "Discriminator Loss: tf.Tensor(1.0985715, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.17444651, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 16704\n",
+ "Discriminator Loss: tf.Tensor(1.9693086, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.9051247, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 16705\n",
+ "Discriminator Loss: tf.Tensor(0.62697715, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.6305507, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 16706\n",
+ "Discriminator Loss: tf.Tensor(0.8789849, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.7814287, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 16707\n",
+ "Discriminator Loss: tf.Tensor(1.1486216, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.03283679, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 16708\n",
+ "Discriminator Loss: tf.Tensor(0.78312474, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.7070183, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 16709\n",
+ "Discriminator Loss: tf.Tensor(0.907938, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.29426578, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 16710\n",
+ "Discriminator Loss: tf.Tensor(0.82200503, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.0263426, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 16711\n",
+ "Discriminator Loss: tf.Tensor(0.8083257, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.4323009, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 16712\n",
+ "Discriminator Loss: tf.Tensor(0.3420387, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.9244169, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 16713\n",
+ "Discriminator Loss: tf.Tensor(0.878933, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.5510053, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 16714\n",
+ "Discriminator Loss: tf.Tensor(1.1407826, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.2184246, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 16715\n",
+ "Discriminator Loss: tf.Tensor(1.1436765, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.105271496, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 16716\n",
+ "Discriminator Loss: tf.Tensor(1.0629106, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.186629, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 16717\n",
+ "Discriminator Loss: tf.Tensor(0.6898948, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.54235125, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 16718\n",
+ "Discriminator Loss: tf.Tensor(0.935356, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.4667425, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 16719\n",
+ "Discriminator Loss: tf.Tensor(0.8091509, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.21362166, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 16720\n",
+ "Discriminator Loss: tf.Tensor(1.1327097, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.919344, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 16721\n",
+ "Discriminator Loss: tf.Tensor(0.617745, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.75018054, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 16722\n",
+ "Discriminator Loss: tf.Tensor(0.42246383, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.7651745, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 16723\n",
+ "Discriminator Loss: tf.Tensor(0.47041357, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.7754121, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 16724\n",
+ "Discriminator Loss: tf.Tensor(1.1634383, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.8538172, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 16725\n",
+ "Discriminator Loss: tf.Tensor(0.8825929, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.2699677, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 16726\n",
+ "Discriminator Loss: tf.Tensor(0.861542, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.9016341, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 16727\n",
+ "Discriminator Loss: tf.Tensor(0.45491204, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.75430864, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 16728\n",
+ "Discriminator Loss: tf.Tensor(1.1623119, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.844149, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 16729\n",
+ "Discriminator Loss: tf.Tensor(1.0915211, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.029870337, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 16730\n",
+ "Discriminator Loss: tf.Tensor(1.0235275, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.8584543, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 16731\n",
+ "Discriminator Loss: tf.Tensor(0.88499486, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.3334074, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 16732\n",
+ "Discriminator Loss: tf.Tensor(0.9849539, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.1330717, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 16733\n",
+ "Discriminator Loss: tf.Tensor(0.40177596, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.092899, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 16734\n",
+ "Discriminator Loss: tf.Tensor(1.2253762, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.8969297, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 16735\n",
+ "Discriminator Loss: tf.Tensor(1.3437201, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.25298625, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 16736\n",
+ "Discriminator Loss: tf.Tensor(0.7436891, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.4058508, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 16737\n",
+ "Discriminator Loss: tf.Tensor(1.0358889, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.34566203, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 16738\n",
+ "Discriminator Loss: tf.Tensor(0.5562856, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.4648432, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 16739\n",
+ "Discriminator Loss: tf.Tensor(1.1736096, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.05409847, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 16740\n",
+ "Discriminator Loss: tf.Tensor(1.4731218, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.3036883, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 16741\n",
+ "Discriminator Loss: tf.Tensor(0.81252146, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.29064474, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 16742\n",
+ "Discriminator Loss: tf.Tensor(0.6302631, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.5807257, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 16743\n",
+ "Discriminator Loss: tf.Tensor(0.70178276, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.4399668, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 16744\n",
+ "Discriminator Loss: tf.Tensor(0.7386755, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.986719, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 16745\n",
+ "Discriminator Loss: tf.Tensor(0.90354556, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.37909818, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 16746\n",
+ "Discriminator Loss: tf.Tensor(0.9329958, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.2448652, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 16747\n",
+ "Discriminator Loss: tf.Tensor(1.2893916, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.17183696, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 16748\n",
+ "Discriminator Loss: tf.Tensor(0.46364838, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.1109202, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 16749\n",
+ "Discriminator Loss: tf.Tensor(0.6004745, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.7160351, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 16750\n",
+ "Discriminator Loss: tf.Tensor(0.6659003, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.4155667, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 16751\n",
+ "Discriminator Loss: tf.Tensor(0.7343823, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.63481385, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 16752\n",
+ "Discriminator Loss: tf.Tensor(0.8575839, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.3677158, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 16753\n",
+ "Discriminator Loss: tf.Tensor(1.0203209, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.10813173, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 16754\n",
+ "Discriminator Loss: tf.Tensor(1.2640736, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.4439013, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 16755\n",
+ "Discriminator Loss: tf.Tensor(0.8797981, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.15911414, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 16756\n",
+ "Discriminator Loss: tf.Tensor(0.6332572, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.6531221, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 16757\n",
+ "Discriminator Loss: tf.Tensor(0.38175347, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.6521149, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 16758\n",
+ "Discriminator Loss: tf.Tensor(1.8858947, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.9893563, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 16759\n",
+ "Discriminator Loss: tf.Tensor(0.7092961, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.58987683, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 16760\n",
+ "Discriminator Loss: tf.Tensor(0.20140353, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.0394794, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 16761\n",
+ "Discriminator Loss: tf.Tensor(1.2428834, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.4558879, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 16762\n",
+ "Discriminator Loss: tf.Tensor(1.4755824, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.35712492, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 16763\n",
+ "Discriminator Loss: tf.Tensor(0.78759, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.2049257, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 16764\n",
+ "Discriminator Loss: tf.Tensor(1.0563415, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.02981551, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 16765\n",
+ "Discriminator Loss: tf.Tensor(1.150184, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.3886412, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 16766\n",
+ "Discriminator Loss: tf.Tensor(0.98418736, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.20003228, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 16767\n",
+ "Discriminator Loss: tf.Tensor(0.4163279, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.230903, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 16768\n",
+ "Discriminator Loss: tf.Tensor(0.56566566, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.88302994, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 16769\n",
+ "Discriminator Loss: tf.Tensor(0.56322557, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.6513224, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 16770\n",
+ "Discriminator Loss: tf.Tensor(1.0144618, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.06405399, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 16771\n",
+ "Discriminator Loss: tf.Tensor(1.5087326, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.2054842, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 16772\n",
+ "Discriminator Loss: tf.Tensor(1.164245, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.21110566, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 16773\n",
+ "Discriminator Loss: tf.Tensor(0.6973411, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.3666444, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 16774\n",
+ "Discriminator Loss: tf.Tensor(0.94835067, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.075309895, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 16775\n",
+ "Discriminator Loss: tf.Tensor(0.8968147, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.6304455, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 16776\n",
+ "Discriminator Loss: tf.Tensor(0.92698133, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.21275608, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 16777\n",
+ "Discriminator Loss: tf.Tensor(0.95656943, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.4832053, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 16778\n",
+ "Discriminator Loss: tf.Tensor(0.90982354, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.12386916, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 16779\n",
+ "Discriminator Loss: tf.Tensor(0.87816846, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.7599729, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 16780\n",
+ "Discriminator Loss: tf.Tensor(1.1424876, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.23617579, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 16781\n",
+ "Discriminator Loss: tf.Tensor(0.33299536, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.2904862, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 16782\n",
+ "Discriminator Loss: tf.Tensor(1.2755568, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.17485876, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 16783\n",
+ "Discriminator Loss: tf.Tensor(0.48511812, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.8199158, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 16784\n",
+ "Discriminator Loss: tf.Tensor(0.39036384, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.87495303, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 16785\n",
+ "Discriminator Loss: tf.Tensor(1.348837, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.5789597, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 16786\n",
+ "Discriminator Loss: tf.Tensor(0.8000967, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.316638, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 16787\n",
+ "Discriminator Loss: tf.Tensor(0.5603589, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.4070411, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 16788\n",
+ "Discriminator Loss: tf.Tensor(0.94857293, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.27425382, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 16789\n",
+ "Discriminator Loss: tf.Tensor(0.5288399, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.8396297, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 16790\n",
+ "Discriminator Loss: tf.Tensor(0.8908192, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.48460796, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 16791\n",
+ "Discriminator Loss: tf.Tensor(0.89064413, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.2650557, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 16792\n",
+ "Discriminator Loss: tf.Tensor(0.7988601, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.37826785, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 16793\n",
+ "Discriminator Loss: tf.Tensor(0.7708303, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.8811175, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 16794\n",
+ "Discriminator Loss: tf.Tensor(0.8703304, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.4710381, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 16795\n",
+ "Discriminator Loss: tf.Tensor(0.41040677, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.9359685, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 16796\n",
+ "Discriminator Loss: tf.Tensor(0.59072614, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.54418105, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 16797\n",
+ "Discriminator Loss: tf.Tensor(0.9500245, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.4471874, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 16798\n",
+ "Discriminator Loss: tf.Tensor(0.64276767, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.73785496, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 16799\n",
+ "Discriminator Loss: tf.Tensor(1.2003577, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.0840092, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 16800\n",
+ "Discriminator Loss: tf.Tensor(1.7298471, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.57453245, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 16801\n",
+ "Discriminator Loss: tf.Tensor(0.9057157, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.5574704, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 16802\n",
+ "Discriminator Loss: tf.Tensor(0.34335777, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.7024022, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 16803\n",
+ "Discriminator Loss: tf.Tensor(0.8864796, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.8987204, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 16804\n",
+ "Discriminator Loss: tf.Tensor(0.96502316, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.29473713, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 16805\n",
+ "Discriminator Loss: tf.Tensor(0.66751444, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.7163534, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 16806\n",
+ "Discriminator Loss: tf.Tensor(0.8510171, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.19194563, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 16807\n",
+ "Discriminator Loss: tf.Tensor(0.8848112, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.8437246, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 16808\n",
+ "Discriminator Loss: tf.Tensor(0.8345263, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.3243364, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 16809\n",
+ "Discriminator Loss: tf.Tensor(0.48169053, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.7097179, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 16810\n",
+ "Discriminator Loss: tf.Tensor(0.8752744, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.48950854, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 16811\n",
+ "Discriminator Loss: tf.Tensor(1.1170626, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.169525, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 16812\n",
+ "Discriminator Loss: tf.Tensor(1.0312009, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.23958153, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 16813\n",
+ "Discriminator Loss: tf.Tensor(0.91468334, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.9458956, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 16814\n",
+ "Discriminator Loss: tf.Tensor(0.92670923, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.3989086, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 16815\n",
+ "Discriminator Loss: tf.Tensor(0.5851541, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.4086614, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 16816\n",
+ "Discriminator Loss: tf.Tensor(0.9720052, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.21989556, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 16817\n",
+ "Discriminator Loss: tf.Tensor(1.1345457, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.0320811, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 16818\n",
+ "Discriminator Loss: tf.Tensor(0.75099826, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.3161395, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 16819\n",
+ "Discriminator Loss: tf.Tensor(0.5623215, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.7595402, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 16820\n",
+ "Discriminator Loss: tf.Tensor(0.61294603, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.6099443, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 16821\n",
+ "Discriminator Loss: tf.Tensor(1.1805423, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.96249, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 16822\n",
+ "Discriminator Loss: tf.Tensor(0.6151366, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.50187457, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 16823\n",
+ "Discriminator Loss: tf.Tensor(1.1057253, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.7826943, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 16824\n",
+ "Discriminator Loss: tf.Tensor(0.8327824, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.28458276, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 16825\n",
+ "Discriminator Loss: tf.Tensor(0.77725357, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.7396523, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 16826\n",
+ "Discriminator Loss: tf.Tensor(0.770656, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.635631, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 16827\n",
+ "Discriminator Loss: tf.Tensor(0.4598908, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.2650355, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 16828\n",
+ "Discriminator Loss: tf.Tensor(0.5819694, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.97492003, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 16829\n",
+ "Discriminator Loss: tf.Tensor(0.55997694, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.4160995, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 16830\n",
+ "Discriminator Loss: tf.Tensor(1.3863714, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.3442068, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 16831\n",
+ "Discriminator Loss: tf.Tensor(0.9754257, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.5459148, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 16832\n",
+ "Discriminator Loss: tf.Tensor(1.0433882, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.00073882565, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 16833\n",
+ "Discriminator Loss: tf.Tensor(0.8819312, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.9635776, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 16834\n",
+ "Discriminator Loss: tf.Tensor(0.64175296, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.68198043, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 16835\n",
+ "Discriminator Loss: tf.Tensor(0.89513946, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.3250678, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 16836\n",
+ "Discriminator Loss: tf.Tensor(0.4291451, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.79244596, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 16837\n",
+ "Discriminator Loss: tf.Tensor(0.34419963, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.2363648, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 16838\n",
+ "Discriminator Loss: tf.Tensor(0.6209703, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.5543228, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 16839\n",
+ "Discriminator Loss: tf.Tensor(1.5481011, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.4063259, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 16840\n",
+ "Discriminator Loss: tf.Tensor(1.1180041, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.6756119, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 16841\n",
+ "Discriminator Loss: tf.Tensor(1.1801172, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.07588171, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 16842\n",
+ "Discriminator Loss: tf.Tensor(0.7493, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.5393181, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 16843\n",
+ "Discriminator Loss: tf.Tensor(1.3659192, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.12492115, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 16844\n",
+ "Discriminator Loss: tf.Tensor(0.67144585, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.5682474, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 16845\n",
+ "Discriminator Loss: tf.Tensor(0.8556962, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.39413282, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 16846\n",
+ "Discriminator Loss: tf.Tensor(1.1234225, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.9259955, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 16847\n",
+ "Discriminator Loss: tf.Tensor(0.84558475, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.31458688, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 16848\n",
+ "Discriminator Loss: tf.Tensor(0.767801, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.2554575, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 16849\n",
+ "Discriminator Loss: tf.Tensor(0.6823773, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.42016602, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 16850\n",
+ "Discriminator Loss: tf.Tensor(0.87679255, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.1951334, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 16851\n",
+ "Discriminator Loss: tf.Tensor(0.6600426, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.5146417, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 16852\n",
+ "Discriminator Loss: tf.Tensor(0.6241289, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.609973, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 16853\n",
+ "Discriminator Loss: tf.Tensor(0.21200305, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.1171602, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 16854\n",
+ "Discriminator Loss: tf.Tensor(0.45851862, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.0659655, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 16855\n",
+ "Discriminator Loss: tf.Tensor(0.33894673, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.142923, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 16856\n",
+ "Discriminator Loss: tf.Tensor(1.7034264, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.571511, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 16857\n",
+ "Discriminator Loss: tf.Tensor(1.6444443, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.52621585, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 16858\n",
+ "Discriminator Loss: tf.Tensor(0.9092196, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.396423, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 16859\n",
+ "Discriminator Loss: tf.Tensor(0.8430692, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.36681116, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 16860\n",
+ "Discriminator Loss: tf.Tensor(0.6877745, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.9263514, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 16861\n",
+ "Discriminator Loss: tf.Tensor(0.666282, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.623846, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 16862\n",
+ "Discriminator Loss: tf.Tensor(0.4494594, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.6116232, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 16863\n",
+ "Discriminator Loss: tf.Tensor(1.0872893, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.16683799, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 16864\n",
+ "Discriminator Loss: tf.Tensor(1.0246356, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.9554753, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 16865\n",
+ "Discriminator Loss: tf.Tensor(1.3719636, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.04865123, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 16866\n",
+ "Discriminator Loss: tf.Tensor(1.2118334, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.7048365, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 16867\n",
+ "Discriminator Loss: tf.Tensor(0.84993315, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.3743334, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 16868\n",
+ "Discriminator Loss: tf.Tensor(0.6115639, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.5472127, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 16869\n",
+ "Discriminator Loss: tf.Tensor(1.1700481, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.10829217, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 16870\n",
+ "Discriminator Loss: tf.Tensor(0.7661403, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.4076349, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 16871\n",
+ "Discriminator Loss: tf.Tensor(0.64539, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.42692176, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 16872\n",
+ "Discriminator Loss: tf.Tensor(0.9858417, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.7651323, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 16873\n",
+ "Discriminator Loss: tf.Tensor(0.8740672, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.20143683, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 16874\n",
+ "Discriminator Loss: tf.Tensor(0.625811, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.2028825, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 16875\n",
+ "Discriminator Loss: tf.Tensor(0.7973805, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.37224495, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 16876\n",
+ "Discriminator Loss: tf.Tensor(0.6034917, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.9462456, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 16877\n",
+ "Discriminator Loss: tf.Tensor(0.9795696, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.39023796, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 16878\n",
+ "Discriminator Loss: tf.Tensor(0.42122734, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.1519463, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 16879\n",
+ "Discriminator Loss: tf.Tensor(1.0155711, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.4773139, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 16880\n",
+ "Discriminator Loss: tf.Tensor(1.0751462, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.364039, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 16881\n",
+ "Discriminator Loss: tf.Tensor(1.3693943, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.15179862, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 16882\n",
+ "Discriminator Loss: tf.Tensor(0.645246, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.2213265, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 16883\n",
+ "Discriminator Loss: tf.Tensor(0.50204086, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.72809595, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 16884\n",
+ "Discriminator Loss: tf.Tensor(0.9514674, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.4807622, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 16885\n",
+ "Discriminator Loss: tf.Tensor(0.79608035, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.23735696, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 16886\n",
+ "Discriminator Loss: tf.Tensor(0.9605185, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.230216, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 16887\n",
+ "Discriminator Loss: tf.Tensor(0.92685354, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.2944937, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 16888\n",
+ "Discriminator Loss: tf.Tensor(1.3800613, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.2534053, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 16889\n",
+ "Discriminator Loss: tf.Tensor(0.69189394, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.35743725, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 16890\n",
+ "Discriminator Loss: tf.Tensor(1.5348676, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.9391068, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 16891\n",
+ "Discriminator Loss: tf.Tensor(0.64947045, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.5500594, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 16892\n",
+ "Discriminator Loss: tf.Tensor(0.77946615, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.5633622, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 16893\n",
+ "Discriminator Loss: tf.Tensor(1.0305779, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.02389659, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 16894\n",
+ "Discriminator Loss: tf.Tensor(0.98806626, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.8837353, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 16895\n",
+ "Discriminator Loss: tf.Tensor(0.5254644, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.5757257, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 16896\n",
+ "Discriminator Loss: tf.Tensor(0.9509796, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.005923, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 16897\n",
+ "Discriminator Loss: tf.Tensor(0.85127336, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.22592331, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 16898\n",
+ "Discriminator Loss: tf.Tensor(1.273146, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.3152775, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 16899\n",
+ "Discriminator Loss: tf.Tensor(0.5790527, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.8809879, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 16900\n",
+ "Discriminator Loss: tf.Tensor(0.9206228, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.8485206, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 16901\n",
+ "Discriminator Loss: tf.Tensor(0.69682914, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.32172674, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 16902\n",
+ "Discriminator Loss: tf.Tensor(1.0635672, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.9775448, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 16903\n",
+ "Discriminator Loss: tf.Tensor(0.91328907, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.16629897, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 16904\n",
+ "Discriminator Loss: tf.Tensor(0.7184578, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.5521922, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 16905\n",
+ "Discriminator Loss: tf.Tensor(0.9187777, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.38226342, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 16906\n",
+ "Discriminator Loss: tf.Tensor(0.5157378, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.5520552, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 16907\n",
+ "Discriminator Loss: tf.Tensor(0.6927471, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.5063117, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 16908\n",
+ "Discriminator Loss: tf.Tensor(0.3351727, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.2340906, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 16909\n",
+ "Discriminator Loss: tf.Tensor(0.6788603, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.650142, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 16910\n",
+ "Discriminator Loss: tf.Tensor(0.5738125, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.8004261, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 16911\n",
+ "Discriminator Loss: tf.Tensor(0.7544944, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.4428337, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 16912\n",
+ "Discriminator Loss: tf.Tensor(1.8261082, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.8844857, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 16913\n",
+ "Discriminator Loss: tf.Tensor(1.1719041, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.11307263, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 16914\n",
+ "Discriminator Loss: tf.Tensor(0.8060703, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.3694849, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 16915\n",
+ "Discriminator Loss: tf.Tensor(1.172495, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.0016812732, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 16916\n",
+ "Discriminator Loss: tf.Tensor(0.530482, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.0014794, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 16917\n",
+ "Discriminator Loss: tf.Tensor(0.74933517, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.73183817, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 16918\n",
+ "Discriminator Loss: tf.Tensor(0.5688865, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.7334229, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 16919\n",
+ "Discriminator Loss: tf.Tensor(1.0937209, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.35439977, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 16920\n",
+ "Discriminator Loss: tf.Tensor(0.9696995, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.8394524, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 16921\n",
+ "Discriminator Loss: tf.Tensor(0.83221346, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.2619852, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 16922\n",
+ "Discriminator Loss: tf.Tensor(1.070819, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.8095165, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 16923\n",
+ "Discriminator Loss: tf.Tensor(1.3968003, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.2960666, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 16924\n",
+ "Discriminator Loss: tf.Tensor(1.4931612, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.701127, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 16925\n",
+ "Discriminator Loss: tf.Tensor(1.0705873, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.04065212, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 16926\n",
+ "Discriminator Loss: tf.Tensor(0.7254312, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.98137707, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 16927\n",
+ "Discriminator Loss: tf.Tensor(0.49247903, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.8028166, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 16928\n",
+ "Discriminator Loss: tf.Tensor(1.2229161, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.1594923, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 16929\n",
+ "Discriminator Loss: tf.Tensor(0.63551056, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.4528834, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 16930\n",
+ "Discriminator Loss: tf.Tensor(0.7277746, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.5852376, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 16931\n",
+ "Discriminator Loss: tf.Tensor(0.74269235, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.32398823, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 16932\n",
+ "Discriminator Loss: tf.Tensor(1.1463991, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.6707643, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 16933\n",
+ "Discriminator Loss: tf.Tensor(1.3461581, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.1267183, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 16934\n",
+ "Discriminator Loss: tf.Tensor(0.7936824, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.1143273, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 16935\n",
+ "Discriminator Loss: tf.Tensor(0.55345404, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.7841441, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 16936\n",
+ "Discriminator Loss: tf.Tensor(0.8640342, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.1646361, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 16937\n",
+ "Discriminator Loss: tf.Tensor(1.297206, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.23055951, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 16938\n",
+ "Discriminator Loss: tf.Tensor(1.1921179, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.8130695, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 16939\n",
+ "Discriminator Loss: tf.Tensor(1.5781975, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.33538306, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 16940\n",
+ "Discriminator Loss: tf.Tensor(0.73336565, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.3481909, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 16941\n",
+ "Discriminator Loss: tf.Tensor(1.278057, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.04566781, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 16942\n",
+ "Discriminator Loss: tf.Tensor(0.6272316, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.4015895, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 16943\n",
+ "Discriminator Loss: tf.Tensor(0.72396827, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.3059974, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 16944\n",
+ "Discriminator Loss: tf.Tensor(1.1018997, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.0821123, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 16945\n",
+ "Discriminator Loss: tf.Tensor(0.8572936, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.22738393, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 16946\n",
+ "Discriminator Loss: tf.Tensor(0.50930583, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.6887373, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 16947\n",
+ "Discriminator Loss: tf.Tensor(0.6165359, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.72349805, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 16948\n",
+ "Discriminator Loss: tf.Tensor(0.55108416, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.498896, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 16949\n",
+ "Discriminator Loss: tf.Tensor(0.6952195, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.52183014, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 16950\n",
+ "Discriminator Loss: tf.Tensor(1.8435745, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.3638804, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 16951\n",
+ "Discriminator Loss: tf.Tensor(0.7706533, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.4052503, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 16952\n",
+ "Discriminator Loss: tf.Tensor(0.62576354, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.5131546, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 16953\n",
+ "Discriminator Loss: tf.Tensor(0.65602094, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.39564475, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 16954\n",
+ "Discriminator Loss: tf.Tensor(1.1005101, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.7617645, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 16955\n",
+ "Discriminator Loss: tf.Tensor(1.0034915, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.0710342, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 16956\n",
+ "Discriminator Loss: tf.Tensor(1.0418246, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.495913, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 16957\n",
+ "Discriminator Loss: tf.Tensor(0.99015206, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.27466622, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 16958\n",
+ "Discriminator Loss: tf.Tensor(0.88987756, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.5601953, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 16959\n",
+ "Discriminator Loss: tf.Tensor(0.82243663, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.2173263, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 16960\n",
+ "Discriminator Loss: tf.Tensor(0.93281794, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.9493464, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 16961\n",
+ "Discriminator Loss: tf.Tensor(1.2435224, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.13228177, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 16962\n",
+ "Discriminator Loss: tf.Tensor(0.8989794, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.7242298, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 16963\n",
+ "Discriminator Loss: tf.Tensor(0.2780547, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.105285, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 16964\n",
+ "Discriminator Loss: tf.Tensor(1.0525761, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.9924605, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 16965\n",
+ "Discriminator Loss: tf.Tensor(0.710633, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.49435565, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 16966\n",
+ "Discriminator Loss: tf.Tensor(1.7085978, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.5404656, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 16967\n",
+ "Discriminator Loss: tf.Tensor(1.0910487, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.007044514, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 16968\n",
+ "Discriminator Loss: tf.Tensor(1.0021329, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.7134737, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 16969\n",
+ "Discriminator Loss: tf.Tensor(0.8357121, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.3336233, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 16970\n",
+ "Discriminator Loss: tf.Tensor(0.85853696, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.6415328, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 16971\n",
+ "Discriminator Loss: tf.Tensor(1.0634023, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.040312257, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 16972\n",
+ "Discriminator Loss: tf.Tensor(1.1632845, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.491428, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 16973\n",
+ "Discriminator Loss: tf.Tensor(1.1881002, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.16906287, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 16974\n",
+ "Discriminator Loss: tf.Tensor(0.7170607, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.3467197, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 16975\n",
+ "Discriminator Loss: tf.Tensor(1.2640756, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.120855115, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 16976\n",
+ "Discriminator Loss: tf.Tensor(1.0066199, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.2151123, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 16977\n",
+ "Discriminator Loss: tf.Tensor(0.82677406, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.37526464, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 16978\n",
+ "Discriminator Loss: tf.Tensor(0.8776895, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.1685894, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 16979\n",
+ "Discriminator Loss: tf.Tensor(0.61500496, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.4055672, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 16980\n",
+ "Discriminator Loss: tf.Tensor(1.0899528, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.5394082, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 16981\n",
+ "Discriminator Loss: tf.Tensor(0.54887044, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.7030592, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 16982\n",
+ "Discriminator Loss: tf.Tensor(0.9719608, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.26377, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 16983\n",
+ "Discriminator Loss: tf.Tensor(0.884826, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.17785011, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 16984\n",
+ "Discriminator Loss: tf.Tensor(0.782408, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.4775867, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 16985\n",
+ "Discriminator Loss: tf.Tensor(0.33986992, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.8857375, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 16986\n",
+ "Discriminator Loss: tf.Tensor(1.0889554, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.6166261, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 16987\n",
+ "Discriminator Loss: tf.Tensor(1.0637907, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.023381487, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 16988\n",
+ "Discriminator Loss: tf.Tensor(1.2310026, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.338923, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 16989\n",
+ "Discriminator Loss: tf.Tensor(0.84331805, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.28582865, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 16990\n",
+ "Discriminator Loss: tf.Tensor(0.8105473, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.0863172, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 16991\n",
+ "Discriminator Loss: tf.Tensor(1.0397645, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.25177255, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 16992\n",
+ "Discriminator Loss: tf.Tensor(1.2420945, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.9210633, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 16993\n",
+ "Discriminator Loss: tf.Tensor(1.32065, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.27984068, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 16994\n",
+ "Discriminator Loss: tf.Tensor(0.6889226, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.185908, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 16995\n",
+ "Discriminator Loss: tf.Tensor(1.0969963, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.095893234, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 16996\n",
+ "Discriminator Loss: tf.Tensor(0.5876169, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.7876047, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 16997\n",
+ "Discriminator Loss: tf.Tensor(0.59119177, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.76214886, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 16998\n",
+ "Discriminator Loss: tf.Tensor(0.7970996, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.8730965, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 16999\n",
+ "Discriminator Loss: tf.Tensor(1.1931512, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.05061673, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 17000\n",
+ "Discriminator Loss: tf.Tensor(1.2276261, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.4791323, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 17001\n",
+ "Discriminator Loss: tf.Tensor(1.1545677, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.13563956, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 17002\n",
+ "Discriminator Loss: tf.Tensor(1.1748016, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.5475913, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 17003\n",
+ "Discriminator Loss: tf.Tensor(1.4374915, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.17538379, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 17004\n",
+ "Discriminator Loss: tf.Tensor(0.77584296, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.0438265, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 17005\n",
+ "Discriminator Loss: tf.Tensor(0.86879194, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.28820044, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 17006\n",
+ "Discriminator Loss: tf.Tensor(1.0554425, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.6020646, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 17007\n",
+ "Discriminator Loss: tf.Tensor(1.1549145, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.12905069, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 17008\n",
+ "Discriminator Loss: tf.Tensor(0.951421, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.3643427, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 17009\n",
+ "Discriminator Loss: tf.Tensor(0.90789944, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.17957842, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 17010\n",
+ "Discriminator Loss: tf.Tensor(0.93099505, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.5045086, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 17011\n",
+ "Discriminator Loss: tf.Tensor(1.3082678, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.26272154, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 17012\n",
+ "Discriminator Loss: tf.Tensor(1.129702, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.9853736, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 17013\n",
+ "Discriminator Loss: tf.Tensor(0.8838284, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.34344146, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 17014\n",
+ "Discriminator Loss: tf.Tensor(0.4291399, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.3551468, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 17015\n",
+ "Discriminator Loss: tf.Tensor(0.77978814, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.47630414, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 17016\n",
+ "Discriminator Loss: tf.Tensor(1.185727, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.859054, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 17017\n",
+ "Discriminator Loss: tf.Tensor(1.4972488, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.47185078, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 17018\n",
+ "Discriminator Loss: tf.Tensor(0.7590024, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.1265471, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 17019\n",
+ "Discriminator Loss: tf.Tensor(0.7718603, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.39084002, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 17020\n",
+ "Discriminator Loss: tf.Tensor(0.9983705, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.6622396, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 17021\n",
+ "Discriminator Loss: tf.Tensor(0.82579017, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.22905849, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 17022\n",
+ "Discriminator Loss: tf.Tensor(0.89986086, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.3864752, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 17023\n",
+ "Discriminator Loss: tf.Tensor(0.39824647, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.9377117, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 17024\n",
+ "Discriminator Loss: tf.Tensor(0.75239617, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.0411785, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 17025\n",
+ "Discriminator Loss: tf.Tensor(1.2040418, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.05795282, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 17026\n",
+ "Discriminator Loss: tf.Tensor(1.0530353, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.098611, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 17027\n",
+ "Discriminator Loss: tf.Tensor(1.2181022, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.1294318, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 17028\n",
+ "Discriminator Loss: tf.Tensor(0.7609441, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.4073778, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 17029\n",
+ "Discriminator Loss: tf.Tensor(1.036696, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.02175613, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 17030\n",
+ "Discriminator Loss: tf.Tensor(0.7885233, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.78327, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 17031\n",
+ "Discriminator Loss: tf.Tensor(1.1797323, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.055914372, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 17032\n",
+ "Discriminator Loss: tf.Tensor(0.84270036, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.5502256, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 17033\n",
+ "Discriminator Loss: tf.Tensor(1.2147591, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.04441585, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 17034\n",
+ "Discriminator Loss: tf.Tensor(0.7290204, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.4476585, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 17035\n",
+ "Discriminator Loss: tf.Tensor(1.0801715, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.042552065, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 17036\n",
+ "Discriminator Loss: tf.Tensor(0.88202417, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.658227, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 17037\n",
+ "Discriminator Loss: tf.Tensor(0.83535546, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.42946923, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 17038\n",
+ "Discriminator Loss: tf.Tensor(0.73811495, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.2467775, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 17039\n",
+ "Discriminator Loss: tf.Tensor(0.66405225, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.96664023, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 17040\n",
+ "Discriminator Loss: tf.Tensor(0.50145996, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.1974785, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 17041\n",
+ "Discriminator Loss: tf.Tensor(1.4804227, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.4229335, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 17042\n",
+ "Discriminator Loss: tf.Tensor(1.4970871, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.8165182, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 17043\n",
+ "Discriminator Loss: tf.Tensor(0.8409893, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.24580817, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 17044\n",
+ "Discriminator Loss: tf.Tensor(0.87593013, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.5737716, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 17045\n",
+ "Discriminator Loss: tf.Tensor(1.315273, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.28764626, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 17046\n",
+ "Discriminator Loss: tf.Tensor(1.1254979, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.2607875, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 17047\n",
+ "Discriminator Loss: tf.Tensor(1.1131257, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.12996458, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 17048\n",
+ "Discriminator Loss: tf.Tensor(0.7621979, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.3036344, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 17049\n",
+ "Discriminator Loss: tf.Tensor(0.836435, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.19225608, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 17050\n",
+ "Discriminator Loss: tf.Tensor(1.1374605, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.7110702, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 17051\n",
+ "Discriminator Loss: tf.Tensor(1.0365664, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.15549374, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 17052\n",
+ "Discriminator Loss: tf.Tensor(0.75535077, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.0061966, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 17053\n",
+ "Discriminator Loss: tf.Tensor(0.49316502, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.8399536, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 17054\n",
+ "Discriminator Loss: tf.Tensor(0.92645216, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.7547168, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 17055\n",
+ "Discriminator Loss: tf.Tensor(1.2355031, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.17562447, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 17056\n",
+ "Discriminator Loss: tf.Tensor(1.2259992, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.3041267, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 17057\n",
+ "Discriminator Loss: tf.Tensor(0.8401747, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.43710208, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 17058\n",
+ "Discriminator Loss: tf.Tensor(0.83544314, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.8574227, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 17059\n",
+ "Discriminator Loss: tf.Tensor(0.7908084, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.28276744, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 17060\n",
+ "Discriminator Loss: tf.Tensor(0.8176732, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.8743597, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 17061\n",
+ "Discriminator Loss: tf.Tensor(0.87694836, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.46276727, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 17062\n",
+ "Discriminator Loss: tf.Tensor(1.2000167, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.6348915, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 17063\n",
+ "Discriminator Loss: tf.Tensor(1.1823236, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.017347591, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 17064\n",
+ "Discriminator Loss: tf.Tensor(0.6838637, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.9615092, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 17065\n",
+ "Discriminator Loss: tf.Tensor(0.9477678, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.33877406, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 17066\n",
+ "Discriminator Loss: tf.Tensor(1.0069569, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.6603035, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 17067\n",
+ "Discriminator Loss: tf.Tensor(1.2599362, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.10624388, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 17068\n",
+ "Discriminator Loss: tf.Tensor(0.866624, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.2520586, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 17069\n",
+ "Discriminator Loss: tf.Tensor(1.3384329, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.2416585, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 17070\n",
+ "Discriminator Loss: tf.Tensor(0.7880296, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.3565665, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 17071\n",
+ "Discriminator Loss: tf.Tensor(0.84855604, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.35143068, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 17072\n",
+ "Discriminator Loss: tf.Tensor(0.60124004, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.4759213, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 17073\n",
+ "Discriminator Loss: tf.Tensor(0.75566685, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.91038066, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 17074\n",
+ "Discriminator Loss: tf.Tensor(0.70531726, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.73764414, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 17075\n",
+ "Discriminator Loss: tf.Tensor(0.9768157, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.5850235, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 17076\n",
+ "Discriminator Loss: tf.Tensor(1.4417306, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.34140047, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 17077\n",
+ "Discriminator Loss: tf.Tensor(0.7986258, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.1630212, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 17078\n",
+ "Discriminator Loss: tf.Tensor(1.0698249, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.09393799, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 17079\n",
+ "Discriminator Loss: tf.Tensor(0.7543103, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.4729496, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 17080\n",
+ "Discriminator Loss: tf.Tensor(0.7788249, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.36271724, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 17081\n",
+ "Discriminator Loss: tf.Tensor(1.0668672, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.6323543, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 17082\n",
+ "Discriminator Loss: tf.Tensor(0.5731483, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.5732015, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 17083\n",
+ "Discriminator Loss: tf.Tensor(1.7011292, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.3502839, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 17084\n",
+ "Discriminator Loss: tf.Tensor(1.5061156, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.34482357, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 17085\n",
+ "Discriminator Loss: tf.Tensor(0.65022814, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.0152571, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 17086\n",
+ "Discriminator Loss: tf.Tensor(0.68878174, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.1419393, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 17087\n",
+ "Discriminator Loss: tf.Tensor(1.096526, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.061864693, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 17088\n",
+ "Discriminator Loss: tf.Tensor(0.7700124, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.571765, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 17089\n",
+ "Discriminator Loss: tf.Tensor(1.0681052, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.03725149, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 17090\n",
+ "Discriminator Loss: tf.Tensor(1.4695891, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.6715988, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 17091\n",
+ "Discriminator Loss: tf.Tensor(1.0192199, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.08468431, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 17092\n",
+ "Discriminator Loss: tf.Tensor(0.79395956, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.8250796, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 17093\n",
+ "Discriminator Loss: tf.Tensor(0.49655056, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.8820183, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 17094\n",
+ "Discriminator Loss: tf.Tensor(1.2336214, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.5837835, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 17095\n",
+ "Discriminator Loss: tf.Tensor(1.2319337, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.20146108, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 17096\n",
+ "Discriminator Loss: tf.Tensor(1.1537722, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.0804373, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 17097\n",
+ "Discriminator Loss: tf.Tensor(0.9605828, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.21727686, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 17098\n",
+ "Discriminator Loss: tf.Tensor(1.2021067, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.3294281, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 17099\n",
+ "Discriminator Loss: tf.Tensor(0.95097077, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.07402749, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 17100\n",
+ "Discriminator Loss: tf.Tensor(1.021814, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.4978385, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 17101\n",
+ "Discriminator Loss: tf.Tensor(1.6427708, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.32189083, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 17102\n",
+ "Discriminator Loss: tf.Tensor(1.048448, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.0131184, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 17103\n",
+ "Discriminator Loss: tf.Tensor(0.87159085, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.52204305, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 17104\n",
+ "Discriminator Loss: tf.Tensor(0.8111886, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.51325, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 17105\n",
+ "Discriminator Loss: tf.Tensor(0.8616459, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.2075501, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 17106\n",
+ "Discriminator Loss: tf.Tensor(1.4607822, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.0165412, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 17107\n",
+ "Discriminator Loss: tf.Tensor(1.0207212, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.06453001, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 17108\n",
+ "Discriminator Loss: tf.Tensor(0.9412528, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.1005735, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 17109\n",
+ "Discriminator Loss: tf.Tensor(0.5104248, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.60780114, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 17110\n",
+ "Discriminator Loss: tf.Tensor(1.6138078, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.2726672, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 17111\n",
+ "Discriminator Loss: tf.Tensor(1.0868832, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.0904605, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 17112\n",
+ "Discriminator Loss: tf.Tensor(0.9340056, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.083891, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 17113\n",
+ "Discriminator Loss: tf.Tensor(0.9522977, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.1322058, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 17114\n",
+ "Discriminator Loss: tf.Tensor(0.8962923, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.840469, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 17115\n",
+ "Discriminator Loss: tf.Tensor(1.0976735, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.20781213, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 17116\n",
+ "Discriminator Loss: tf.Tensor(0.7840703, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.410675, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 17117\n",
+ "Discriminator Loss: tf.Tensor(0.85726225, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.59108704, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 17118\n",
+ "Discriminator Loss: tf.Tensor(1.2996726, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.8298047, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 17119\n",
+ "Discriminator Loss: tf.Tensor(1.065881, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.013160852, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 17120\n",
+ "Discriminator Loss: tf.Tensor(0.7591574, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.8279854, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 17121\n",
+ "Discriminator Loss: tf.Tensor(1.1091335, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.12778361, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 17122\n",
+ "Discriminator Loss: tf.Tensor(0.7502686, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.2944468, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 17123\n",
+ "Discriminator Loss: tf.Tensor(1.0880493, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.32992327, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 17124\n",
+ "Discriminator Loss: tf.Tensor(0.83308625, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.7062622, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 17125\n",
+ "Discriminator Loss: tf.Tensor(0.98730403, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.11027554, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 17126\n",
+ "Discriminator Loss: tf.Tensor(0.9310651, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.4226108, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 17127\n",
+ "Discriminator Loss: tf.Tensor(1.4313308, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.23496963, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 17128\n",
+ "Discriminator Loss: tf.Tensor(0.63565093, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.0373888, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 17129\n",
+ "Discriminator Loss: tf.Tensor(0.8035766, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.2242013, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 17130\n",
+ "Discriminator Loss: tf.Tensor(0.8853105, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.23670834, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 17131\n",
+ "Discriminator Loss: tf.Tensor(1.1783829, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.4630474, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 17132\n",
+ "Discriminator Loss: tf.Tensor(0.66780347, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.4744431, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 17133\n",
+ "Discriminator Loss: tf.Tensor(1.1803024, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.8274384, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 17134\n",
+ "Discriminator Loss: tf.Tensor(0.85957646, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.36205173, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 17135\n",
+ "Discriminator Loss: tf.Tensor(1.1175342, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.1644474, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 17136\n",
+ "Discriminator Loss: tf.Tensor(0.70809144, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.34451005, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 17137\n",
+ "Discriminator Loss: tf.Tensor(1.4235685, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.7361231, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 17138\n",
+ "Discriminator Loss: tf.Tensor(1.1135443, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.09097099, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 17139\n",
+ "Discriminator Loss: tf.Tensor(1.2161121, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.2269001, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 17140\n",
+ "Discriminator Loss: tf.Tensor(0.9562947, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.3290648, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 17141\n",
+ "Discriminator Loss: tf.Tensor(0.8675488, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.9761237, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 17142\n",
+ "Discriminator Loss: tf.Tensor(1.332875, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.21085627, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 17143\n",
+ "Discriminator Loss: tf.Tensor(0.85887057, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.3737084, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 17144\n",
+ "Discriminator Loss: tf.Tensor(1.4439945, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.41578892, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 17145\n",
+ "Discriminator Loss: tf.Tensor(0.78772235, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.9808876, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 17146\n",
+ "Discriminator Loss: tf.Tensor(1.0565492, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.8290946, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 17147\n",
+ "Discriminator Loss: tf.Tensor(0.42715806, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.89531946, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 17148\n",
+ "Discriminator Loss: tf.Tensor(1.3801043, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.9439801, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 17149\n",
+ "Discriminator Loss: tf.Tensor(1.5689068, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.53918886, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 17150\n",
+ "Discriminator Loss: tf.Tensor(1.0868168, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.1502256, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 17151\n",
+ "Discriminator Loss: tf.Tensor(0.93213457, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.124920554, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 17152\n",
+ "Discriminator Loss: tf.Tensor(0.7213963, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.3910437, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 17153\n",
+ "Discriminator Loss: tf.Tensor(0.96049565, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.35294366, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 17154\n",
+ "Discriminator Loss: tf.Tensor(0.9653734, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.2974905, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 17155\n",
+ "Discriminator Loss: tf.Tensor(1.2254689, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.15608792, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 17156\n",
+ "Discriminator Loss: tf.Tensor(1.1318374, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.3339714, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 17157\n",
+ "Discriminator Loss: tf.Tensor(1.4189695, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.3612415, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 17158\n",
+ "Discriminator Loss: tf.Tensor(0.8377763, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.9832675, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 17159\n",
+ "Discriminator Loss: tf.Tensor(1.3234428, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.34346345, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 17160\n",
+ "Discriminator Loss: tf.Tensor(0.7222405, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.7386053, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 17161\n",
+ "Discriminator Loss: tf.Tensor(0.8411908, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.0378393, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 17162\n",
+ "Discriminator Loss: tf.Tensor(0.638196, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.341611, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 17163\n",
+ "Discriminator Loss: tf.Tensor(0.99911845, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.07991543, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 17164\n",
+ "Discriminator Loss: tf.Tensor(1.3150768, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.9505345, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 17165\n",
+ "Discriminator Loss: tf.Tensor(1.076815, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.05046803, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 17166\n",
+ "Discriminator Loss: tf.Tensor(0.91174436, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.0667785, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 17167\n",
+ "Discriminator Loss: tf.Tensor(0.6630191, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.5734658, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 17168\n",
+ "Discriminator Loss: tf.Tensor(0.9472406, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.6057091, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 17169\n",
+ "Discriminator Loss: tf.Tensor(0.9870387, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.113636844, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 17170\n",
+ "Discriminator Loss: tf.Tensor(0.6837408, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.4810854, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 17171\n",
+ "Discriminator Loss: tf.Tensor(0.92527056, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.24263115, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 17172\n",
+ "Discriminator Loss: tf.Tensor(1.1330407, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.5699663, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 17173\n",
+ "Discriminator Loss: tf.Tensor(1.2701346, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.20514922, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 17174\n",
+ "Discriminator Loss: tf.Tensor(0.8910129, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.162192, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 17175\n",
+ "Discriminator Loss: tf.Tensor(0.9992488, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.29345906, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 17176\n",
+ "Discriminator Loss: tf.Tensor(1.0020142, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.1158445, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 17177\n",
+ "Discriminator Loss: tf.Tensor(0.86900777, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.28920376, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 17178\n",
+ "Discriminator Loss: tf.Tensor(0.8326961, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.6153456, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 17179\n",
+ "Discriminator Loss: tf.Tensor(1.1143817, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.076496445, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 17180\n",
+ "Discriminator Loss: tf.Tensor(1.006528, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.6094227, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 17181\n",
+ "Discriminator Loss: tf.Tensor(0.99306893, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.15342699, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 17182\n",
+ "Discriminator Loss: tf.Tensor(0.8898354, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.5096735, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 17183\n",
+ "Discriminator Loss: tf.Tensor(0.55384195, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.7381246, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 17184\n",
+ "Discriminator Loss: tf.Tensor(1.1155487, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.0349576, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 17185\n",
+ "Discriminator Loss: tf.Tensor(1.4518646, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.15937324, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 17186\n",
+ "Discriminator Loss: tf.Tensor(1.1608382, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.1363508, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 17187\n",
+ "Discriminator Loss: tf.Tensor(0.81308514, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.3887794, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 17188\n",
+ "Discriminator Loss: tf.Tensor(1.0477417, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.8071467, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 17189\n",
+ "Discriminator Loss: tf.Tensor(1.5420903, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.46896842, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 17190\n",
+ "Discriminator Loss: tf.Tensor(1.049589, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.1072915, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 17191\n",
+ "Discriminator Loss: tf.Tensor(0.7178429, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.51741534, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 17192\n",
+ "Discriminator Loss: tf.Tensor(1.0060186, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.7391119, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 17193\n",
+ "Discriminator Loss: tf.Tensor(0.79092443, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.25319144, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 17194\n",
+ "Discriminator Loss: tf.Tensor(0.64671385, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.1975077, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 17195\n",
+ "Discriminator Loss: tf.Tensor(0.7173913, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.3554989, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 17196\n",
+ "Discriminator Loss: tf.Tensor(0.9385375, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.9438906, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 17197\n",
+ "Discriminator Loss: tf.Tensor(0.77973145, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.27375665, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 17198\n",
+ "Discriminator Loss: tf.Tensor(1.7631314, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.2772487, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 17199\n",
+ "Discriminator Loss: tf.Tensor(1.2269377, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.20793517, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 17200\n",
+ "Discriminator Loss: tf.Tensor(1.3416015, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.7528639, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 17201\n",
+ "Discriminator Loss: tf.Tensor(0.9294002, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.11401391, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 17202\n",
+ "Discriminator Loss: tf.Tensor(1.1227894, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.1002135, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 17203\n",
+ "Discriminator Loss: tf.Tensor(0.33624703, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.9089621, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 17204\n",
+ "Discriminator Loss: tf.Tensor(0.9827418, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.7781838, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 17205\n",
+ "Discriminator Loss: tf.Tensor(1.7308321, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.68948317, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 17206\n",
+ "Discriminator Loss: tf.Tensor(1.1002705, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.2346431, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 17207\n",
+ "Discriminator Loss: tf.Tensor(1.3073634, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.11756587, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 17208\n",
+ "Discriminator Loss: tf.Tensor(0.60298085, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.4502969, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 17209\n",
+ "Discriminator Loss: tf.Tensor(0.663127, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.42374232, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 17210\n",
+ "Discriminator Loss: tf.Tensor(1.2167459, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.0594366, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 17211\n",
+ "Discriminator Loss: tf.Tensor(1.1633849, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.012342632, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 17212\n",
+ "Discriminator Loss: tf.Tensor(0.65407753, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.1803089, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 17213\n",
+ "Discriminator Loss: tf.Tensor(0.8749665, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.28758824, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 17214\n",
+ "Discriminator Loss: tf.Tensor(1.2345284, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.7027496, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 17215\n",
+ "Discriminator Loss: tf.Tensor(1.4799031, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.32004663, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 17216\n",
+ "Discriminator Loss: tf.Tensor(1.1095, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.2295614, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 17217\n",
+ "Discriminator Loss: tf.Tensor(1.1940717, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.13012473, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 17218\n",
+ "Discriminator Loss: tf.Tensor(1.2366393, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.237049, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 17219\n",
+ "Discriminator Loss: tf.Tensor(0.8188891, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.36154583, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 17220\n",
+ "Discriminator Loss: tf.Tensor(0.5792647, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.6152258, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 17221\n",
+ "Discriminator Loss: tf.Tensor(0.5023941, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.76889676, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 17222\n",
+ "Discriminator Loss: tf.Tensor(1.279372, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.8694433, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 17223\n",
+ "Discriminator Loss: tf.Tensor(1.2320095, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.20526133, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 17224\n",
+ "Discriminator Loss: tf.Tensor(0.99283206, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.2082832, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 17225\n",
+ "Discriminator Loss: tf.Tensor(0.83291006, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.36485052, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 17226\n",
+ "Discriminator Loss: tf.Tensor(0.5056834, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.4926796, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 17227\n",
+ "Discriminator Loss: tf.Tensor(0.88219017, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.32752046, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 17228\n",
+ "Discriminator Loss: tf.Tensor(1.4952269, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.0286567, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 17229\n",
+ "Discriminator Loss: tf.Tensor(1.168161, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.25120747, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 17230\n",
+ "Discriminator Loss: tf.Tensor(1.0659368, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.3100208, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 17231\n",
+ "Discriminator Loss: tf.Tensor(0.98208296, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.48284817, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 17232\n",
+ "Discriminator Loss: tf.Tensor(1.0157766, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.3418341, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 17233\n",
+ "Discriminator Loss: tf.Tensor(0.89968085, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.17560959, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 17234\n",
+ "Discriminator Loss: tf.Tensor(1.4391099, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.5005947, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 17235\n",
+ "Discriminator Loss: tf.Tensor(1.1972015, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.08053752, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 17236\n",
+ "Discriminator Loss: tf.Tensor(1.1132764, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.5871238, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 17237\n",
+ "Discriminator Loss: tf.Tensor(1.2665538, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.19652219, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 17238\n",
+ "Discriminator Loss: tf.Tensor(0.82619214, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.2318002, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 17239\n",
+ "Discriminator Loss: tf.Tensor(0.9447378, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.13101213, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 17240\n",
+ "Discriminator Loss: tf.Tensor(1.0276425, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.4507288, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 17241\n",
+ "Discriminator Loss: tf.Tensor(1.309615, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.26006898, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 17242\n",
+ "Discriminator Loss: tf.Tensor(1.0417047, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.9162717, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 17243\n",
+ "Discriminator Loss: tf.Tensor(0.5573015, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.9078398, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 17244\n",
+ "Discriminator Loss: tf.Tensor(1.1442845, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.0496024, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 17245\n",
+ "Discriminator Loss: tf.Tensor(1.0893229, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.095689654, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 17246\n",
+ "Discriminator Loss: tf.Tensor(1.3834497, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.7516276, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 17247\n",
+ "Discriminator Loss: tf.Tensor(1.1424172, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.08541137, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 17248\n",
+ "Discriminator Loss: tf.Tensor(0.8612213, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.0491248, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 17249\n",
+ "Discriminator Loss: tf.Tensor(0.9917726, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.2152087, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 17250\n",
+ "Discriminator Loss: tf.Tensor(0.8840857, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.3474259, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 17251\n",
+ "Discriminator Loss: tf.Tensor(0.8902882, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.19540246, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 17252\n",
+ "Discriminator Loss: tf.Tensor(1.4182807, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.7936171, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 17253\n",
+ "Discriminator Loss: tf.Tensor(0.74735975, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.42532924, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 17254\n",
+ "Discriminator Loss: tf.Tensor(0.7747486, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.4013053, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 17255\n",
+ "Discriminator Loss: tf.Tensor(1.5332396, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.42431995, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 17256\n",
+ "Discriminator Loss: tf.Tensor(1.1801507, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.6395688, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 17257\n",
+ "Discriminator Loss: tf.Tensor(1.1302192, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.057600256, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 17258\n",
+ "Discriminator Loss: tf.Tensor(1.0340815, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.1510702, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 17259\n",
+ "Discriminator Loss: tf.Tensor(0.7311733, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.7206457, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 17260\n",
+ "Discriminator Loss: tf.Tensor(0.7427082, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.3786064, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 17261\n",
+ "Discriminator Loss: tf.Tensor(0.8838446, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.40300074, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 17262\n",
+ "Discriminator Loss: tf.Tensor(1.6080179, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.050258, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 17263\n",
+ "Discriminator Loss: tf.Tensor(1.0611194, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.034355395, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 17264\n",
+ "Discriminator Loss: tf.Tensor(0.80325246, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.2476202, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 17265\n",
+ "Discriminator Loss: tf.Tensor(1.1922466, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.13609917, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 17266\n",
+ "Discriminator Loss: tf.Tensor(1.4212215, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.4008325, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 17267\n",
+ "Discriminator Loss: tf.Tensor(0.91568863, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.36209193, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 17268\n",
+ "Discriminator Loss: tf.Tensor(0.7471725, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.0875074, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 17269\n",
+ "Discriminator Loss: tf.Tensor(0.8900356, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.5172685, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 17270\n",
+ "Discriminator Loss: tf.Tensor(1.1955483, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.9363395, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 17271\n",
+ "Discriminator Loss: tf.Tensor(1.3801749, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.33924687, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 17272\n",
+ "Discriminator Loss: tf.Tensor(0.92249966, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.0863518, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 17273\n",
+ "Discriminator Loss: tf.Tensor(0.83568347, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.21141195, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 17274\n",
+ "Discriminator Loss: tf.Tensor(0.87976027, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.276347, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 17275\n",
+ "Discriminator Loss: tf.Tensor(0.9257809, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.37107524, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 17276\n",
+ "Discriminator Loss: tf.Tensor(1.1033943, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.0359135, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 17277\n",
+ "Discriminator Loss: tf.Tensor(0.6160759, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.6244184, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 17278\n",
+ "Discriminator Loss: tf.Tensor(1.5868418, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.8175879, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 17279\n",
+ "Discriminator Loss: tf.Tensor(0.9396334, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.122255735, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 17280\n",
+ "Discriminator Loss: tf.Tensor(0.9058447, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.7807846, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 17281\n",
+ "Discriminator Loss: tf.Tensor(0.78661567, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.0126129, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 17282\n",
+ "Discriminator Loss: tf.Tensor(0.4431344, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.89853793, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 17283\n",
+ "Discriminator Loss: tf.Tensor(1.4886832, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.5892848, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 17284\n",
+ "Discriminator Loss: tf.Tensor(1.6535912, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.62996787, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 17285\n",
+ "Discriminator Loss: tf.Tensor(1.3351353, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.5567263, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 17286\n",
+ "Discriminator Loss: tf.Tensor(0.95993453, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.18914145, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 17287\n",
+ "Discriminator Loss: tf.Tensor(0.7028582, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.5706254, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 17288\n",
+ "Discriminator Loss: tf.Tensor(0.9226762, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.22684471, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 17289\n",
+ "Discriminator Loss: tf.Tensor(0.7289589, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.1283923, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 17290\n",
+ "Discriminator Loss: tf.Tensor(0.8623503, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.7850663, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 17291\n",
+ "Discriminator Loss: tf.Tensor(0.8772346, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.8682127, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 17292\n",
+ "Discriminator Loss: tf.Tensor(0.91333425, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.4220448, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 17293\n",
+ "Discriminator Loss: tf.Tensor(0.9647817, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.11846405, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 17294\n",
+ "Discriminator Loss: tf.Tensor(1.4026383, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.1343129, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 17295\n",
+ "Discriminator Loss: tf.Tensor(0.9530888, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.35188937, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 17296\n",
+ "Discriminator Loss: tf.Tensor(0.8272165, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.2106935, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 17297\n",
+ "Discriminator Loss: tf.Tensor(0.985271, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.2367459, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 17298\n",
+ "Discriminator Loss: tf.Tensor(1.2239983, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.8755465, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 17299\n",
+ "Discriminator Loss: tf.Tensor(1.3848441, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.22891204, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 17300\n",
+ "Discriminator Loss: tf.Tensor(0.84096855, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.9140211, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 17301\n",
+ "Discriminator Loss: tf.Tensor(0.6429944, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.56171423, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 17302\n",
+ "Discriminator Loss: tf.Tensor(1.0537138, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.6816835, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 17303\n",
+ "Discriminator Loss: tf.Tensor(0.9253584, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.15942456, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 17304\n",
+ "Discriminator Loss: tf.Tensor(1.0299693, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.4483398, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 17305\n",
+ "Discriminator Loss: tf.Tensor(1.0746807, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.053377986, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 17306\n",
+ "Discriminator Loss: tf.Tensor(1.0512664, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.4130725, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 17307\n",
+ "Discriminator Loss: tf.Tensor(0.76688206, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.3787949, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 17308\n",
+ "Discriminator Loss: tf.Tensor(1.1722853, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.9314632, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 17309\n",
+ "Discriminator Loss: tf.Tensor(1.7236167, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.5680376, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 17310\n",
+ "Discriminator Loss: tf.Tensor(0.79244596, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.98693013, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 17311\n",
+ "Discriminator Loss: tf.Tensor(0.49192518, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.9415514, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 17312\n",
+ "Discriminator Loss: tf.Tensor(1.0240605, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.3097794, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 17313\n",
+ "Discriminator Loss: tf.Tensor(1.3571153, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.28278604, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 17314\n",
+ "Discriminator Loss: tf.Tensor(0.9145343, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.1933851, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 17315\n",
+ "Discriminator Loss: tf.Tensor(0.73595357, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.39646378, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 17316\n",
+ "Discriminator Loss: tf.Tensor(0.7432007, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.9748245, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 17317\n",
+ "Discriminator Loss: tf.Tensor(1.3429906, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.03188962, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 17318\n",
+ "Discriminator Loss: tf.Tensor(1.191356, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.7087018, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 17319\n",
+ "Discriminator Loss: tf.Tensor(1.2828412, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.6849016, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 17320\n",
+ "Discriminator Loss: tf.Tensor(1.6896973, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.49213704, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 17321\n",
+ "Discriminator Loss: tf.Tensor(1.1608751, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.66932946, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 17322\n",
+ "Discriminator Loss: tf.Tensor(0.7080984, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.1661723, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 17323\n",
+ "Discriminator Loss: tf.Tensor(1.0243834, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.0003486375, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 17324\n",
+ "Discriminator Loss: tf.Tensor(0.8677921, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.4781352, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 17325\n",
+ "Discriminator Loss: tf.Tensor(0.9846863, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.049714398, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 17326\n",
+ "Discriminator Loss: tf.Tensor(1.1252018, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.3522315, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 17327\n",
+ "Discriminator Loss: tf.Tensor(0.8320287, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.4426668, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 17328\n",
+ "Discriminator Loss: tf.Tensor(0.9074893, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.9598742, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 17329\n",
+ "Discriminator Loss: tf.Tensor(1.0216902, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.006212525, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 17330\n",
+ "Discriminator Loss: tf.Tensor(0.84194666, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.0177683, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 17331\n",
+ "Discriminator Loss: tf.Tensor(0.56091756, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.0900761, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 17332\n",
+ "Discriminator Loss: tf.Tensor(0.9518529, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.57298845, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 17333\n",
+ "Discriminator Loss: tf.Tensor(0.9502317, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.3224108, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 17334\n",
+ "Discriminator Loss: tf.Tensor(1.2575703, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.09638854, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 17335\n",
+ "Discriminator Loss: tf.Tensor(1.6822762, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.8178946, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 17336\n",
+ "Discriminator Loss: tf.Tensor(1.5066566, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.29063132, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 17337\n",
+ "Discriminator Loss: tf.Tensor(0.8347009, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.815588, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 17338\n",
+ "Discriminator Loss: tf.Tensor(0.61475086, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.47578135, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 17339\n",
+ "Discriminator Loss: tf.Tensor(1.5002872, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.1451645, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 17340\n",
+ "Discriminator Loss: tf.Tensor(0.93515813, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.13864543, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 17341\n",
+ "Discriminator Loss: tf.Tensor(0.7046322, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.99703264, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 17342\n",
+ "Discriminator Loss: tf.Tensor(0.8757926, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.1560943, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 17343\n",
+ "Discriminator Loss: tf.Tensor(0.6338502, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.86343, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 17344\n",
+ "Discriminator Loss: tf.Tensor(1.6425858, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.0492206, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 17345\n",
+ "Discriminator Loss: tf.Tensor(1.5049391, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.40093413, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 17346\n",
+ "Discriminator Loss: tf.Tensor(0.814269, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.0026898, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 17347\n",
+ "Discriminator Loss: tf.Tensor(0.9159061, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.5995302, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 17348\n",
+ "Discriminator Loss: tf.Tensor(1.0641603, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.5368963, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 17349\n",
+ "Discriminator Loss: tf.Tensor(0.89281636, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.16130285, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 17350\n",
+ "Discriminator Loss: tf.Tensor(1.1500615, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.4368826, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 17351\n",
+ "Discriminator Loss: tf.Tensor(1.562275, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.42753327, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 17352\n",
+ "Discriminator Loss: tf.Tensor(0.6682073, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.3762962, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 17353\n",
+ "Discriminator Loss: tf.Tensor(0.89050055, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.1404766, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 17354\n",
+ "Discriminator Loss: tf.Tensor(0.70960236, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.2007592, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 17355\n",
+ "Discriminator Loss: tf.Tensor(0.69989705, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.8614464, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 17356\n",
+ "Discriminator Loss: tf.Tensor(0.9163372, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.9337475, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 17357\n",
+ "Discriminator Loss: tf.Tensor(0.8904114, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.5190567, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 17358\n",
+ "Discriminator Loss: tf.Tensor(0.5403141, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.86292976, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 17359\n",
+ "Discriminator Loss: tf.Tensor(0.72505605, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.334874, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 17360\n",
+ "Discriminator Loss: tf.Tensor(0.75153315, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.5336637, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 17361\n",
+ "Discriminator Loss: tf.Tensor(1.5239255, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.946139, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 17362\n",
+ "Discriminator Loss: tf.Tensor(1.1228328, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.019234767, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 17363\n",
+ "Discriminator Loss: tf.Tensor(1.002946, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.7020428, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 17364\n",
+ "Discriminator Loss: tf.Tensor(0.7539333, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.85959226, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 17365\n",
+ "Discriminator Loss: tf.Tensor(0.77209675, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.2227778, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 17366\n",
+ "Discriminator Loss: tf.Tensor(1.3260293, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.25315148, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 17367\n",
+ "Discriminator Loss: tf.Tensor(1.2020313, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.303365, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 17368\n",
+ "Discriminator Loss: tf.Tensor(0.9016478, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.14166701, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 17369\n",
+ "Discriminator Loss: tf.Tensor(1.144156, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.4878772, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 17370\n",
+ "Discriminator Loss: tf.Tensor(1.3613697, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.1489714, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 17371\n",
+ "Discriminator Loss: tf.Tensor(1.0777804, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.44507384, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 17372\n",
+ "Discriminator Loss: tf.Tensor(0.8333061, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.92782116, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 17373\n",
+ "Discriminator Loss: tf.Tensor(0.88578427, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.9667246, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 17374\n",
+ "Discriminator Loss: tf.Tensor(0.9001929, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.530932, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 17375\n",
+ "Discriminator Loss: tf.Tensor(1.0958408, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.663746, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 17376\n",
+ "Discriminator Loss: tf.Tensor(1.0626682, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.09927201, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 17377\n",
+ "Discriminator Loss: tf.Tensor(1.3666503, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.9576868, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 17378\n",
+ "Discriminator Loss: tf.Tensor(1.165388, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.0017903248, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 17379\n",
+ "Discriminator Loss: tf.Tensor(1.3585333, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.48369834, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 17380\n",
+ "Discriminator Loss: tf.Tensor(0.9146681, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.1126035, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 17381\n",
+ "Discriminator Loss: tf.Tensor(1.0195715, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.1341407, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 17382\n",
+ "Discriminator Loss: tf.Tensor(1.5003821, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.0185928, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 17383\n",
+ "Discriminator Loss: tf.Tensor(1.579692, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.5049297, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 17384\n",
+ "Discriminator Loss: tf.Tensor(0.93348676, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.79984504, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 17385\n",
+ "Discriminator Loss: tf.Tensor(0.4677646, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.6613297, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 17386\n",
+ "Discriminator Loss: tf.Tensor(2.1179762, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.9807289, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 17387\n",
+ "Discriminator Loss: tf.Tensor(0.7018732, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.69909984, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 17388\n",
+ "Discriminator Loss: tf.Tensor(0.41924292, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.8083978, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 17389\n",
+ "Discriminator Loss: tf.Tensor(1.2940043, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.4484595, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 17390\n",
+ "Discriminator Loss: tf.Tensor(1.2125698, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.02505751, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 17391\n",
+ "Discriminator Loss: tf.Tensor(0.904741, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.6683731, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 17392\n",
+ "Discriminator Loss: tf.Tensor(1.1547018, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.029501745, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 17393\n",
+ "Discriminator Loss: tf.Tensor(1.0530454, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.4457327, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 17394\n",
+ "Discriminator Loss: tf.Tensor(1.347957, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.18547314, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 17395\n",
+ "Discriminator Loss: tf.Tensor(0.41202322, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.2417363, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 17396\n",
+ "Discriminator Loss: tf.Tensor(0.5475815, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.077376, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 17397\n",
+ "Discriminator Loss: tf.Tensor(0.8259181, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.66356176, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 17398\n",
+ "Discriminator Loss: tf.Tensor(1.2550457, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.6357442, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 17399\n",
+ "Discriminator Loss: tf.Tensor(1.069586, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.1312386, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 17400\n",
+ "Discriminator Loss: tf.Tensor(1.0818797, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.0904074, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 17401\n",
+ "Discriminator Loss: tf.Tensor(1.0301094, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.5028744, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 17402\n",
+ "Discriminator Loss: tf.Tensor(1.0817696, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.6475781, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 17403\n",
+ "Discriminator Loss: tf.Tensor(1.5040382, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.42061678, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 17404\n",
+ "Discriminator Loss: tf.Tensor(0.85348094, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.0603837, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 17405\n",
+ "Discriminator Loss: tf.Tensor(0.7135949, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.60681576, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 17406\n",
+ "Discriminator Loss: tf.Tensor(1.5164973, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.8000612, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 17407\n",
+ "Discriminator Loss: tf.Tensor(1.195324, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.12851974, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 17408\n",
+ "Discriminator Loss: tf.Tensor(1.0673559, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.7749302, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 17409\n",
+ "Discriminator Loss: tf.Tensor(0.6980106, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.0724262, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 17410\n",
+ "Discriminator Loss: tf.Tensor(1.0325457, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.2302279, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 17411\n",
+ "Discriminator Loss: tf.Tensor(1.6026788, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.7069277, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 17412\n",
+ "Discriminator Loss: tf.Tensor(0.9199739, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.13776015, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 17413\n",
+ "Discriminator Loss: tf.Tensor(1.2429532, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.3043348, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 17414\n",
+ "Discriminator Loss: tf.Tensor(1.3560176, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.1440645, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 17415\n",
+ "Discriminator Loss: tf.Tensor(0.8973256, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.2410505, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 17416\n",
+ "Discriminator Loss: tf.Tensor(1.2041353, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.09710321, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 17417\n",
+ "Discriminator Loss: tf.Tensor(0.8705233, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.1782993, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 17418\n",
+ "Discriminator Loss: tf.Tensor(0.9168624, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.22087623, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 17419\n",
+ "Discriminator Loss: tf.Tensor(1.1754957, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.0949033, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 17420\n",
+ "Discriminator Loss: tf.Tensor(1.1302073, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.5218574, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 17421\n",
+ "Discriminator Loss: tf.Tensor(1.1824555, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.528155, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 17422\n",
+ "Discriminator Loss: tf.Tensor(1.2942659, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.27035952, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 17423\n",
+ "Discriminator Loss: tf.Tensor(1.1923579, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.91793424, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 17424\n",
+ "Discriminator Loss: tf.Tensor(1.2246704, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.119915634, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 17425\n",
+ "Discriminator Loss: tf.Tensor(1.0552874, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.9404343, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 17426\n",
+ "Discriminator Loss: tf.Tensor(0.5456729, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.0422193, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 17427\n",
+ "Discriminator Loss: tf.Tensor(1.3295827, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.1244581, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 17428\n",
+ "Discriminator Loss: tf.Tensor(1.784148, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.2677667, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 17429\n",
+ "Discriminator Loss: tf.Tensor(1.368553, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.25171685, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 17430\n",
+ "Discriminator Loss: tf.Tensor(1.1311765, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.6105054, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 17431\n",
+ "Discriminator Loss: tf.Tensor(0.8859264, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.6336882, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 17432\n",
+ "Discriminator Loss: tf.Tensor(0.8227583, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.3406363, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 17433\n",
+ "Discriminator Loss: tf.Tensor(1.5620977, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.43561903, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 17434\n",
+ "Discriminator Loss: tf.Tensor(1.4011297, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.6540394, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 17435\n",
+ "Discriminator Loss: tf.Tensor(1.2542757, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.1149917, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 17436\n",
+ "Discriminator Loss: tf.Tensor(1.0733856, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.2483729, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 17437\n",
+ "Discriminator Loss: tf.Tensor(1.0651832, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.02637774, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 17438\n",
+ "Discriminator Loss: tf.Tensor(1.1325448, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.76555485, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 17439\n",
+ "Discriminator Loss: tf.Tensor(0.63811445, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.88721824, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 17440\n",
+ "Discriminator Loss: tf.Tensor(0.6562649, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.9914207, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 17441\n",
+ "Discriminator Loss: tf.Tensor(0.7482797, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.80846554, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 17442\n",
+ "Discriminator Loss: tf.Tensor(2.1964092, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.78557, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 17443\n",
+ "Discriminator Loss: tf.Tensor(1.7912551, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.60886836, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 17444\n",
+ "Discriminator Loss: tf.Tensor(1.2595532, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.6882124, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 17445\n",
+ "Discriminator Loss: tf.Tensor(0.5467179, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.92224884, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 17446\n",
+ "Discriminator Loss: tf.Tensor(0.6940918, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.0590353, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 17447\n",
+ "Discriminator Loss: tf.Tensor(0.9963858, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.7947812, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 17448\n",
+ "Discriminator Loss: tf.Tensor(0.96200335, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.3669633, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 17449\n",
+ "Discriminator Loss: tf.Tensor(1.9180208, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.2291365, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 17450\n",
+ "Discriminator Loss: tf.Tensor(1.3768163, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.3133901, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 17451\n",
+ "Discriminator Loss: tf.Tensor(1.077529, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.9123637, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 17452\n",
+ "Discriminator Loss: tf.Tensor(0.58885807, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.6726611, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 17453\n",
+ "Discriminator Loss: tf.Tensor(1.6460636, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.7377764, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 17454\n",
+ "Discriminator Loss: tf.Tensor(1.0701674, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.024144808, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 17455\n",
+ "Discriminator Loss: tf.Tensor(1.0081387, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.1431621, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 17456\n",
+ "Discriminator Loss: tf.Tensor(0.7714926, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.31305102, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 17457\n",
+ "Discriminator Loss: tf.Tensor(0.94995546, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.6250706, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 17458\n",
+ "Discriminator Loss: tf.Tensor(1.0025269, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.06715118, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 17459\n",
+ "Discriminator Loss: tf.Tensor(0.86757433, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.0329026, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 17460\n",
+ "Discriminator Loss: tf.Tensor(0.88172895, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.44221628, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 17461\n",
+ "Discriminator Loss: tf.Tensor(0.9225663, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.456234, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 17462\n",
+ "Discriminator Loss: tf.Tensor(1.504643, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.4689963, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 17463\n",
+ "Discriminator Loss: tf.Tensor(1.0705552, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.2577373, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 17464\n",
+ "Discriminator Loss: tf.Tensor(0.8939811, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.28213015, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 17465\n",
+ "Discriminator Loss: tf.Tensor(0.93741703, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.3788782, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 17466\n",
+ "Discriminator Loss: tf.Tensor(0.7242295, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.6015931, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 17467\n",
+ "Discriminator Loss: tf.Tensor(1.200663, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.7058188, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 17468\n",
+ "Discriminator Loss: tf.Tensor(1.8651704, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.8099955, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 17469\n",
+ "Discriminator Loss: tf.Tensor(0.7335659, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.1733035, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 17470\n",
+ "Discriminator Loss: tf.Tensor(1.1031983, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.116910435, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 17471\n",
+ "Discriminator Loss: tf.Tensor(0.57427186, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.2552783, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 17472\n",
+ "Discriminator Loss: tf.Tensor(1.0850834, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.08951986, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 17473\n",
+ "Discriminator Loss: tf.Tensor(0.8917525, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.2475449, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 17474\n",
+ "Discriminator Loss: tf.Tensor(1.446727, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.41862127, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 17475\n",
+ "Discriminator Loss: tf.Tensor(0.4618522, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.0404812, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 17476\n",
+ "Discriminator Loss: tf.Tensor(0.924468, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.2738807, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 17477\n",
+ "Discriminator Loss: tf.Tensor(0.6806398, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.3408297, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 17478\n",
+ "Discriminator Loss: tf.Tensor(0.9822604, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.36819556, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 17479\n",
+ "Discriminator Loss: tf.Tensor(1.0856442, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.9791279, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 17480\n",
+ "Discriminator Loss: tf.Tensor(1.5357523, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.42776296, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 17481\n",
+ "Discriminator Loss: tf.Tensor(0.689754, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.3425986, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 17482\n",
+ "Discriminator Loss: tf.Tensor(1.0701363, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.11102015, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 17483\n",
+ "Discriminator Loss: tf.Tensor(0.5770949, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.8503405, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 17484\n",
+ "Discriminator Loss: tf.Tensor(1.3473036, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.016326532, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 17485\n",
+ "Discriminator Loss: tf.Tensor(0.631949, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.383907, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 17486\n",
+ "Discriminator Loss: tf.Tensor(1.0217295, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.44931185, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 17487\n",
+ "Discriminator Loss: tf.Tensor(1.3008809, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.6735339, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 17488\n",
+ "Discriminator Loss: tf.Tensor(1.5152711, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.42948517, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 17489\n",
+ "Discriminator Loss: tf.Tensor(1.0594933, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.8707817, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 17490\n",
+ "Discriminator Loss: tf.Tensor(0.95572037, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.3668948, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 17491\n",
+ "Discriminator Loss: tf.Tensor(0.6987148, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.3554102, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 17492\n",
+ "Discriminator Loss: tf.Tensor(1.1554519, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.030203052, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 17493\n",
+ "Discriminator Loss: tf.Tensor(1.0928738, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.550238, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 17494\n",
+ "Discriminator Loss: tf.Tensor(1.2119792, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.11581657, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 17495\n",
+ "Discriminator Loss: tf.Tensor(0.99063694, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.86687344, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 17496\n",
+ "Discriminator Loss: tf.Tensor(0.7997185, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.50549954, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 17497\n",
+ "Discriminator Loss: tf.Tensor(1.3988465, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.9532465, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 17498\n",
+ "Discriminator Loss: tf.Tensor(1.6996495, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.64971894, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 17499\n",
+ "Discriminator Loss: tf.Tensor(1.1199704, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.7145777, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 17500\n",
+ "Discriminator Loss: tf.Tensor(0.8342057, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.63494015, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 17501\n",
+ "Discriminator Loss: tf.Tensor(1.5247889, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.743277, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 17502\n",
+ "Discriminator Loss: tf.Tensor(1.2983931, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.21735744, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 17503\n",
+ "Discriminator Loss: tf.Tensor(1.2304331, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.98837835, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 17504\n",
+ "Discriminator Loss: tf.Tensor(1.0812054, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.03793923, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 17505\n",
+ "Discriminator Loss: tf.Tensor(1.2017214, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.4540092, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 17506\n",
+ "Discriminator Loss: tf.Tensor(1.314941, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.10365694, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 17507\n",
+ "Discriminator Loss: tf.Tensor(0.9312262, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.62099737, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 17508\n",
+ "Discriminator Loss: tf.Tensor(0.63010883, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.0776134, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 17509\n",
+ "Discriminator Loss: tf.Tensor(1.0550612, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.060913008, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 17510\n",
+ "Discriminator Loss: tf.Tensor(1.0372719, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.9838575, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 17511\n",
+ "Discriminator Loss: tf.Tensor(1.6362708, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.58824396, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 17512\n",
+ "Discriminator Loss: tf.Tensor(0.8279973, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.9257255, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 17513\n",
+ "Discriminator Loss: tf.Tensor(0.2478396, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.3919996, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 17514\n",
+ "Discriminator Loss: tf.Tensor(0.84321886, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.36382148, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 17515\n",
+ "Discriminator Loss: tf.Tensor(1.3720554, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.181819, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 17516\n",
+ "Discriminator Loss: tf.Tensor(1.3853065, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.3275729, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 17517\n",
+ "Discriminator Loss: tf.Tensor(0.8842628, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.13018, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 17518\n",
+ "Discriminator Loss: tf.Tensor(0.6402985, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.520641, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 17519\n",
+ "Discriminator Loss: tf.Tensor(1.3344572, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.4492599, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 17520\n",
+ "Discriminator Loss: tf.Tensor(1.1312345, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.09196263, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 17521\n",
+ "Discriminator Loss: tf.Tensor(0.8928176, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.1068069, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 17522\n",
+ "Discriminator Loss: tf.Tensor(0.7535836, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.7662807, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 17523\n",
+ "Discriminator Loss: tf.Tensor(1.0361118, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.2983199, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 17524\n",
+ "Discriminator Loss: tf.Tensor(0.7192746, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.41216278, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 17525\n",
+ "Discriminator Loss: tf.Tensor(1.0101311, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.2499235, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 17526\n",
+ "Discriminator Loss: tf.Tensor(1.1469295, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.10334626, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 17527\n",
+ "Discriminator Loss: tf.Tensor(1.5398741, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.126166, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 17528\n",
+ "Discriminator Loss: tf.Tensor(1.1941669, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.21255486, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 17529\n",
+ "Discriminator Loss: tf.Tensor(0.6167793, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.86766773, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 17530\n",
+ "Discriminator Loss: tf.Tensor(0.943329, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.0132176, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 17531\n",
+ "Discriminator Loss: tf.Tensor(1.0703543, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.5881059, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 17532\n",
+ "Discriminator Loss: tf.Tensor(1.161373, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.6242102, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 17533\n",
+ "Discriminator Loss: tf.Tensor(1.5655223, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.49225494, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 17534\n",
+ "Discriminator Loss: tf.Tensor(1.0785954, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.8346378, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 17535\n",
+ "Discriminator Loss: tf.Tensor(0.91484195, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.2832628, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 17536\n",
+ "Discriminator Loss: tf.Tensor(1.4317164, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.7634073, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 17537\n",
+ "Discriminator Loss: tf.Tensor(0.9929266, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.21417387, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 17538\n",
+ "Discriminator Loss: tf.Tensor(0.6453705, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.0946685, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 17539\n",
+ "Discriminator Loss: tf.Tensor(1.0742958, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.055615555, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 17540\n",
+ "Discriminator Loss: tf.Tensor(1.0443355, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.8160944, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 17541\n",
+ "Discriminator Loss: tf.Tensor(0.89695626, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.20728834, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 17542\n",
+ "Discriminator Loss: tf.Tensor(1.0038834, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.2816362, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 17543\n",
+ "Discriminator Loss: tf.Tensor(1.4343908, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.3506174, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 17544\n",
+ "Discriminator Loss: tf.Tensor(0.972203, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.3027016, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 17545\n",
+ "Discriminator Loss: tf.Tensor(0.9411988, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.23906566, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 17546\n",
+ "Discriminator Loss: tf.Tensor(1.0182242, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.589055, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 17547\n",
+ "Discriminator Loss: tf.Tensor(0.8152167, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.20252924, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 17548\n",
+ "Discriminator Loss: tf.Tensor(0.5217452, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.4445704, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 17549\n",
+ "Discriminator Loss: tf.Tensor(0.76328033, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.6040408, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 17550\n",
+ "Discriminator Loss: tf.Tensor(0.9529751, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.4083552, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 17551\n",
+ "Discriminator Loss: tf.Tensor(0.6926739, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.5804164, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 17552\n",
+ "Discriminator Loss: tf.Tensor(1.3786817, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.0344946, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 17553\n",
+ "Discriminator Loss: tf.Tensor(1.1968776, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.09791919, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 17554\n",
+ "Discriminator Loss: tf.Tensor(0.43208247, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.1718771, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 17555\n",
+ "Discriminator Loss: tf.Tensor(0.852879, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.5355339, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 17556\n",
+ "Discriminator Loss: tf.Tensor(0.75770664, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.2921271, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 17557\n",
+ "Discriminator Loss: tf.Tensor(0.86519665, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.18884687, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 17558\n",
+ "Discriminator Loss: tf.Tensor(1.0043417, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.7604327, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 17559\n",
+ "Discriminator Loss: tf.Tensor(0.97416663, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.53689843, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 17560\n",
+ "Discriminator Loss: tf.Tensor(0.9897407, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.1880938, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 17561\n",
+ "Discriminator Loss: tf.Tensor(1.0482923, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.25287175, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 17562\n",
+ "Discriminator Loss: tf.Tensor(1.2436706, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.6209522, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 17563\n",
+ "Discriminator Loss: tf.Tensor(1.1876076, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.13013987, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 17564\n",
+ "Discriminator Loss: tf.Tensor(0.9581443, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.0082322, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 17565\n",
+ "Discriminator Loss: tf.Tensor(0.697474, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.9426904, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 17566\n",
+ "Discriminator Loss: tf.Tensor(1.0662566, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.5751853, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 17567\n",
+ "Discriminator Loss: tf.Tensor(0.59644675, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.3086017, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 17568\n",
+ "Discriminator Loss: tf.Tensor(1.3508464, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.09112988, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 17569\n",
+ "Discriminator Loss: tf.Tensor(1.2644699, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.1946218, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 17570\n",
+ "Discriminator Loss: tf.Tensor(1.2164116, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.070804946, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 17571\n",
+ "Discriminator Loss: tf.Tensor(0.92876154, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.2925848, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 17572\n",
+ "Discriminator Loss: tf.Tensor(1.2210289, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.07132449, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 17573\n",
+ "Discriminator Loss: tf.Tensor(0.6674227, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.294393, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 17574\n",
+ "Discriminator Loss: tf.Tensor(0.7855705, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.55640787, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 17575\n",
+ "Discriminator Loss: tf.Tensor(1.3781387, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.9555353, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 17576\n",
+ "Discriminator Loss: tf.Tensor(1.1976256, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.03173698, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 17577\n",
+ "Discriminator Loss: tf.Tensor(0.74283826, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.1153721, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 17578\n",
+ "Discriminator Loss: tf.Tensor(1.2870324, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.06278395, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 17579\n",
+ "Discriminator Loss: tf.Tensor(1.0121319, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.2012815, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 17580\n",
+ "Discriminator Loss: tf.Tensor(1.1031404, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.09951345, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 17581\n",
+ "Discriminator Loss: tf.Tensor(0.62242365, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.2724687, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 17582\n",
+ "Discriminator Loss: tf.Tensor(1.2901642, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.016410781, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 17583\n",
+ "Discriminator Loss: tf.Tensor(0.95351726, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.91162306, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 17584\n",
+ "Discriminator Loss: tf.Tensor(0.66155946, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.3789153, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 17585\n",
+ "Discriminator Loss: tf.Tensor(1.9113622, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.2768364, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 17586\n",
+ "Discriminator Loss: tf.Tensor(0.8253703, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.3969932, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 17587\n",
+ "Discriminator Loss: tf.Tensor(1.1000247, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.4616715, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 17588\n",
+ "Discriminator Loss: tf.Tensor(1.4892517, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.35590756, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 17589\n",
+ "Discriminator Loss: tf.Tensor(0.77119154, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.194758, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 17590\n",
+ "Discriminator Loss: tf.Tensor(1.2892649, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.22076236, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 17591\n",
+ "Discriminator Loss: tf.Tensor(1.1889293, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.1866946, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 17592\n",
+ "Discriminator Loss: tf.Tensor(1.351198, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.2048937, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 17593\n",
+ "Discriminator Loss: tf.Tensor(1.0540711, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.389784, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 17594\n",
+ "Discriminator Loss: tf.Tensor(1.5930817, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.5416551, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 17595\n",
+ "Discriminator Loss: tf.Tensor(1.2402037, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.84194976, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 17596\n",
+ "Discriminator Loss: tf.Tensor(0.9160122, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.35135874, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 17597\n",
+ "Discriminator Loss: tf.Tensor(0.7041694, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.2173249, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 17598\n",
+ "Discriminator Loss: tf.Tensor(1.1017323, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.056820463, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 17599\n",
+ "Discriminator Loss: tf.Tensor(1.5508697, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.9882736, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 17600\n",
+ "Discriminator Loss: tf.Tensor(1.3366154, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.22671379, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 17601\n",
+ "Discriminator Loss: tf.Tensor(0.84573376, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.0772239, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 17602\n",
+ "Discriminator Loss: tf.Tensor(0.72419846, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.369913, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 17603\n",
+ "Discriminator Loss: tf.Tensor(1.1654118, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.8201538, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 17604\n",
+ "Discriminator Loss: tf.Tensor(1.3809243, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.3283213, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 17605\n",
+ "Discriminator Loss: tf.Tensor(1.0531124, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.276937, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 17606\n",
+ "Discriminator Loss: tf.Tensor(0.8290419, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.3714296, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 17607\n",
+ "Discriminator Loss: tf.Tensor(0.93142366, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.6434551, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 17608\n",
+ "Discriminator Loss: tf.Tensor(1.8749809, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.80670357, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 17609\n",
+ "Discriminator Loss: tf.Tensor(0.8627875, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.0214878, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 17610\n",
+ "Discriminator Loss: tf.Tensor(0.5828115, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.7321413, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 17611\n",
+ "Discriminator Loss: tf.Tensor(1.2451665, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.1206963, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 17612\n",
+ "Discriminator Loss: tf.Tensor(1.2280152, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.076246865, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 17613\n",
+ "Discriminator Loss: tf.Tensor(0.58507997, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.1449953, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 17614\n",
+ "Discriminator Loss: tf.Tensor(0.5817634, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.62251997, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 17615\n",
+ "Discriminator Loss: tf.Tensor(1.3256842, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.2162864, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 17616\n",
+ "Discriminator Loss: tf.Tensor(0.80128485, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.49421152, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 17617\n",
+ "Discriminator Loss: tf.Tensor(0.85646784, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.1743346, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 17618\n",
+ "Discriminator Loss: tf.Tensor(0.85974437, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.55781627, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 17619\n",
+ "Discriminator Loss: tf.Tensor(0.70402706, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.8462807, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 17620\n",
+ "Discriminator Loss: tf.Tensor(1.0390987, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.092244335, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 17621\n",
+ "Discriminator Loss: tf.Tensor(0.94537425, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.5786886, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 17622\n",
+ "Discriminator Loss: tf.Tensor(1.2142477, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.028715057, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 17623\n",
+ "Discriminator Loss: tf.Tensor(1.1051202, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.1329321, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 17624\n",
+ "Discriminator Loss: tf.Tensor(1.2936418, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.09375229, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 17625\n",
+ "Discriminator Loss: tf.Tensor(0.9796599, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.6335341, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 17626\n",
+ "Discriminator Loss: tf.Tensor(1.2930689, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.014794801, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 17627\n",
+ "Discriminator Loss: tf.Tensor(1.0068115, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.4669636, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 17628\n",
+ "Discriminator Loss: tf.Tensor(1.5738014, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.53454804, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 17629\n",
+ "Discriminator Loss: tf.Tensor(0.9990443, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.3467435, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 17630\n",
+ "Discriminator Loss: tf.Tensor(0.7800389, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.33944634, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 17631\n",
+ "Discriminator Loss: tf.Tensor(1.1303555, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.7088388, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 17632\n",
+ "Discriminator Loss: tf.Tensor(0.7517254, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.31645238, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 17633\n",
+ "Discriminator Loss: tf.Tensor(0.9824548, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.6077298, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 17634\n",
+ "Discriminator Loss: tf.Tensor(0.81442565, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.31048247, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 17635\n",
+ "Discriminator Loss: tf.Tensor(0.85849947, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.2885064, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 17636\n",
+ "Discriminator Loss: tf.Tensor(0.35007256, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.0901722, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 17637\n",
+ "Discriminator Loss: tf.Tensor(0.42850995, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.418745, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 17638\n",
+ "Discriminator Loss: tf.Tensor(1.0113662, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.26537144, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 17639\n",
+ "Discriminator Loss: tf.Tensor(1.8212141, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.5558116, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 17640\n",
+ "Discriminator Loss: tf.Tensor(1.271167, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.101995826, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 17641\n",
+ "Discriminator Loss: tf.Tensor(1.0845423, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.46928045, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 17642\n",
+ "Discriminator Loss: tf.Tensor(0.5969961, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.9955167, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 17643\n",
+ "Discriminator Loss: tf.Tensor(0.90960854, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.97922236, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 17644\n",
+ "Discriminator Loss: tf.Tensor(1.0103769, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.81219983, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 17645\n",
+ "Discriminator Loss: tf.Tensor(0.96402967, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.26370904, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 17646\n",
+ "Discriminator Loss: tf.Tensor(2.3350096, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.677102, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 17647\n",
+ "Discriminator Loss: tf.Tensor(1.2831992, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.31567106, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 17648\n",
+ "Discriminator Loss: tf.Tensor(1.0190194, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.53198904, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 17649\n",
+ "Discriminator Loss: tf.Tensor(0.7993181, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.9076063, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 17650\n",
+ "Discriminator Loss: tf.Tensor(1.0957508, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.5921359, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 17651\n",
+ "Discriminator Loss: tf.Tensor(1.368338, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.5314503, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 17652\n",
+ "Discriminator Loss: tf.Tensor(1.6191112, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.57316715, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 17653\n",
+ "Discriminator Loss: tf.Tensor(1.2569752, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.9564006, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 17654\n",
+ "Discriminator Loss: tf.Tensor(1.0352674, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.50804466, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 17655\n",
+ "Discriminator Loss: tf.Tensor(1.2714586, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.3166677, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 17656\n",
+ "Discriminator Loss: tf.Tensor(1.2972382, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.17057864, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 17657\n",
+ "Discriminator Loss: tf.Tensor(0.87769955, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.3915349, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 17658\n",
+ "Discriminator Loss: tf.Tensor(0.750652, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.60364383, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 17659\n",
+ "Discriminator Loss: tf.Tensor(1.022492, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.2037922, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 17660\n",
+ "Discriminator Loss: tf.Tensor(0.7337324, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.3160254, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 17661\n",
+ "Discriminator Loss: tf.Tensor(2.2729704, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.5121577, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 17662\n",
+ "Discriminator Loss: tf.Tensor(0.8515348, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.39117458, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 17663\n",
+ "Discriminator Loss: tf.Tensor(1.1741154, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.618198, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 17664\n",
+ "Discriminator Loss: tf.Tensor(1.0262352, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.86951256, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 17665\n",
+ "Discriminator Loss: tf.Tensor(0.61057454, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.78809136, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 17666\n",
+ "Discriminator Loss: tf.Tensor(0.95217526, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.6051097, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 17667\n",
+ "Discriminator Loss: tf.Tensor(1.6931509, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.66403615, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 17668\n",
+ "Discriminator Loss: tf.Tensor(0.9951066, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.9395797, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 17669\n",
+ "Discriminator Loss: tf.Tensor(0.73134106, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.6205798, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 17670\n",
+ "Discriminator Loss: tf.Tensor(1.5312656, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.0156665, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 17671\n",
+ "Discriminator Loss: tf.Tensor(1.2214643, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.12627083, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 17672\n",
+ "Discriminator Loss: tf.Tensor(1.142932, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.0222626, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 17673\n",
+ "Discriminator Loss: tf.Tensor(0.92598855, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.2923556, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 17674\n",
+ "Discriminator Loss: tf.Tensor(1.4553814, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.6607065, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 17675\n",
+ "Discriminator Loss: tf.Tensor(1.4291033, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.35147977, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 17676\n",
+ "Discriminator Loss: tf.Tensor(0.70984834, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.1930245, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 17677\n",
+ "Discriminator Loss: tf.Tensor(0.76711696, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.79262686, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 17678\n",
+ "Discriminator Loss: tf.Tensor(1.1049923, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.79383844, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 17679\n",
+ "Discriminator Loss: tf.Tensor(0.5087156, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.2307165, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 17680\n",
+ "Discriminator Loss: tf.Tensor(1.0493629, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.10027262, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 17681\n",
+ "Discriminator Loss: tf.Tensor(1.8411287, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.231776, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 17682\n",
+ "Discriminator Loss: tf.Tensor(1.0471927, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.073066734, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 17683\n",
+ "Discriminator Loss: tf.Tensor(1.10389, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.354662, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 17684\n",
+ "Discriminator Loss: tf.Tensor(0.8107027, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.26418456, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 17685\n",
+ "Discriminator Loss: tf.Tensor(0.6605438, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.3292118, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 17686\n",
+ "Discriminator Loss: tf.Tensor(0.9944923, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.09987996, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 17687\n",
+ "Discriminator Loss: tf.Tensor(1.1196266, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.8183284, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 17688\n",
+ "Discriminator Loss: tf.Tensor(1.8814194, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.74829865, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 17689\n",
+ "Discriminator Loss: tf.Tensor(1.3122985, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.6038347, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 17690\n",
+ "Discriminator Loss: tf.Tensor(0.7656167, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.2991604, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 17691\n",
+ "Discriminator Loss: tf.Tensor(1.5330458, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.46270338, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 17692\n",
+ "Discriminator Loss: tf.Tensor(0.8071281, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.2931294, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 17693\n",
+ "Discriminator Loss: tf.Tensor(1.0227352, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.020734387, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 17694\n",
+ "Discriminator Loss: tf.Tensor(0.8290312, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.3983594, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 17695\n",
+ "Discriminator Loss: tf.Tensor(0.7558099, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.39763752, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 17696\n",
+ "Discriminator Loss: tf.Tensor(1.1222377, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.2040943, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 17697\n",
+ "Discriminator Loss: tf.Tensor(1.3148942, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.104779124, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 17698\n",
+ "Discriminator Loss: tf.Tensor(0.94870675, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.767881, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 17699\n",
+ "Discriminator Loss: tf.Tensor(1.432813, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.396559, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 17700\n",
+ "Discriminator Loss: tf.Tensor(1.2213504, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.2013727, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 17701\n",
+ "Discriminator Loss: tf.Tensor(1.2264571, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.13621281, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 17702\n",
+ "Discriminator Loss: tf.Tensor(0.7968434, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.309106, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 17703\n",
+ "Discriminator Loss: tf.Tensor(0.88094455, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.2059797, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 17704\n",
+ "Discriminator Loss: tf.Tensor(1.0243524, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.8132008, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 17705\n",
+ "Discriminator Loss: tf.Tensor(1.0884033, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.033516914, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 17706\n",
+ "Discriminator Loss: tf.Tensor(0.9120424, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.5036014, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 17707\n",
+ "Discriminator Loss: tf.Tensor(0.951342, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.47841382, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 17708\n",
+ "Discriminator Loss: tf.Tensor(0.79440045, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.3872358, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 17709\n",
+ "Discriminator Loss: tf.Tensor(1.080807, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.0071449354, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 17710\n",
+ "Discriminator Loss: tf.Tensor(0.7935723, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.2462877, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 17711\n",
+ "Discriminator Loss: tf.Tensor(1.0948704, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.049755197, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 17712\n",
+ "Discriminator Loss: tf.Tensor(1.0719306, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.242643, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 17713\n",
+ "Discriminator Loss: tf.Tensor(0.9143047, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.29858965, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 17714\n",
+ "Discriminator Loss: tf.Tensor(1.2299951, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.7685493, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 17715\n",
+ "Discriminator Loss: tf.Tensor(1.3428231, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.294, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 17716\n",
+ "Discriminator Loss: tf.Tensor(0.796757, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.1273521, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 17717\n",
+ "Discriminator Loss: tf.Tensor(0.46360564, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.6527983, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 17718\n",
+ "Discriminator Loss: tf.Tensor(1.4186689, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.3474605, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 17719\n",
+ "Discriminator Loss: tf.Tensor(1.0836796, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.3661643, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 17720\n",
+ "Discriminator Loss: tf.Tensor(0.6026001, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.8191373, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 17721\n",
+ "Discriminator Loss: tf.Tensor(1.2579293, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.9709387, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 17722\n",
+ "Discriminator Loss: tf.Tensor(1.3732362, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.1424486, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 17723\n",
+ "Discriminator Loss: tf.Tensor(0.86944926, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.4340197, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 17724\n",
+ "Discriminator Loss: tf.Tensor(1.5579094, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.35735473, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 17725\n",
+ "Discriminator Loss: tf.Tensor(0.5626517, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.396944, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 17726\n",
+ "Discriminator Loss: tf.Tensor(1.0380762, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.27983296, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 17727\n",
+ "Discriminator Loss: tf.Tensor(0.6274443, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.0876415, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 17728\n",
+ "Discriminator Loss: tf.Tensor(0.76254016, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.0686094, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 17729\n",
+ "Discriminator Loss: tf.Tensor(0.92570555, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.53062457, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 17730\n",
+ "Discriminator Loss: tf.Tensor(0.9236394, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.9078075, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 17731\n",
+ "Discriminator Loss: tf.Tensor(1.4369297, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.39602306, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 17732\n",
+ "Discriminator Loss: tf.Tensor(1.1540482, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.4849987, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 17733\n",
+ "Discriminator Loss: tf.Tensor(0.9983717, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.17058681, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 17734\n",
+ "Discriminator Loss: tf.Tensor(0.65204525, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.1327457, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 17735\n",
+ "Discriminator Loss: tf.Tensor(0.8520057, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.27140096, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 17736\n",
+ "Discriminator Loss: tf.Tensor(0.66099334, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.4535593, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 17737\n",
+ "Discriminator Loss: tf.Tensor(0.80497855, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.35203075, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 17738\n",
+ "Discriminator Loss: tf.Tensor(1.1680399, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.6759247, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 17739\n",
+ "Discriminator Loss: tf.Tensor(0.8605968, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.42735982, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 17740\n",
+ "Discriminator Loss: tf.Tensor(0.8334675, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.1207525, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 17741\n",
+ "Discriminator Loss: tf.Tensor(0.6563295, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.58694327, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 17742\n",
+ "Discriminator Loss: tf.Tensor(1.1928003, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.4969602, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 17743\n",
+ "Discriminator Loss: tf.Tensor(0.9928489, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.06360477, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 17744\n",
+ "Discriminator Loss: tf.Tensor(1.2571775, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.1752132, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 17745\n",
+ "Discriminator Loss: tf.Tensor(0.6497867, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.44841197, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 17746\n",
+ "Discriminator Loss: tf.Tensor(1.0781565, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.6611563, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 17747\n",
+ "Discriminator Loss: tf.Tensor(1.1266733, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.077385284, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 17748\n",
+ "Discriminator Loss: tf.Tensor(0.7534158, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.242508, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 17749\n",
+ "Discriminator Loss: tf.Tensor(0.5416691, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.7031887, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 17750\n",
+ "Discriminator Loss: tf.Tensor(1.1817768, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.7175242, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 17751\n",
+ "Discriminator Loss: tf.Tensor(1.0458894, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.03852339, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 17752\n",
+ "Discriminator Loss: tf.Tensor(0.8561308, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.1388212, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 17753\n",
+ "Discriminator Loss: tf.Tensor(1.1305652, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.24874544, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 17754\n",
+ "Discriminator Loss: tf.Tensor(0.88859093, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.4023371, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 17755\n",
+ "Discriminator Loss: tf.Tensor(1.6455714, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.5693168, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 17756\n",
+ "Discriminator Loss: tf.Tensor(0.9829136, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.0058929, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 17757\n",
+ "Discriminator Loss: tf.Tensor(0.7542282, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.6761384, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 17758\n",
+ "Discriminator Loss: tf.Tensor(0.8562061, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.2433093, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 17759\n",
+ "Discriminator Loss: tf.Tensor(1.3178159, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.27756572, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 17760\n",
+ "Discriminator Loss: tf.Tensor(0.96214145, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.5006834, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 17761\n",
+ "Discriminator Loss: tf.Tensor(0.7470825, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.36319402, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 17762\n",
+ "Discriminator Loss: tf.Tensor(1.1028591, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.8184018, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 17763\n",
+ "Discriminator Loss: tf.Tensor(1.1236408, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.7507372, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 17764\n",
+ "Discriminator Loss: tf.Tensor(1.2132614, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.19242363, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 17765\n",
+ "Discriminator Loss: tf.Tensor(0.92121774, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.4936565, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 17766\n",
+ "Discriminator Loss: tf.Tensor(1.0111272, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.054117996, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 17767\n",
+ "Discriminator Loss: tf.Tensor(0.7532151, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.4447323, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 17768\n",
+ "Discriminator Loss: tf.Tensor(1.0944123, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.005061885, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 17769\n",
+ "Discriminator Loss: tf.Tensor(0.66213757, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.3586708, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 17770\n",
+ "Discriminator Loss: tf.Tensor(0.9147249, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.2334379, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 17771\n",
+ "Discriminator Loss: tf.Tensor(1.1807156, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.4022808, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 17772\n",
+ "Discriminator Loss: tf.Tensor(0.85755616, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.33380744, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 17773\n",
+ "Discriminator Loss: tf.Tensor(1.0718222, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.218855, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 17774\n",
+ "Discriminator Loss: tf.Tensor(0.55545974, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.47815433, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 17775\n",
+ "Discriminator Loss: tf.Tensor(0.95179725, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.3245018, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 17776\n",
+ "Discriminator Loss: tf.Tensor(1.1387694, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.059297428, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 17777\n",
+ "Discriminator Loss: tf.Tensor(0.86687785, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.2158839, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 17778\n",
+ "Discriminator Loss: tf.Tensor(1.365705, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.1819591, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 17779\n",
+ "Discriminator Loss: tf.Tensor(0.64308536, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.5850921, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 17780\n",
+ "Discriminator Loss: tf.Tensor(1.072191, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.021496942, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 17781\n",
+ "Discriminator Loss: tf.Tensor(1.1799853, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.682563, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 17782\n",
+ "Discriminator Loss: tf.Tensor(1.0617533, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.016907683, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 17783\n",
+ "Discriminator Loss: tf.Tensor(0.7944597, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.4417028, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 17784\n",
+ "Discriminator Loss: tf.Tensor(0.7198634, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.506517, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 17785\n",
+ "Discriminator Loss: tf.Tensor(1.0949199, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.7478167, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 17786\n",
+ "Discriminator Loss: tf.Tensor(0.92188525, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.24554344, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 17787\n",
+ "Discriminator Loss: tf.Tensor(1.092988, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.4211036, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 17788\n",
+ "Discriminator Loss: tf.Tensor(1.4234742, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.3702065, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 17789\n",
+ "Discriminator Loss: tf.Tensor(0.7135566, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.5055033, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 17790\n",
+ "Discriminator Loss: tf.Tensor(0.93700796, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.16680284, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 17791\n",
+ "Discriminator Loss: tf.Tensor(0.995865, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.7345881, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 17792\n",
+ "Discriminator Loss: tf.Tensor(0.82329077, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.25534296, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 17793\n",
+ "Discriminator Loss: tf.Tensor(1.1674076, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.4367822, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 17794\n",
+ "Discriminator Loss: tf.Tensor(1.0114226, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.06402708, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 17795\n",
+ "Discriminator Loss: tf.Tensor(0.9794351, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.1074122, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 17796\n",
+ "Discriminator Loss: tf.Tensor(0.53981036, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.59280443, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 17797\n",
+ "Discriminator Loss: tf.Tensor(1.4029566, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.9725814, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 17798\n",
+ "Discriminator Loss: tf.Tensor(0.7047452, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.33733872, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 17799\n",
+ "Discriminator Loss: tf.Tensor(0.6472204, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.4289969, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 17800\n",
+ "Discriminator Loss: tf.Tensor(0.60519063, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.5067938, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 17801\n",
+ "Discriminator Loss: tf.Tensor(0.8985647, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.4589086, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 17802\n",
+ "Discriminator Loss: tf.Tensor(1.1561346, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.28196478, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 17803\n",
+ "Discriminator Loss: tf.Tensor(0.7947777, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.3348011, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 17804\n",
+ "Discriminator Loss: tf.Tensor(0.727868, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.52946573, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 17805\n",
+ "Discriminator Loss: tf.Tensor(1.1606172, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.8175043, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 17806\n",
+ "Discriminator Loss: tf.Tensor(1.1619, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.14787507, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 17807\n",
+ "Discriminator Loss: tf.Tensor(0.44998613, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.84095407, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 17808\n",
+ "Discriminator Loss: tf.Tensor(0.9263126, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.5978498, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 17809\n",
+ "Discriminator Loss: tf.Tensor(1.3649907, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.33479628, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 17810\n",
+ "Discriminator Loss: tf.Tensor(0.96978056, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.2423154, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 17811\n",
+ "Discriminator Loss: tf.Tensor(0.92834955, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.15509479, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 17812\n",
+ "Discriminator Loss: tf.Tensor(1.0935204, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.6522812, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 17813\n",
+ "Discriminator Loss: tf.Tensor(0.98056287, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.08979467, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 17814\n",
+ "Discriminator Loss: tf.Tensor(0.33072507, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.5705109, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 17815\n",
+ "Discriminator Loss: tf.Tensor(0.66481346, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.6865184, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 17816\n",
+ "Discriminator Loss: tf.Tensor(1.3081082, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.8287686, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 17817\n",
+ "Discriminator Loss: tf.Tensor(1.0817257, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.04899202, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 17818\n",
+ "Discriminator Loss: tf.Tensor(0.53229886, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.2041538, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 17819\n",
+ "Discriminator Loss: tf.Tensor(0.5709001, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.0581971, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 17820\n",
+ "Discriminator Loss: tf.Tensor(0.6776447, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.0124148, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 17821\n",
+ "Discriminator Loss: tf.Tensor(0.61573076, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.8390446, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 17822\n",
+ "Discriminator Loss: tf.Tensor(0.37658203, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.1728116, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 17823\n",
+ "Discriminator Loss: tf.Tensor(0.96005404, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.4417971, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 17824\n",
+ "Discriminator Loss: tf.Tensor(0.47212616, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.8385914, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 17825\n",
+ "Discriminator Loss: tf.Tensor(2.2385814, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.9023912, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 17826\n",
+ "Discriminator Loss: tf.Tensor(0.8279386, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.5028074, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 17827\n",
+ "Discriminator Loss: tf.Tensor(0.88783765, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.0845116, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 17828\n",
+ "Discriminator Loss: tf.Tensor(0.7550819, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.86004907, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 17829\n",
+ "Discriminator Loss: tf.Tensor(0.8938347, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.3764862, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 17830\n",
+ "Discriminator Loss: tf.Tensor(1.7671267, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.6003669, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 17831\n",
+ "Discriminator Loss: tf.Tensor(0.7839718, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.0863172, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 17832\n",
+ "Discriminator Loss: tf.Tensor(0.877771, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.7950049, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 17833\n",
+ "Discriminator Loss: tf.Tensor(0.70971346, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.4174194, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 17834\n",
+ "Discriminator Loss: tf.Tensor(1.3156244, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.18960245, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 17835\n",
+ "Discriminator Loss: tf.Tensor(0.6675565, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.6980639, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 17836\n",
+ "Discriminator Loss: tf.Tensor(0.68980455, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.55424184, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 17837\n",
+ "Discriminator Loss: tf.Tensor(0.75072503, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.5437056, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 17838\n",
+ "Discriminator Loss: tf.Tensor(1.1009998, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.12235262, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 17839\n",
+ "Discriminator Loss: tf.Tensor(1.1693126, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.5032191, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 17840\n",
+ "Discriminator Loss: tf.Tensor(0.42758775, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.73238486, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 17841\n",
+ "Discriminator Loss: tf.Tensor(1.5071633, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.4653795, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 17842\n",
+ "Discriminator Loss: tf.Tensor(0.94901437, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.18084829, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 17843\n",
+ "Discriminator Loss: tf.Tensor(1.0089388, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.7060779, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 17844\n",
+ "Discriminator Loss: tf.Tensor(1.3260278, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.24491479, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 17845\n",
+ "Discriminator Loss: tf.Tensor(0.52881134, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.1191542, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 17846\n",
+ "Discriminator Loss: tf.Tensor(0.9438681, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.52987355, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 17847\n",
+ "Discriminator Loss: tf.Tensor(1.0362985, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.6657672, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 17848\n",
+ "Discriminator Loss: tf.Tensor(1.0039237, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.16508651, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 17849\n",
+ "Discriminator Loss: tf.Tensor(0.69290143, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.6846491, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 17850\n",
+ "Discriminator Loss: tf.Tensor(0.81422985, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.50684935, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 17851\n",
+ "Discriminator Loss: tf.Tensor(0.90424496, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.587451, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 17852\n",
+ "Discriminator Loss: tf.Tensor(1.0981839, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.018815055, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 17853\n",
+ "Discriminator Loss: tf.Tensor(1.0875299, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.5797993, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 17854\n",
+ "Discriminator Loss: tf.Tensor(1.3279941, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.30363256, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 17855\n",
+ "Discriminator Loss: tf.Tensor(0.7316735, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.1763524, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 17856\n",
+ "Discriminator Loss: tf.Tensor(0.7992075, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.57862693, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 17857\n",
+ "Discriminator Loss: tf.Tensor(0.94708496, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.1353161, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 17858\n",
+ "Discriminator Loss: tf.Tensor(0.904711, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.13977312, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 17859\n",
+ "Discriminator Loss: tf.Tensor(1.3891741, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.7180647, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 17860\n",
+ "Discriminator Loss: tf.Tensor(0.8632301, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.2771357, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 17861\n",
+ "Discriminator Loss: tf.Tensor(1.4663073, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.697371, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 17862\n",
+ "Discriminator Loss: tf.Tensor(0.69740707, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.39477852, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 17863\n",
+ "Discriminator Loss: tf.Tensor(0.8271891, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.4609298, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 17864\n",
+ "Discriminator Loss: tf.Tensor(1.0399641, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.04701976, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 17865\n",
+ "Discriminator Loss: tf.Tensor(0.76310825, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.5932994, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 17866\n",
+ "Discriminator Loss: tf.Tensor(0.96343344, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.55623025, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 17867\n",
+ "Discriminator Loss: tf.Tensor(0.407989, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.5177855, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 17868\n",
+ "Discriminator Loss: tf.Tensor(0.5449074, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.8612967, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 17869\n",
+ "Discriminator Loss: tf.Tensor(0.646469, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.0211651, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 17870\n",
+ "Discriminator Loss: tf.Tensor(0.6543421, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.64763546, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 17871\n",
+ "Discriminator Loss: tf.Tensor(0.88176084, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.0709807, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 17872\n",
+ "Discriminator Loss: tf.Tensor(1.1598599, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.46984038, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 17873\n",
+ "Discriminator Loss: tf.Tensor(1.6119908, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.0748606, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 17874\n",
+ "Discriminator Loss: tf.Tensor(1.109385, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.06977777, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 17875\n",
+ "Discriminator Loss: tf.Tensor(1.0693556, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.1316867, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 17876\n",
+ "Discriminator Loss: tf.Tensor(0.9657744, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.13580154, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 17877\n",
+ "Discriminator Loss: tf.Tensor(1.2165077, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.93692845, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 17878\n",
+ "Discriminator Loss: tf.Tensor(0.9609706, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.4843788, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 17879\n",
+ "Discriminator Loss: tf.Tensor(1.5426806, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.5389053, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 17880\n",
+ "Discriminator Loss: tf.Tensor(1.3599284, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.30098182, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 17881\n",
+ "Discriminator Loss: tf.Tensor(1.4741279, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.76367444, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 17882\n",
+ "Discriminator Loss: tf.Tensor(0.800186, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.7895489, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 17883\n",
+ "Discriminator Loss: tf.Tensor(1.1090639, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.2995292, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 17884\n",
+ "Discriminator Loss: tf.Tensor(0.91262376, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.321767, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 17885\n",
+ "Discriminator Loss: tf.Tensor(1.2789354, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.4961075, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 17886\n",
+ "Discriminator Loss: tf.Tensor(1.2558, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.23013318, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 17887\n",
+ "Discriminator Loss: tf.Tensor(1.2911093, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.0662596, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 17888\n",
+ "Discriminator Loss: tf.Tensor(0.95702887, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.27397433, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 17889\n",
+ "Discriminator Loss: tf.Tensor(1.0816854, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.7227373, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 17890\n",
+ "Discriminator Loss: tf.Tensor(1.2532197, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.17074668, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 17891\n",
+ "Discriminator Loss: tf.Tensor(1.1250536, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.0591642, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 17892\n",
+ "Discriminator Loss: tf.Tensor(1.2975111, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.017948022, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 17893\n",
+ "Discriminator Loss: tf.Tensor(0.73609227, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.7713747, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 17894\n",
+ "Discriminator Loss: tf.Tensor(1.3741659, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.6532269, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 17895\n",
+ "Discriminator Loss: tf.Tensor(1.2032958, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.08411091, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 17896\n",
+ "Discriminator Loss: tf.Tensor(1.2972744, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.85181636, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 17897\n",
+ "Discriminator Loss: tf.Tensor(0.7218755, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.51433223, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 17898\n",
+ "Discriminator Loss: tf.Tensor(1.3201364, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.7168455, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 17899\n",
+ "Discriminator Loss: tf.Tensor(1.5253544, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.47640526, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 17900\n",
+ "Discriminator Loss: tf.Tensor(1.2077303, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.1750926, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 17901\n",
+ "Discriminator Loss: tf.Tensor(0.9488095, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.13881761, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 17902\n",
+ "Discriminator Loss: tf.Tensor(1.1721686, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.1992556, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 17903\n",
+ "Discriminator Loss: tf.Tensor(0.73359835, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.6706087, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 17904\n",
+ "Discriminator Loss: tf.Tensor(0.84543973, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.5458413, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 17905\n",
+ "Discriminator Loss: tf.Tensor(1.3389788, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.0975664, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 17906\n",
+ "Discriminator Loss: tf.Tensor(1.010404, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.037601776, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 17907\n",
+ "Discriminator Loss: tf.Tensor(0.6091701, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.4264975, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 17908\n",
+ "Discriminator Loss: tf.Tensor(0.90441185, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.27068743, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 17909\n",
+ "Discriminator Loss: tf.Tensor(0.9851037, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.5752935, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 17910\n",
+ "Discriminator Loss: tf.Tensor(0.8202391, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.41961718, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 17911\n",
+ "Discriminator Loss: tf.Tensor(0.91839576, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.4488925, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 17912\n",
+ "Discriminator Loss: tf.Tensor(0.7349636, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.5542329, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 17913\n",
+ "Discriminator Loss: tf.Tensor(0.9753142, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.9890014, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 17914\n",
+ "Discriminator Loss: tf.Tensor(0.8904275, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.31079665, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 17915\n",
+ "Discriminator Loss: tf.Tensor(1.131376, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.3489023, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 17916\n",
+ "Discriminator Loss: tf.Tensor(0.97024906, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.28163657, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 17917\n",
+ "Discriminator Loss: tf.Tensor(1.0733562, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.1326128, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 17918\n",
+ "Discriminator Loss: tf.Tensor(0.87936354, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.43474814, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 17919\n",
+ "Discriminator Loss: tf.Tensor(1.6107364, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.4590298, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 17920\n",
+ "Discriminator Loss: tf.Tensor(1.347274, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.1219059, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 17921\n",
+ "Discriminator Loss: tf.Tensor(0.7657194, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.2413322, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 17922\n",
+ "Discriminator Loss: tf.Tensor(0.65552455, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.6315349, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 17923\n",
+ "Discriminator Loss: tf.Tensor(0.8656645, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.5311922, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 17924\n",
+ "Discriminator Loss: tf.Tensor(1.0158459, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.3982767, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 17925\n",
+ "Discriminator Loss: tf.Tensor(1.2236142, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.041303, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 17926\n",
+ "Discriminator Loss: tf.Tensor(0.86009896, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.46179202, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 17927\n",
+ "Discriminator Loss: tf.Tensor(1.4629395, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.5880632, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 17928\n",
+ "Discriminator Loss: tf.Tensor(1.181195, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.14891729, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 17929\n",
+ "Discriminator Loss: tf.Tensor(0.42395806, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.1657778, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 17930\n",
+ "Discriminator Loss: tf.Tensor(0.9226721, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.3730863, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 17931\n",
+ "Discriminator Loss: tf.Tensor(1.6210155, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.6602138, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 17932\n",
+ "Discriminator Loss: tf.Tensor(1.5314057, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.38220835, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 17933\n",
+ "Discriminator Loss: tf.Tensor(0.95359457, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.66892654, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 17934\n",
+ "Discriminator Loss: tf.Tensor(0.7728567, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.1888406, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 17935\n",
+ "Discriminator Loss: tf.Tensor(0.7387957, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.32428214, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 17936\n",
+ "Discriminator Loss: tf.Tensor(1.9402723, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.7301488, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 17937\n",
+ "Discriminator Loss: tf.Tensor(1.1724157, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.01049457, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 17938\n",
+ "Discriminator Loss: tf.Tensor(0.91896987, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.0131763, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 17939\n",
+ "Discriminator Loss: tf.Tensor(0.98855615, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.26211473, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 17940\n",
+ "Discriminator Loss: tf.Tensor(1.1604257, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.6583492, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 17941\n",
+ "Discriminator Loss: tf.Tensor(1.2196888, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.08456454, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 17942\n",
+ "Discriminator Loss: tf.Tensor(0.7273427, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.1434741, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 17943\n",
+ "Discriminator Loss: tf.Tensor(0.81985235, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.33475056, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 17944\n",
+ "Discriminator Loss: tf.Tensor(0.9519355, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.3929144, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 17945\n",
+ "Discriminator Loss: tf.Tensor(1.0304766, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.115385495, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 17946\n",
+ "Discriminator Loss: tf.Tensor(1.167148, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.2165003, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 17947\n",
+ "Discriminator Loss: tf.Tensor(1.0187212, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.477883, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 17948\n",
+ "Discriminator Loss: tf.Tensor(0.65353, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.1275779, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 17949\n",
+ "Discriminator Loss: tf.Tensor(0.9374333, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.16358157, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 17950\n",
+ "Discriminator Loss: tf.Tensor(1.345537, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.8775653, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 17951\n",
+ "Discriminator Loss: tf.Tensor(0.79746604, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.5530613, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 17952\n",
+ "Discriminator Loss: tf.Tensor(0.70909286, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.79955834, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 17953\n",
+ "Discriminator Loss: tf.Tensor(1.4727421, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.0048883, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 17954\n",
+ "Discriminator Loss: tf.Tensor(1.7298259, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.6185424, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 17955\n",
+ "Discriminator Loss: tf.Tensor(0.7263737, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.2966658, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 17956\n",
+ "Discriminator Loss: tf.Tensor(1.1422141, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.30335844, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 17957\n",
+ "Discriminator Loss: tf.Tensor(0.5384624, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.1858835, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 17958\n",
+ "Discriminator Loss: tf.Tensor(1.0006552, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.25174066, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 17959\n",
+ "Discriminator Loss: tf.Tensor(0.7167313, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.7023158, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 17960\n",
+ "Discriminator Loss: tf.Tensor(1.2345785, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.112446696, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 17961\n",
+ "Discriminator Loss: tf.Tensor(0.5436794, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.1920419, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 17962\n",
+ "Discriminator Loss: tf.Tensor(0.6370188, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.9615243, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 17963\n",
+ "Discriminator Loss: tf.Tensor(1.1246244, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.287156, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 17964\n",
+ "Discriminator Loss: tf.Tensor(1.5982724, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.243557, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 17965\n",
+ "Discriminator Loss: tf.Tensor(1.0697802, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.08665467, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 17966\n",
+ "Discriminator Loss: tf.Tensor(0.7460445, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.6618093, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 17967\n",
+ "Discriminator Loss: tf.Tensor(1.7129192, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.18909077, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 17968\n",
+ "Discriminator Loss: tf.Tensor(1.4282767, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.63542384, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 17969\n",
+ "Discriminator Loss: tf.Tensor(1.0457766, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.69817877, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 17970\n",
+ "Discriminator Loss: tf.Tensor(0.73072064, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.85136366, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 17971\n",
+ "Discriminator Loss: tf.Tensor(0.8880917, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.6465704, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 17972\n",
+ "Discriminator Loss: tf.Tensor(0.91296375, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.5644512, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 17973\n",
+ "Discriminator Loss: tf.Tensor(1.6664742, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.5786143, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 17974\n",
+ "Discriminator Loss: tf.Tensor(1.5542331, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.0898007, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 17975\n",
+ "Discriminator Loss: tf.Tensor(1.0489097, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.3486167, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 17976\n",
+ "Discriminator Loss: tf.Tensor(0.7817911, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.3151393, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 17977\n",
+ "Discriminator Loss: tf.Tensor(0.6367901, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.5321973, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 17978\n",
+ "Discriminator Loss: tf.Tensor(1.3232579, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.6749371, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 17979\n",
+ "Discriminator Loss: tf.Tensor(1.0680846, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.015509412, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 17980\n",
+ "Discriminator Loss: tf.Tensor(1.1359068, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.077041, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 17981\n",
+ "Discriminator Loss: tf.Tensor(0.83599174, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.29334784, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 17982\n",
+ "Discriminator Loss: tf.Tensor(1.3548476, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.7817138, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 17983\n",
+ "Discriminator Loss: tf.Tensor(0.97249967, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.114557646, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 17984\n",
+ "Discriminator Loss: tf.Tensor(1.079969, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.1925206, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 17985\n",
+ "Discriminator Loss: tf.Tensor(1.0367185, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.16631497, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 17986\n",
+ "Discriminator Loss: tf.Tensor(0.53689426, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.8950529, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 17987\n",
+ "Discriminator Loss: tf.Tensor(1.5728686, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.4273003, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 17988\n",
+ "Discriminator Loss: tf.Tensor(0.8731526, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.55325276, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 17989\n",
+ "Discriminator Loss: tf.Tensor(0.80192566, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.5652295, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 17990\n",
+ "Discriminator Loss: tf.Tensor(0.9109178, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.13828206, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 17991\n",
+ "Discriminator Loss: tf.Tensor(1.1146028, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.818915, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 17992\n",
+ "Discriminator Loss: tf.Tensor(1.1997422, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.10547956, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 17993\n",
+ "Discriminator Loss: tf.Tensor(0.87273884, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.2496995, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 17994\n",
+ "Discriminator Loss: tf.Tensor(1.0177329, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.34627423, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 17995\n",
+ "Discriminator Loss: tf.Tensor(0.8982233, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.0016425, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 17996\n",
+ "Discriminator Loss: tf.Tensor(0.6257442, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.0890981, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 17997\n",
+ "Discriminator Loss: tf.Tensor(0.80547106, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.48191428, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 17998\n",
+ "Discriminator Loss: tf.Tensor(1.0253845, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.8973097, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 17999\n",
+ "Discriminator Loss: tf.Tensor(1.7136371, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.59502095, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 18000\n",
+ "Discriminator Loss: tf.Tensor(0.9628306, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.9937587, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 18001\n",
+ "Discriminator Loss: tf.Tensor(0.74622583, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.72557384, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 18002\n",
+ "Discriminator Loss: tf.Tensor(0.93943906, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.3473839, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 18003\n",
+ "Discriminator Loss: tf.Tensor(1.4464064, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.3624405, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 18004\n",
+ "Discriminator Loss: tf.Tensor(0.9265659, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.6248024, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 18005\n",
+ "Discriminator Loss: tf.Tensor(0.79365534, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.1052493, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 18006\n",
+ "Discriminator Loss: tf.Tensor(1.1810939, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.14851905, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 18007\n",
+ "Discriminator Loss: tf.Tensor(1.0594555, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.7740875, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 18008\n",
+ "Discriminator Loss: tf.Tensor(1.6057198, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.42381057, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 18009\n",
+ "Discriminator Loss: tf.Tensor(0.9789084, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.2106498, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 18010\n",
+ "Discriminator Loss: tf.Tensor(0.9375083, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.23837638, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 18011\n",
+ "Discriminator Loss: tf.Tensor(0.70640624, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.3482641, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 18012\n",
+ "Discriminator Loss: tf.Tensor(0.89704, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.21243282, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 18013\n",
+ "Discriminator Loss: tf.Tensor(1.6750919, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.1850743, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 18014\n",
+ "Discriminator Loss: tf.Tensor(1.1723522, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.1396994, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 18015\n",
+ "Discriminator Loss: tf.Tensor(1.0605191, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.3280836, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 18016\n",
+ "Discriminator Loss: tf.Tensor(1.2845191, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.22048418, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 18017\n",
+ "Discriminator Loss: tf.Tensor(0.96205074, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.76189154, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 18018\n",
+ "Discriminator Loss: tf.Tensor(1.1914594, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.6941904, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 18019\n",
+ "Discriminator Loss: tf.Tensor(1.5316808, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.48070446, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 18020\n",
+ "Discriminator Loss: tf.Tensor(0.7651919, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.1253306, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 18021\n",
+ "Discriminator Loss: tf.Tensor(1.3089747, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.089572705, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 18022\n",
+ "Discriminator Loss: tf.Tensor(0.6134648, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.0492561, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 18023\n",
+ "Discriminator Loss: tf.Tensor(0.61153126, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.7056141, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 18024\n",
+ "Discriminator Loss: tf.Tensor(1.0652385, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.7855757, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 18025\n",
+ "Discriminator Loss: tf.Tensor(1.6457521, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.52720654, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 18026\n",
+ "Discriminator Loss: tf.Tensor(1.0455805, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.0287641, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 18027\n",
+ "Discriminator Loss: tf.Tensor(0.474865, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.72146815, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 18028\n",
+ "Discriminator Loss: tf.Tensor(1.1354127, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.7919573, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 18029\n",
+ "Discriminator Loss: tf.Tensor(0.7034582, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.49667606, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 18030\n",
+ "Discriminator Loss: tf.Tensor(1.0048916, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.8334564, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 18031\n",
+ "Discriminator Loss: tf.Tensor(1.3522359, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.06401861, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 18032\n",
+ "Discriminator Loss: tf.Tensor(1.0032346, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.6141672, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 18033\n",
+ "Discriminator Loss: tf.Tensor(1.1561644, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.08536189, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 18034\n",
+ "Discriminator Loss: tf.Tensor(0.7800318, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.7426246, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 18035\n",
+ "Discriminator Loss: tf.Tensor(1.3305589, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.1237793, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 18036\n",
+ "Discriminator Loss: tf.Tensor(1.2697815, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.8882143, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 18037\n",
+ "Discriminator Loss: tf.Tensor(0.78721964, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.8991905, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 18038\n",
+ "Discriminator Loss: tf.Tensor(1.1324939, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.5026859, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 18039\n",
+ "Discriminator Loss: tf.Tensor(1.3988345, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.34147978, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 18040\n",
+ "Discriminator Loss: tf.Tensor(0.85224724, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.0222431, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 18041\n",
+ "Discriminator Loss: tf.Tensor(0.6126491, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.2500191, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 18042\n",
+ "Discriminator Loss: tf.Tensor(1.2387617, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.1123482, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 18043\n",
+ "Discriminator Loss: tf.Tensor(1.2636094, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.9772397, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 18044\n",
+ "Discriminator Loss: tf.Tensor(0.8697916, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.4532, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 18045\n",
+ "Discriminator Loss: tf.Tensor(1.0319432, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.3124167, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 18046\n",
+ "Discriminator Loss: tf.Tensor(0.9011464, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.26718202, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 18047\n",
+ "Discriminator Loss: tf.Tensor(1.5426174, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.403128, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 18048\n",
+ "Discriminator Loss: tf.Tensor(1.524892, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.45471457, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 18049\n",
+ "Discriminator Loss: tf.Tensor(1.2965164, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.8876117, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 18050\n",
+ "Discriminator Loss: tf.Tensor(0.96162665, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.0597872, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 18051\n",
+ "Discriminator Loss: tf.Tensor(0.78824365, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.40689662, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 18052\n",
+ "Discriminator Loss: tf.Tensor(0.85788715, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.5086712, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 18053\n",
+ "Discriminator Loss: tf.Tensor(1.0039403, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.031775963, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 18054\n",
+ "Discriminator Loss: tf.Tensor(0.98059464, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.6366316, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 18055\n",
+ "Discriminator Loss: tf.Tensor(0.85455763, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.17875199, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 18056\n",
+ "Discriminator Loss: tf.Tensor(0.8667152, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.4572128, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 18057\n",
+ "Discriminator Loss: tf.Tensor(0.9355547, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.29621717, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 18058\n",
+ "Discriminator Loss: tf.Tensor(0.96181214, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.2833103, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 18059\n",
+ "Discriminator Loss: tf.Tensor(1.51778, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.00070512545, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 18060\n",
+ "Discriminator Loss: tf.Tensor(0.8338128, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.250606, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 18061\n",
+ "Discriminator Loss: tf.Tensor(1.3212249, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.2756131, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 18062\n",
+ "Discriminator Loss: tf.Tensor(1.0888087, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.4102497, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 18063\n",
+ "Discriminator Loss: tf.Tensor(1.1429662, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.08199975, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 18064\n",
+ "Discriminator Loss: tf.Tensor(1.1073796, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.7562642, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 18065\n",
+ "Discriminator Loss: tf.Tensor(0.91481173, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.3879814, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 18066\n",
+ "Discriminator Loss: tf.Tensor(0.89312327, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.29095098, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 18067\n",
+ "Discriminator Loss: tf.Tensor(0.9823321, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.3541297, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 18068\n",
+ "Discriminator Loss: tf.Tensor(1.3780206, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.34522578, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 18069\n",
+ "Discriminator Loss: tf.Tensor(1.2684929, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.6759707, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 18070\n",
+ "Discriminator Loss: tf.Tensor(1.2785343, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.18057257, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 18071\n",
+ "Discriminator Loss: tf.Tensor(0.8996625, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.2545973, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 18072\n",
+ "Discriminator Loss: tf.Tensor(1.312184, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.11986259, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 18073\n",
+ "Discriminator Loss: tf.Tensor(0.60827667, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.0400344, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 18074\n",
+ "Discriminator Loss: tf.Tensor(0.3782755, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.0510345, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 18075\n",
+ "Discriminator Loss: tf.Tensor(1.0450168, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.1045805, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 18076\n",
+ "Discriminator Loss: tf.Tensor(1.0197656, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.3233651, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 18077\n",
+ "Discriminator Loss: tf.Tensor(0.95664287, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.6658663, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 18078\n",
+ "Discriminator Loss: tf.Tensor(1.237143, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.397235, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 18079\n",
+ "Discriminator Loss: tf.Tensor(1.2949933, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.25560245, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 18080\n",
+ "Discriminator Loss: tf.Tensor(0.88591, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.0412401, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 18081\n",
+ "Discriminator Loss: tf.Tensor(0.7798962, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.6050953, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 18082\n",
+ "Discriminator Loss: tf.Tensor(0.96378, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.868229, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 18083\n",
+ "Discriminator Loss: tf.Tensor(1.1523263, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.037109062, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 18084\n",
+ "Discriminator Loss: tf.Tensor(0.87435734, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.2490562, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 18085\n",
+ "Discriminator Loss: tf.Tensor(0.86065805, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.17940652, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 18086\n",
+ "Discriminator Loss: tf.Tensor(1.1978588, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.4562572, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 18087\n",
+ "Discriminator Loss: tf.Tensor(1.3642808, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.21095741, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 18088\n",
+ "Discriminator Loss: tf.Tensor(1.140727, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.7681207, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 18089\n",
+ "Discriminator Loss: tf.Tensor(0.88005745, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.1947039, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 18090\n",
+ "Discriminator Loss: tf.Tensor(0.91542184, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.15538499, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 18091\n",
+ "Discriminator Loss: tf.Tensor(1.1529438, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.6485265, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 18092\n",
+ "Discriminator Loss: tf.Tensor(1.5198047, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.41352165, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 18093\n",
+ "Discriminator Loss: tf.Tensor(0.7927878, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.2412331, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 18094\n",
+ "Discriminator Loss: tf.Tensor(1.3305609, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.20041817, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 18095\n",
+ "Discriminator Loss: tf.Tensor(0.81798434, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.5424143, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 18096\n",
+ "Discriminator Loss: tf.Tensor(1.0863532, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.036032174, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 18097\n",
+ "Discriminator Loss: tf.Tensor(0.72646, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.1809314, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 18098\n",
+ "Discriminator Loss: tf.Tensor(1.1664898, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.08224151, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 18099\n",
+ "Discriminator Loss: tf.Tensor(1.1264048, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.2035798, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 18100\n",
+ "Discriminator Loss: tf.Tensor(1.3269613, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.08307629, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 18101\n",
+ "Discriminator Loss: tf.Tensor(0.71847916, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.8498185, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 18102\n",
+ "Discriminator Loss: tf.Tensor(0.90383816, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.130187, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 18103\n",
+ "Discriminator Loss: tf.Tensor(0.6254874, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.6759014, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 18104\n",
+ "Discriminator Loss: tf.Tensor(2.3341427, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(3.0043113, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 18105\n",
+ "Discriminator Loss: tf.Tensor(1.048383, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.08543503, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 18106\n",
+ "Discriminator Loss: tf.Tensor(0.7807993, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.179318, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 18107\n",
+ "Discriminator Loss: tf.Tensor(0.64611095, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.5042936, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 18108\n",
+ "Discriminator Loss: tf.Tensor(0.96492755, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.0640097, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 18109\n",
+ "Discriminator Loss: tf.Tensor(0.8779253, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.30158743, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 18110\n",
+ "Discriminator Loss: tf.Tensor(0.79532385, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.4025084, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 18111\n",
+ "Discriminator Loss: tf.Tensor(0.8113517, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.26966393, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 18112\n",
+ "Discriminator Loss: tf.Tensor(0.8830844, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.8059133, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 18113\n",
+ "Discriminator Loss: tf.Tensor(1.2512882, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.0852172, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 18114\n",
+ "Discriminator Loss: tf.Tensor(0.7041799, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.240719, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 18115\n",
+ "Discriminator Loss: tf.Tensor(0.94891447, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.22331496, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 18116\n",
+ "Discriminator Loss: tf.Tensor(1.041155, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.0338115, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 18117\n",
+ "Discriminator Loss: tf.Tensor(0.86417115, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.54983366, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 18118\n",
+ "Discriminator Loss: tf.Tensor(0.9527694, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.8035723, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 18119\n",
+ "Discriminator Loss: tf.Tensor(1.2781459, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.16761874, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 18120\n",
+ "Discriminator Loss: tf.Tensor(0.83335423, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.4003206, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 18121\n",
+ "Discriminator Loss: tf.Tensor(1.2052101, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.030183056, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 18122\n",
+ "Discriminator Loss: tf.Tensor(0.61952555, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.2924656, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 18123\n",
+ "Discriminator Loss: tf.Tensor(0.87891346, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.16347717, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 18124\n",
+ "Discriminator Loss: tf.Tensor(1.1664041, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.6275414, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 18125\n",
+ "Discriminator Loss: tf.Tensor(1.0988191, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.14844505, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 18126\n",
+ "Discriminator Loss: tf.Tensor(0.3943122, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.9748287, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 18127\n",
+ "Discriminator Loss: tf.Tensor(1.1416811, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.516661, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 18128\n",
+ "Discriminator Loss: tf.Tensor(0.45836633, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.806664, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 18129\n",
+ "Discriminator Loss: tf.Tensor(1.5817435, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.4349424, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 18130\n",
+ "Discriminator Loss: tf.Tensor(0.6653898, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.87592316, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 18131\n",
+ "Discriminator Loss: tf.Tensor(0.5731717, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.6948919, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 18132\n",
+ "Discriminator Loss: tf.Tensor(1.5118313, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.4437742, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 18133\n",
+ "Discriminator Loss: tf.Tensor(0.9756136, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.33899125, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 18134\n",
+ "Discriminator Loss: tf.Tensor(1.3792837, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.3755158, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 18135\n",
+ "Discriminator Loss: tf.Tensor(1.4273304, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.3353356, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 18136\n",
+ "Discriminator Loss: tf.Tensor(1.029294, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.706487, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 18137\n",
+ "Discriminator Loss: tf.Tensor(0.5686506, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.155285, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 18138\n",
+ "Discriminator Loss: tf.Tensor(1.2575217, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.14752583, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 18139\n",
+ "Discriminator Loss: tf.Tensor(1.7743261, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.8289895, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 18140\n",
+ "Discriminator Loss: tf.Tensor(1.1722068, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.0039188466, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 18141\n",
+ "Discriminator Loss: tf.Tensor(0.8775544, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.97121805, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 18142\n",
+ "Discriminator Loss: tf.Tensor(1.1317058, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.11029756, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 18143\n",
+ "Discriminator Loss: tf.Tensor(1.1368899, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.86743516, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 18144\n",
+ "Discriminator Loss: tf.Tensor(0.80697334, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.9547167, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 18145\n",
+ "Discriminator Loss: tf.Tensor(0.9528674, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.6985033, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 18146\n",
+ "Discriminator Loss: tf.Tensor(1.6987652, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.5072302, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 18147\n",
+ "Discriminator Loss: tf.Tensor(1.2678794, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.23705752, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 18148\n",
+ "Discriminator Loss: tf.Tensor(1.158747, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.4875888, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 18149\n",
+ "Discriminator Loss: tf.Tensor(1.2187271, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.0013761073, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 18150\n",
+ "Discriminator Loss: tf.Tensor(1.1020842, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.71067816, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 18151\n",
+ "Discriminator Loss: tf.Tensor(0.6692937, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.9012583, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 18152\n",
+ "Discriminator Loss: tf.Tensor(1.1172032, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.1239032, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 18153\n",
+ "Discriminator Loss: tf.Tensor(1.0000428, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.45429477, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 18154\n",
+ "Discriminator Loss: tf.Tensor(1.4956342, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.5860735, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 18155\n",
+ "Discriminator Loss: tf.Tensor(1.767629, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.69560647, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 18156\n",
+ "Discriminator Loss: tf.Tensor(0.9759333, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.9349331, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 18157\n",
+ "Discriminator Loss: tf.Tensor(0.9161273, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.22596781, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 18158\n",
+ "Discriminator Loss: tf.Tensor(1.1768168, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.5524087, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 18159\n",
+ "Discriminator Loss: tf.Tensor(1.5362891, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.5011672, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 18160\n",
+ "Discriminator Loss: tf.Tensor(1.4251758, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.7936263, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 18161\n",
+ "Discriminator Loss: tf.Tensor(0.7589321, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.6608336, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 18162\n",
+ "Discriminator Loss: tf.Tensor(0.67773443, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.1890031, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 18163\n",
+ "Discriminator Loss: tf.Tensor(0.89613616, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.34654108, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 18164\n",
+ "Discriminator Loss: tf.Tensor(1.3212137, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.7953663, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 18165\n",
+ "Discriminator Loss: tf.Tensor(1.3128608, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.21070333, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 18166\n",
+ "Discriminator Loss: tf.Tensor(1.0509821, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.0168148, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 18167\n",
+ "Discriminator Loss: tf.Tensor(1.2242053, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.05994301, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 18168\n",
+ "Discriminator Loss: tf.Tensor(1.3561577, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.7622728, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 18169\n",
+ "Discriminator Loss: tf.Tensor(2.1816752, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-1.0703783, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 18170\n",
+ "Discriminator Loss: tf.Tensor(1.5693123, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.27870938, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 18171\n",
+ "Discriminator Loss: tf.Tensor(0.9542558, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.0462161, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 18172\n",
+ "Discriminator Loss: tf.Tensor(1.0674912, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.010212456, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 18173\n",
+ "Discriminator Loss: tf.Tensor(0.942078, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.4956385, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 18174\n",
+ "Discriminator Loss: tf.Tensor(1.0627888, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.44014034, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 18175\n",
+ "Discriminator Loss: tf.Tensor(0.549987, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.8899059, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 18176\n",
+ "Discriminator Loss: tf.Tensor(0.87742084, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.504311, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 18177\n",
+ "Discriminator Loss: tf.Tensor(1.9864829, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.4399369, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 18178\n",
+ "Discriminator Loss: tf.Tensor(1.0836033, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.16407739, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 18179\n",
+ "Discriminator Loss: tf.Tensor(0.6556174, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.67292595, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 18180\n",
+ "Discriminator Loss: tf.Tensor(0.57067806, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.165326, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 18181\n",
+ "Discriminator Loss: tf.Tensor(1.2108622, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.4572405, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 18182\n",
+ "Discriminator Loss: tf.Tensor(1.6219953, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.53700083, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 18183\n",
+ "Discriminator Loss: tf.Tensor(0.83452404, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.0235648, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 18184\n",
+ "Discriminator Loss: tf.Tensor(0.8530349, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.39379323, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 18185\n",
+ "Discriminator Loss: tf.Tensor(1.3362463, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.7404408, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 18186\n",
+ "Discriminator Loss: tf.Tensor(1.5262833, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.3324017, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 18187\n",
+ "Discriminator Loss: tf.Tensor(0.9727423, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.3752156, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 18188\n",
+ "Discriminator Loss: tf.Tensor(1.4116534, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.23856096, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 18189\n",
+ "Discriminator Loss: tf.Tensor(1.0025485, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.89153624, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 18190\n",
+ "Discriminator Loss: tf.Tensor(0.8355012, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.33961526, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 18191\n",
+ "Discriminator Loss: tf.Tensor(1.4443514, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.5251561, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 18192\n",
+ "Discriminator Loss: tf.Tensor(1.1656938, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.095689476, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 18193\n",
+ "Discriminator Loss: tf.Tensor(1.1770786, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.8667731, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 18194\n",
+ "Discriminator Loss: tf.Tensor(0.7786048, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.64461863, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 18195\n",
+ "Discriminator Loss: tf.Tensor(1.0033854, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.9498032, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 18196\n",
+ "Discriminator Loss: tf.Tensor(0.97852653, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.060780585, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 18197\n",
+ "Discriminator Loss: tf.Tensor(0.74770516, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.2830564, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 18198\n",
+ "Discriminator Loss: tf.Tensor(0.6213646, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.63963276, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 18199\n",
+ "Discriminator Loss: tf.Tensor(0.98089284, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.4807032, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 18200\n",
+ "Discriminator Loss: tf.Tensor(1.4925576, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.9420997, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 18201\n",
+ "Discriminator Loss: tf.Tensor(0.9626541, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.0999493, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 18202\n",
+ "Discriminator Loss: tf.Tensor(1.1856579, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.1903149, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 18203\n",
+ "Discriminator Loss: tf.Tensor(0.5525543, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.88286734, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 18204\n",
+ "Discriminator Loss: tf.Tensor(0.8665725, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.85640687, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 18205\n",
+ "Discriminator Loss: tf.Tensor(0.651029, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.4741573, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 18206\n",
+ "Discriminator Loss: tf.Tensor(1.1283386, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.07021481, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 18207\n",
+ "Discriminator Loss: tf.Tensor(0.9518589, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.513824, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 18208\n",
+ "Discriminator Loss: tf.Tensor(1.3481933, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.26429456, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 18209\n",
+ "Discriminator Loss: tf.Tensor(1.1819279, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.2710315, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 18210\n",
+ "Discriminator Loss: tf.Tensor(1.5044997, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.08177283, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 18211\n",
+ "Discriminator Loss: tf.Tensor(0.9164895, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.2500468, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 18212\n",
+ "Discriminator Loss: tf.Tensor(1.061254, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.0041003227, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 18213\n",
+ "Discriminator Loss: tf.Tensor(1.0888445, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.640696, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 18214\n",
+ "Discriminator Loss: tf.Tensor(1.0352737, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.05145086, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 18215\n",
+ "Discriminator Loss: tf.Tensor(1.0557985, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.8567583, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 18216\n",
+ "Discriminator Loss: tf.Tensor(0.73306006, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.76732713, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 18217\n",
+ "Discriminator Loss: tf.Tensor(1.1884158, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.4031535, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 18218\n",
+ "Discriminator Loss: tf.Tensor(1.731844, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.69473714, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 18219\n",
+ "Discriminator Loss: tf.Tensor(1.1740619, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.73318034, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 18220\n",
+ "Discriminator Loss: tf.Tensor(0.32597715, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.0603703, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 18221\n",
+ "Discriminator Loss: tf.Tensor(0.7048182, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.77822334, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 18222\n",
+ "Discriminator Loss: tf.Tensor(1.459142, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.004004, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 18223\n",
+ "Discriminator Loss: tf.Tensor(1.1266023, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.06306711, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 18224\n",
+ "Discriminator Loss: tf.Tensor(1.1413171, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.8358495, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 18225\n",
+ "Discriminator Loss: tf.Tensor(0.8427279, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.6802172, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 18226\n",
+ "Discriminator Loss: tf.Tensor(0.7413214, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.3855532, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 18227\n",
+ "Discriminator Loss: tf.Tensor(1.236212, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.13930807, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 18228\n",
+ "Discriminator Loss: tf.Tensor(1.1252716, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.63638276, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 18229\n",
+ "Discriminator Loss: tf.Tensor(0.71661294, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.1589597, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 18230\n",
+ "Discriminator Loss: tf.Tensor(0.7960608, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.48204622, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 18231\n",
+ "Discriminator Loss: tf.Tensor(1.2486025, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.4545208, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 18232\n",
+ "Discriminator Loss: tf.Tensor(1.3210883, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.10084549, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 18233\n",
+ "Discriminator Loss: tf.Tensor(0.873377, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.7836897, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 18234\n",
+ "Discriminator Loss: tf.Tensor(0.9929758, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.0887622, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 18235\n",
+ "Discriminator Loss: tf.Tensor(0.5981312, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.52320105, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 18236\n",
+ "Discriminator Loss: tf.Tensor(1.8451002, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.3756273, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 18237\n",
+ "Discriminator Loss: tf.Tensor(1.2249157, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.10668095, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 18238\n",
+ "Discriminator Loss: tf.Tensor(0.7786571, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.0058845, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 18239\n",
+ "Discriminator Loss: tf.Tensor(0.6932926, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.5521565, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 18240\n",
+ "Discriminator Loss: tf.Tensor(1.4275625, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.796812, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 18241\n",
+ "Discriminator Loss: tf.Tensor(1.4138002, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.2736005, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 18242\n",
+ "Discriminator Loss: tf.Tensor(0.9501672, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.1384751, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 18243\n",
+ "Discriminator Loss: tf.Tensor(1.0563442, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.25932494, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 18244\n",
+ "Discriminator Loss: tf.Tensor(0.72245246, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.4034554, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 18245\n",
+ "Discriminator Loss: tf.Tensor(1.0512334, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.1068905, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 18246\n",
+ "Discriminator Loss: tf.Tensor(1.4063742, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.0173974, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 18247\n",
+ "Discriminator Loss: tf.Tensor(1.1492524, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.27513492, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 18248\n",
+ "Discriminator Loss: tf.Tensor(1.069015, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.2868335, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 18249\n",
+ "Discriminator Loss: tf.Tensor(1.5347335, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.5040834, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 18250\n",
+ "Discriminator Loss: tf.Tensor(0.7448802, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.187205, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 18251\n",
+ "Discriminator Loss: tf.Tensor(1.0712142, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.027769094, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 18252\n",
+ "Discriminator Loss: tf.Tensor(0.99619055, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.1077408, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 18253\n",
+ "Discriminator Loss: tf.Tensor(0.8357288, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.6310468, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 18254\n",
+ "Discriminator Loss: tf.Tensor(0.48658034, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.3101937, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 18255\n",
+ "Discriminator Loss: tf.Tensor(1.0069495, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.46725583, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 18256\n",
+ "Discriminator Loss: tf.Tensor(1.6774448, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.173807, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 18257\n",
+ "Discriminator Loss: tf.Tensor(1.2554351, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.15169424, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 18258\n",
+ "Discriminator Loss: tf.Tensor(1.0723308, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.9003649, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 18259\n",
+ "Discriminator Loss: tf.Tensor(1.1433904, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.4639093, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 18260\n",
+ "Discriminator Loss: tf.Tensor(0.64924, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.0452586, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 18261\n",
+ "Discriminator Loss: tf.Tensor(0.85488, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.45898762, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 18262\n",
+ "Discriminator Loss: tf.Tensor(1.2313471, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.8158206, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 18263\n",
+ "Discriminator Loss: tf.Tensor(1.8142915, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.7208988, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 18264\n",
+ "Discriminator Loss: tf.Tensor(0.8386265, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.1430439, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 18265\n",
+ "Discriminator Loss: tf.Tensor(1.4038002, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.13639612, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 18266\n",
+ "Discriminator Loss: tf.Tensor(1.0265765, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.0829877, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 18267\n",
+ "Discriminator Loss: tf.Tensor(0.4552213, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.0589259, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 18268\n",
+ "Discriminator Loss: tf.Tensor(0.72702503, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.6667938, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 18269\n",
+ "Discriminator Loss: tf.Tensor(1.662262, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.9799514, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 18270\n",
+ "Discriminator Loss: tf.Tensor(1.6109006, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.4959322, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 18271\n",
+ "Discriminator Loss: tf.Tensor(0.9972508, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.0039216, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 18272\n",
+ "Discriminator Loss: tf.Tensor(1.0758985, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.009707262, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 18273\n",
+ "Discriminator Loss: tf.Tensor(1.1923628, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.4661185, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 18274\n",
+ "Discriminator Loss: tf.Tensor(1.0801442, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.06719185, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 18275\n",
+ "Discriminator Loss: tf.Tensor(0.72652245, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.2009696, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 18276\n",
+ "Discriminator Loss: tf.Tensor(0.786265, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.31090987, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 18277\n",
+ "Discriminator Loss: tf.Tensor(0.912579, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.4449568, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 18278\n",
+ "Discriminator Loss: tf.Tensor(1.4001882, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.12194273, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 18279\n",
+ "Discriminator Loss: tf.Tensor(0.71187973, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.7202075, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 18280\n",
+ "Discriminator Loss: tf.Tensor(0.8788993, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.490106, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 18281\n",
+ "Discriminator Loss: tf.Tensor(0.95821345, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.3119972, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 18282\n",
+ "Discriminator Loss: tf.Tensor(1.1822697, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.6672558, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 18283\n",
+ "Discriminator Loss: tf.Tensor(1.2136588, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.122921, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 18284\n",
+ "Discriminator Loss: tf.Tensor(1.1621094, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.9629092, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 18285\n",
+ "Discriminator Loss: tf.Tensor(0.47004253, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.7420432, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 18286\n",
+ "Discriminator Loss: tf.Tensor(1.1254278, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.6319885, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 18287\n",
+ "Discriminator Loss: tf.Tensor(0.91680574, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.39542672, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 18288\n",
+ "Discriminator Loss: tf.Tensor(1.0094551, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.4103377, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 18289\n",
+ "Discriminator Loss: tf.Tensor(1.3670177, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.23931926, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 18290\n",
+ "Discriminator Loss: tf.Tensor(1.147383, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.6378263, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 18291\n",
+ "Discriminator Loss: tf.Tensor(0.81388956, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.27639246, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 18292\n",
+ "Discriminator Loss: tf.Tensor(0.92947876, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.2782551, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 18293\n",
+ "Discriminator Loss: tf.Tensor(1.0111938, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.19538093, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 18294\n",
+ "Discriminator Loss: tf.Tensor(0.879273, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.664328, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 18295\n",
+ "Discriminator Loss: tf.Tensor(0.8480803, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.306494, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 18296\n",
+ "Discriminator Loss: tf.Tensor(1.4429772, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.4055105, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 18297\n",
+ "Discriminator Loss: tf.Tensor(1.1122807, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.117064916, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 18298\n",
+ "Discriminator Loss: tf.Tensor(0.7521851, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.88034874, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 18299\n",
+ "Discriminator Loss: tf.Tensor(0.59987855, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.5832796, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 18300\n",
+ "Discriminator Loss: tf.Tensor(0.70929575, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.8073806, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 18301\n",
+ "Discriminator Loss: tf.Tensor(0.49865463, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.3059283, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 18302\n",
+ "Discriminator Loss: tf.Tensor(1.6133527, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.3290269, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 18303\n",
+ "Discriminator Loss: tf.Tensor(1.6157876, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.7723681, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 18304\n",
+ "Discriminator Loss: tf.Tensor(0.85513896, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.20479222, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 18305\n",
+ "Discriminator Loss: tf.Tensor(1.1640542, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.248409, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 18306\n",
+ "Discriminator Loss: tf.Tensor(0.94364506, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.34788635, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 18307\n",
+ "Discriminator Loss: tf.Tensor(1.2868737, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.4788839, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 18308\n",
+ "Discriminator Loss: tf.Tensor(1.2808008, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.046024192, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 18309\n",
+ "Discriminator Loss: tf.Tensor(0.5725018, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.94769794, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 18310\n",
+ "Discriminator Loss: tf.Tensor(0.85815275, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.2215718, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 18311\n",
+ "Discriminator Loss: tf.Tensor(1.3826576, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.09641845, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 18312\n",
+ "Discriminator Loss: tf.Tensor(0.98565686, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.0942206, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 18313\n",
+ "Discriminator Loss: tf.Tensor(0.864669, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.742021, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 18314\n",
+ "Discriminator Loss: tf.Tensor(0.9941045, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.1969944, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 18315\n",
+ "Discriminator Loss: tf.Tensor(1.0958252, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.031156374, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 18316\n",
+ "Discriminator Loss: tf.Tensor(1.3597875, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.7664932, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 18317\n",
+ "Discriminator Loss: tf.Tensor(0.89853275, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.20287447, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 18318\n",
+ "Discriminator Loss: tf.Tensor(0.7709327, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.9197263, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 18319\n",
+ "Discriminator Loss: tf.Tensor(0.910215, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.5283903, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 18320\n",
+ "Discriminator Loss: tf.Tensor(1.1438277, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.036736567, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 18321\n",
+ "Discriminator Loss: tf.Tensor(1.0308775, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.2702409, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 18322\n",
+ "Discriminator Loss: tf.Tensor(0.8698266, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.27477264, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 18323\n",
+ "Discriminator Loss: tf.Tensor(1.0381105, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.3937289, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 18324\n",
+ "Discriminator Loss: tf.Tensor(1.0443319, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.075713076, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 18325\n",
+ "Discriminator Loss: tf.Tensor(0.8906288, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.1681632, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 18326\n",
+ "Discriminator Loss: tf.Tensor(0.81744933, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.358897, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 18327\n",
+ "Discriminator Loss: tf.Tensor(1.2559361, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.8796526, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 18328\n",
+ "Discriminator Loss: tf.Tensor(1.1934583, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.1453173, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 18329\n",
+ "Discriminator Loss: tf.Tensor(0.9477688, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.1695083, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 18330\n",
+ "Discriminator Loss: tf.Tensor(1.0595902, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.044554006, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 18331\n",
+ "Discriminator Loss: tf.Tensor(1.0225489, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.5437561, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 18332\n",
+ "Discriminator Loss: tf.Tensor(1.1994936, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.03689408, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 18333\n",
+ "Discriminator Loss: tf.Tensor(0.87400126, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.92253613, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 18334\n",
+ "Discriminator Loss: tf.Tensor(0.81661755, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.9118185, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 18335\n",
+ "Discriminator Loss: tf.Tensor(1.092813, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.14490227, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 18336\n",
+ "Discriminator Loss: tf.Tensor(1.0780174, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.6251087, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 18337\n",
+ "Discriminator Loss: tf.Tensor(1.244196, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.20288523, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 18338\n",
+ "Discriminator Loss: tf.Tensor(0.7838784, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.1591733, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 18339\n",
+ "Discriminator Loss: tf.Tensor(0.91635, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.1107404, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 18340\n",
+ "Discriminator Loss: tf.Tensor(1.2517436, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.8138376, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 18341\n",
+ "Discriminator Loss: tf.Tensor(1.2923288, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.08340216, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 18342\n",
+ "Discriminator Loss: tf.Tensor(1.0994436, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.2093664, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 18343\n",
+ "Discriminator Loss: tf.Tensor(1.114653, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.04774588, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 18344\n",
+ "Discriminator Loss: tf.Tensor(1.050797, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.1486559, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 18345\n",
+ "Discriminator Loss: tf.Tensor(0.56956625, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.90058035, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 18346\n",
+ "Discriminator Loss: tf.Tensor(1.0209796, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.30485198, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 18347\n",
+ "Discriminator Loss: tf.Tensor(2.2642684, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.3541076, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 18348\n",
+ "Discriminator Loss: tf.Tensor(1.1465993, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.07050577, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 18349\n",
+ "Discriminator Loss: tf.Tensor(0.8928814, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.6065753, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 18350\n",
+ "Discriminator Loss: tf.Tensor(0.73499906, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.3263241, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 18351\n",
+ "Discriminator Loss: tf.Tensor(1.0937653, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.054271862, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 18352\n",
+ "Discriminator Loss: tf.Tensor(0.88163114, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.2711321, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 18353\n",
+ "Discriminator Loss: tf.Tensor(0.59722054, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.4845377, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 18354\n",
+ "Discriminator Loss: tf.Tensor(1.6636775, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.2833672, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 18355\n",
+ "Discriminator Loss: tf.Tensor(1.0044136, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.21813889, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 18356\n",
+ "Discriminator Loss: tf.Tensor(0.664512, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.2436818, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 18357\n",
+ "Discriminator Loss: tf.Tensor(0.87681884, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.27635148, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 18358\n",
+ "Discriminator Loss: tf.Tensor(0.6861721, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.5643533, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 18359\n",
+ "Discriminator Loss: tf.Tensor(0.894253, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.56396204, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 18360\n",
+ "Discriminator Loss: tf.Tensor(0.8008486, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.7223085, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 18361\n",
+ "Discriminator Loss: tf.Tensor(0.9020435, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.24398045, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 18362\n",
+ "Discriminator Loss: tf.Tensor(0.7785889, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.8011297, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 18363\n",
+ "Discriminator Loss: tf.Tensor(0.62172645, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.6763242, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 18364\n",
+ "Discriminator Loss: tf.Tensor(1.3447421, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.6640381, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 18365\n",
+ "Discriminator Loss: tf.Tensor(0.5675014, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.6116329, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 18366\n",
+ "Discriminator Loss: tf.Tensor(1.6563174, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.1370757, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 18367\n",
+ "Discriminator Loss: tf.Tensor(0.95302975, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.15363991, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 18368\n",
+ "Discriminator Loss: tf.Tensor(1.035177, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.109146, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 18369\n",
+ "Discriminator Loss: tf.Tensor(0.48950368, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.1428579, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 18370\n",
+ "Discriminator Loss: tf.Tensor(0.6385584, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.0880495, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 18371\n",
+ "Discriminator Loss: tf.Tensor(0.58257127, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.59840614, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 18372\n",
+ "Discriminator Loss: tf.Tensor(1.6054156, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.4992902, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 18373\n",
+ "Discriminator Loss: tf.Tensor(1.0847317, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.042947024, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 18374\n",
+ "Discriminator Loss: tf.Tensor(1.0740932, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.5433983, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 18375\n",
+ "Discriminator Loss: tf.Tensor(1.070299, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.034628637, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 18376\n",
+ "Discriminator Loss: tf.Tensor(0.87024426, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.0794796, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 18377\n",
+ "Discriminator Loss: tf.Tensor(0.6809425, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.72590667, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 18378\n",
+ "Discriminator Loss: tf.Tensor(1.0584846, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.7652937, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 18379\n",
+ "Discriminator Loss: tf.Tensor(1.3217775, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.21243991, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 18380\n",
+ "Discriminator Loss: tf.Tensor(0.5873449, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.278876, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 18381\n",
+ "Discriminator Loss: tf.Tensor(1.1368409, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.034370646, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 18382\n",
+ "Discriminator Loss: tf.Tensor(0.9143001, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.9483401, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 18383\n",
+ "Discriminator Loss: tf.Tensor(0.830765, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.0470151, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 18384\n",
+ "Discriminator Loss: tf.Tensor(0.89378244, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.23146693, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 18385\n",
+ "Discriminator Loss: tf.Tensor(0.6107788, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.6446558, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 18386\n",
+ "Discriminator Loss: tf.Tensor(0.886583, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.36010885, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 18387\n",
+ "Discriminator Loss: tf.Tensor(1.0773163, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.2840742, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 18388\n",
+ "Discriminator Loss: tf.Tensor(1.175375, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.08936932, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 18389\n",
+ "Discriminator Loss: tf.Tensor(0.8601004, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.2727015, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 18390\n",
+ "Discriminator Loss: tf.Tensor(1.3452965, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.26036134, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 18391\n",
+ "Discriminator Loss: tf.Tensor(0.8904486, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.2915863, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 18392\n",
+ "Discriminator Loss: tf.Tensor(0.982919, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.13941719, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 18393\n",
+ "Discriminator Loss: tf.Tensor(0.56150603, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.1934875, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 18394\n",
+ "Discriminator Loss: tf.Tensor(1.0404471, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.3447508, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 18395\n",
+ "Discriminator Loss: tf.Tensor(0.9140281, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.4831702, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 18396\n",
+ "Discriminator Loss: tf.Tensor(0.8129115, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.37503448, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 18397\n",
+ "Discriminator Loss: tf.Tensor(1.3561385, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.5416218, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 18398\n",
+ "Discriminator Loss: tf.Tensor(1.0227454, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.3916982, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 18399\n",
+ "Discriminator Loss: tf.Tensor(1.764737, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.7229863, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 18400\n",
+ "Discriminator Loss: tf.Tensor(1.4566853, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.33065102, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 18401\n",
+ "Discriminator Loss: tf.Tensor(1.0905887, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.0653471, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 18402\n",
+ "Discriminator Loss: tf.Tensor(0.81583256, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.24414875, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 18403\n",
+ "Discriminator Loss: tf.Tensor(0.46385366, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.2630565, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 18404\n",
+ "Discriminator Loss: tf.Tensor(1.2348938, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.518907, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 18405\n",
+ "Discriminator Loss: tf.Tensor(1.1407818, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.09061869, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 18406\n",
+ "Discriminator Loss: tf.Tensor(0.9701052, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.11566, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 18407\n",
+ "Discriminator Loss: tf.Tensor(1.0026001, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.26557192, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 18408\n",
+ "Discriminator Loss: tf.Tensor(0.7694739, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.1291336, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 18409\n",
+ "Discriminator Loss: tf.Tensor(0.48837596, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.0570642, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 18410\n",
+ "Discriminator Loss: tf.Tensor(1.1443863, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.30594662, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 18411\n",
+ "Discriminator Loss: tf.Tensor(1.3483803, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.280802, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 18412\n",
+ "Discriminator Loss: tf.Tensor(1.3882155, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.21529402, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 18413\n",
+ "Discriminator Loss: tf.Tensor(1.4658616, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.2911851, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 18414\n",
+ "Discriminator Loss: tf.Tensor(1.1666983, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.16358283, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 18415\n",
+ "Discriminator Loss: tf.Tensor(0.7017232, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.83948356, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 18416\n",
+ "Discriminator Loss: tf.Tensor(0.79734004, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.1645031, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 18417\n",
+ "Discriminator Loss: tf.Tensor(0.922653, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.18461616, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 18418\n",
+ "Discriminator Loss: tf.Tensor(1.5990865, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.581198, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 18419\n",
+ "Discriminator Loss: tf.Tensor(0.67595416, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.41252232, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 18420\n",
+ "Discriminator Loss: tf.Tensor(1.1051953, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.2152646, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 18421\n",
+ "Discriminator Loss: tf.Tensor(1.1169008, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.110445715, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 18422\n",
+ "Discriminator Loss: tf.Tensor(0.97930014, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.0491507, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 18423\n",
+ "Discriminator Loss: tf.Tensor(0.70029145, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.7223775, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 18424\n",
+ "Discriminator Loss: tf.Tensor(0.7367201, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.3718275, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 18425\n",
+ "Discriminator Loss: tf.Tensor(0.64051473, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.49717104, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 18426\n",
+ "Discriminator Loss: tf.Tensor(1.4989234, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.4499803, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 18427\n",
+ "Discriminator Loss: tf.Tensor(0.83535147, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.28131598, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 18428\n",
+ "Discriminator Loss: tf.Tensor(1.0375311, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.1468427, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 18429\n",
+ "Discriminator Loss: tf.Tensor(0.36076513, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.8515032, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 18430\n",
+ "Discriminator Loss: tf.Tensor(0.8720279, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.2923973, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 18431\n",
+ "Discriminator Loss: tf.Tensor(1.4846722, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.16628276, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 18432\n",
+ "Discriminator Loss: tf.Tensor(0.5657389, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.6151854, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 18433\n",
+ "Discriminator Loss: tf.Tensor(0.57659364, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.5336568, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 18434\n",
+ "Discriminator Loss: tf.Tensor(1.8484272, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.8408594, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 18435\n",
+ "Discriminator Loss: tf.Tensor(1.3899723, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.13428798, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 18436\n",
+ "Discriminator Loss: tf.Tensor(0.70255476, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.792247, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 18437\n",
+ "Discriminator Loss: tf.Tensor(0.6706344, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.6693527, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 18438\n",
+ "Discriminator Loss: tf.Tensor(0.8822548, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.5844961, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 18439\n",
+ "Discriminator Loss: tf.Tensor(1.366509, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.22904791, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 18440\n",
+ "Discriminator Loss: tf.Tensor(1.1907254, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.9477813, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 18441\n",
+ "Discriminator Loss: tf.Tensor(0.6525233, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.7888953, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 18442\n",
+ "Discriminator Loss: tf.Tensor(0.6412656, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.1326452, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 18443\n",
+ "Discriminator Loss: tf.Tensor(0.9139227, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.9980595, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 18444\n",
+ "Discriminator Loss: tf.Tensor(1.23012, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.0422767, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 18445\n",
+ "Discriminator Loss: tf.Tensor(1.3598301, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.4470619, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 18446\n",
+ "Discriminator Loss: tf.Tensor(1.0251436, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.05768242, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 18447\n",
+ "Discriminator Loss: tf.Tensor(0.921157, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.2422184, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 18448\n",
+ "Discriminator Loss: tf.Tensor(1.2289993, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.061191425, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 18449\n",
+ "Discriminator Loss: tf.Tensor(0.80904824, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.1089963, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 18450\n",
+ "Discriminator Loss: tf.Tensor(0.9734718, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.32955804, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 18451\n",
+ "Discriminator Loss: tf.Tensor(0.26369166, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.545349, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 18452\n",
+ "Discriminator Loss: tf.Tensor(1.3683391, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.31424597, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 18453\n",
+ "Discriminator Loss: tf.Tensor(1.5750647, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.3179917, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 18454\n",
+ "Discriminator Loss: tf.Tensor(1.6824973, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.42190847, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 18455\n",
+ "Discriminator Loss: tf.Tensor(1.0604136, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.5982599, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 18456\n",
+ "Discriminator Loss: tf.Tensor(0.97320116, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.22649974, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 18457\n",
+ "Discriminator Loss: tf.Tensor(0.98933744, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.9964487, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 18458\n",
+ "Discriminator Loss: tf.Tensor(1.0477072, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.33438364, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 18459\n",
+ "Discriminator Loss: tf.Tensor(1.0138127, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.2518959, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 18460\n",
+ "Discriminator Loss: tf.Tensor(0.9526353, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.1203019, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 18461\n",
+ "Discriminator Loss: tf.Tensor(1.1626009, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.3582593, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 18462\n",
+ "Discriminator Loss: tf.Tensor(1.0816476, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.09037081, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 18463\n",
+ "Discriminator Loss: tf.Tensor(0.9960835, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.3432351, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 18464\n",
+ "Discriminator Loss: tf.Tensor(1.1344101, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.00831582, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 18465\n",
+ "Discriminator Loss: tf.Tensor(0.9364454, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.1624595, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 18466\n",
+ "Discriminator Loss: tf.Tensor(0.7619105, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.34660545, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 18467\n",
+ "Discriminator Loss: tf.Tensor(1.4809897, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.0581415, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 18468\n",
+ "Discriminator Loss: tf.Tensor(1.1192605, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.005053828, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 18469\n",
+ "Discriminator Loss: tf.Tensor(0.6926161, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.3187441, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 18470\n",
+ "Discriminator Loss: tf.Tensor(1.1574084, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.08706025, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 18471\n",
+ "Discriminator Loss: tf.Tensor(1.0366914, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.5729204, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 18472\n",
+ "Discriminator Loss: tf.Tensor(0.85753185, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.18059088, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 18473\n",
+ "Discriminator Loss: tf.Tensor(0.9688071, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.76127434, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 18474\n",
+ "Discriminator Loss: tf.Tensor(0.540511, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.1326364, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 18475\n",
+ "Discriminator Loss: tf.Tensor(1.0584776, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.43856812, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 18476\n",
+ "Discriminator Loss: tf.Tensor(1.5023062, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.8203535, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 18477\n",
+ "Discriminator Loss: tf.Tensor(1.808428, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.77344006, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 18478\n",
+ "Discriminator Loss: tf.Tensor(1.1282698, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.62351054, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 18479\n",
+ "Discriminator Loss: tf.Tensor(0.7205428, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.53497356, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 18480\n",
+ "Discriminator Loss: tf.Tensor(1.4236752, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.246647, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 18481\n",
+ "Discriminator Loss: tf.Tensor(0.9397133, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.18886329, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 18482\n",
+ "Discriminator Loss: tf.Tensor(0.79645956, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.1279877, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 18483\n",
+ "Discriminator Loss: tf.Tensor(0.8143182, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.38888672, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 18484\n",
+ "Discriminator Loss: tf.Tensor(1.3409767, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.6740966, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 18485\n",
+ "Discriminator Loss: tf.Tensor(1.3856252, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.21131139, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 18486\n",
+ "Discriminator Loss: tf.Tensor(0.71787006, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.0013283, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 18487\n",
+ "Discriminator Loss: tf.Tensor(0.7085625, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.7622459, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 18488\n",
+ "Discriminator Loss: tf.Tensor(0.9820199, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.0556285, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 18489\n",
+ "Discriminator Loss: tf.Tensor(0.7409569, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.3658795, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 18490\n",
+ "Discriminator Loss: tf.Tensor(1.7361333, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.2865338, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 18491\n",
+ "Discriminator Loss: tf.Tensor(1.0049661, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.04605335, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 18492\n",
+ "Discriminator Loss: tf.Tensor(1.1754017, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.4453396, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 18493\n",
+ "Discriminator Loss: tf.Tensor(1.0507288, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.1224216, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 18494\n",
+ "Discriminator Loss: tf.Tensor(0.68936163, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.86441237, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 18495\n",
+ "Discriminator Loss: tf.Tensor(0.68541116, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.6947431, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 18496\n",
+ "Discriminator Loss: tf.Tensor(0.9624053, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.5700372, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 18497\n",
+ "Discriminator Loss: tf.Tensor(1.0513724, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.22368671, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 18498\n",
+ "Discriminator Loss: tf.Tensor(0.9332018, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.3658587, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 18499\n",
+ "Discriminator Loss: tf.Tensor(0.84681445, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.24236405, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 18500\n",
+ "Discriminator Loss: tf.Tensor(1.5868075, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.0851126, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 18501\n",
+ "Discriminator Loss: tf.Tensor(0.6851798, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.39307085, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 18502\n",
+ "Discriminator Loss: tf.Tensor(1.2877145, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.6381577, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 18503\n",
+ "Discriminator Loss: tf.Tensor(1.0131583, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.1295875, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 18504\n",
+ "Discriminator Loss: tf.Tensor(1.0971254, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.043660607, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 18505\n",
+ "Discriminator Loss: tf.Tensor(1.1462228, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.2782676, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 18506\n",
+ "Discriminator Loss: tf.Tensor(1.236491, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.073858686, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 18507\n",
+ "Discriminator Loss: tf.Tensor(0.79016733, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.1088582, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 18508\n",
+ "Discriminator Loss: tf.Tensor(0.9891846, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.16722398, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 18509\n",
+ "Discriminator Loss: tf.Tensor(1.3107538, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.2935863, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 18510\n",
+ "Discriminator Loss: tf.Tensor(1.533108, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.4794347, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 18511\n",
+ "Discriminator Loss: tf.Tensor(1.0578531, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.99715596, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 18512\n",
+ "Discriminator Loss: tf.Tensor(1.2833511, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.2027032, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 18513\n",
+ "Discriminator Loss: tf.Tensor(1.027678, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.3876667, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 18514\n",
+ "Discriminator Loss: tf.Tensor(0.8519195, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.4680383, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 18515\n",
+ "Discriminator Loss: tf.Tensor(1.0282984, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.0532703, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 18516\n",
+ "Discriminator Loss: tf.Tensor(0.62435895, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.75174266, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 18517\n",
+ "Discriminator Loss: tf.Tensor(1.1027099, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.3789414, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 18518\n",
+ "Discriminator Loss: tf.Tensor(0.48552424, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.63825846, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 18519\n",
+ "Discriminator Loss: tf.Tensor(4.5751247, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(4.9574356, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 18520\n",
+ "Discriminator Loss: tf.Tensor(0.9687487, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.82737964, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 18521\n",
+ "Discriminator Loss: tf.Tensor(0.91895425, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.6725888, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 18522\n",
+ "Discriminator Loss: tf.Tensor(0.6326929, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.8462134, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 18523\n",
+ "Discriminator Loss: tf.Tensor(0.97855616, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.1102501, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 18524\n",
+ "Discriminator Loss: tf.Tensor(1.2007965, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.5063185, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 18525\n",
+ "Discriminator Loss: tf.Tensor(1.8208075, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.7762283, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 18526\n",
+ "Discriminator Loss: tf.Tensor(1.2041208, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.1488743, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 18527\n",
+ "Discriminator Loss: tf.Tensor(1.4120128, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.1548158, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 18528\n",
+ "Discriminator Loss: tf.Tensor(1.3053336, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.06219041, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 18529\n",
+ "Discriminator Loss: tf.Tensor(0.78299594, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.75709707, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 18530\n",
+ "Discriminator Loss: tf.Tensor(1.3890996, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.3953604, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 18531\n",
+ "Discriminator Loss: tf.Tensor(1.1763692, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.13785155, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 18532\n",
+ "Discriminator Loss: tf.Tensor(0.8811405, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.86578494, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 18533\n",
+ "Discriminator Loss: tf.Tensor(0.8534546, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.5548, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 18534\n",
+ "Discriminator Loss: tf.Tensor(1.1951847, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.2753388, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 18535\n",
+ "Discriminator Loss: tf.Tensor(1.1772927, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.10887251, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 18536\n",
+ "Discriminator Loss: tf.Tensor(1.2405312, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.4288349, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 18537\n",
+ "Discriminator Loss: tf.Tensor(1.0823289, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.041454736, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 18538\n",
+ "Discriminator Loss: tf.Tensor(0.9906503, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.2288288, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 18539\n",
+ "Discriminator Loss: tf.Tensor(1.5264847, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.36773992, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 18540\n",
+ "Discriminator Loss: tf.Tensor(0.9827333, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.0056604, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 18541\n",
+ "Discriminator Loss: tf.Tensor(0.95321846, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.13590331, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 18542\n",
+ "Discriminator Loss: tf.Tensor(1.837168, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.0239236, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 18543\n",
+ "Discriminator Loss: tf.Tensor(1.4587209, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.06348212, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 18544\n",
+ "Discriminator Loss: tf.Tensor(1.1147635, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.100097485, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 18545\n",
+ "Discriminator Loss: tf.Tensor(1.1482732, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.4525864, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 18546\n",
+ "Discriminator Loss: tf.Tensor(1.247727, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.0511206, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 18547\n",
+ "Discriminator Loss: tf.Tensor(0.72015023, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.5789481, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 18548\n",
+ "Discriminator Loss: tf.Tensor(1.097099, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.370505, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 18549\n",
+ "Discriminator Loss: tf.Tensor(1.0623447, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.019792542, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 18550\n",
+ "Discriminator Loss: tf.Tensor(1.236506, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.5483831, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 18551\n",
+ "Discriminator Loss: tf.Tensor(1.3334477, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.10766516, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 18552\n",
+ "Discriminator Loss: tf.Tensor(1.0074372, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.60050875, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 18553\n",
+ "Discriminator Loss: tf.Tensor(0.735676, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.7136859, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 18554\n",
+ "Discriminator Loss: tf.Tensor(2.1012301, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.5683486, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 18555\n",
+ "Discriminator Loss: tf.Tensor(1.1584018, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.100367606, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 18556\n",
+ "Discriminator Loss: tf.Tensor(1.0359703, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.5842322, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 18557\n",
+ "Discriminator Loss: tf.Tensor(0.8675825, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.88348866, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 18558\n",
+ "Discriminator Loss: tf.Tensor(0.65583956, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.6204687, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 18559\n",
+ "Discriminator Loss: tf.Tensor(1.710639, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.6103983, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 18560\n",
+ "Discriminator Loss: tf.Tensor(1.4506683, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.3799185, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 18561\n",
+ "Discriminator Loss: tf.Tensor(0.940541, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.9827389, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 18562\n",
+ "Discriminator Loss: tf.Tensor(0.69523025, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.8264721, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 18563\n",
+ "Discriminator Loss: tf.Tensor(1.4233844, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.3833364, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 18564\n",
+ "Discriminator Loss: tf.Tensor(0.89885306, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.21136063, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 18565\n",
+ "Discriminator Loss: tf.Tensor(1.3854696, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.2954682, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 18566\n",
+ "Discriminator Loss: tf.Tensor(1.2190398, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.026868815, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 18567\n",
+ "Discriminator Loss: tf.Tensor(0.9222621, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.0128204, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 18568\n",
+ "Discriminator Loss: tf.Tensor(1.0176356, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.53296405, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 18569\n",
+ "Discriminator Loss: tf.Tensor(0.869172, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.0878056, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 18570\n",
+ "Discriminator Loss: tf.Tensor(0.6746143, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.8050993, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 18571\n",
+ "Discriminator Loss: tf.Tensor(1.0448315, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.9404791, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 18572\n",
+ "Discriminator Loss: tf.Tensor(1.2963266, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.4505442, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 18573\n",
+ "Discriminator Loss: tf.Tensor(0.91205597, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.7135638, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 18574\n",
+ "Discriminator Loss: tf.Tensor(1.7663743, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.63056296, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 18575\n",
+ "Discriminator Loss: tf.Tensor(0.9596141, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.8177192, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 18576\n",
+ "Discriminator Loss: tf.Tensor(0.7135695, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.2537192, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 18577\n",
+ "Discriminator Loss: tf.Tensor(1.3171749, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.2711682, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 18578\n",
+ "Discriminator Loss: tf.Tensor(1.0720804, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.2895005, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 18579\n",
+ "Discriminator Loss: tf.Tensor(1.1263458, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.022133848, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 18580\n",
+ "Discriminator Loss: tf.Tensor(1.0448254, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.2520119, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 18581\n",
+ "Discriminator Loss: tf.Tensor(0.8800943, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.41192845, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 18582\n",
+ "Discriminator Loss: tf.Tensor(1.7048526, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.5658668, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 18583\n",
+ "Discriminator Loss: tf.Tensor(0.8736589, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.3779919, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 18584\n",
+ "Discriminator Loss: tf.Tensor(0.9892461, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.419274, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 18585\n",
+ "Discriminator Loss: tf.Tensor(1.282979, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.4741946, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 18586\n",
+ "Discriminator Loss: tf.Tensor(1.8274037, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.7362962, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 18587\n",
+ "Discriminator Loss: tf.Tensor(0.75620174, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.94881743, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 18588\n",
+ "Discriminator Loss: tf.Tensor(1.1455861, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.33679977, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 18589\n",
+ "Discriminator Loss: tf.Tensor(0.9080448, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.86827135, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 18590\n",
+ "Discriminator Loss: tf.Tensor(1.1288881, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.6224245, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 18591\n",
+ "Discriminator Loss: tf.Tensor(1.458855, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.39505327, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 18592\n",
+ "Discriminator Loss: tf.Tensor(1.2491974, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.8408346, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 18593\n",
+ "Discriminator Loss: tf.Tensor(1.2356185, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.29883933, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 18594\n",
+ "Discriminator Loss: tf.Tensor(0.83392286, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.3164748, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 18595\n",
+ "Discriminator Loss: tf.Tensor(1.4825014, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.3687979, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 18596\n",
+ "Discriminator Loss: tf.Tensor(0.95660913, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.0707514, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 18597\n",
+ "Discriminator Loss: tf.Tensor(0.59813166, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.56434864, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 18598\n",
+ "Discriminator Loss: tf.Tensor(1.293812, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.2109329, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 18599\n",
+ "Discriminator Loss: tf.Tensor(0.49379805, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.8177411, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 18600\n",
+ "Discriminator Loss: tf.Tensor(1.110392, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.4157451, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 18601\n",
+ "Discriminator Loss: tf.Tensor(1.282026, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.12704802, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 18602\n",
+ "Discriminator Loss: tf.Tensor(1.1607406, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.0053035, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 18603\n",
+ "Discriminator Loss: tf.Tensor(0.96064746, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.19551837, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 18604\n",
+ "Discriminator Loss: tf.Tensor(1.6256537, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.0468552, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 18605\n",
+ "Discriminator Loss: tf.Tensor(1.3327852, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.06267664, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 18606\n",
+ "Discriminator Loss: tf.Tensor(0.89840007, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.6804781, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 18607\n",
+ "Discriminator Loss: tf.Tensor(0.8079697, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.85108995, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 18608\n",
+ "Discriminator Loss: tf.Tensor(0.9105073, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.9382148, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 18609\n",
+ "Discriminator Loss: tf.Tensor(1.1353214, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.5441757, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 18610\n",
+ "Discriminator Loss: tf.Tensor(1.9545023, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.92432183, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 18611\n",
+ "Discriminator Loss: tf.Tensor(0.8522126, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.9857764, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 18612\n",
+ "Discriminator Loss: tf.Tensor(0.6426284, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.5774417, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 18613\n",
+ "Discriminator Loss: tf.Tensor(1.5119809, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.3968403, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 18614\n",
+ "Discriminator Loss: tf.Tensor(1.2878863, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.14527933, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 18615\n",
+ "Discriminator Loss: tf.Tensor(0.855604, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.611904, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 18616\n",
+ "Discriminator Loss: tf.Tensor(0.5442537, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.9732444, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 18617\n",
+ "Discriminator Loss: tf.Tensor(0.7086401, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.2958394, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 18618\n",
+ "Discriminator Loss: tf.Tensor(1.0090531, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.03362392, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 18619\n",
+ "Discriminator Loss: tf.Tensor(1.7003173, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.2835333, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 18620\n",
+ "Discriminator Loss: tf.Tensor(1.063759, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.09770314, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 18621\n",
+ "Discriminator Loss: tf.Tensor(1.292505, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.98572063, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 18622\n",
+ "Discriminator Loss: tf.Tensor(0.7271322, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.5292774, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 18623\n",
+ "Discriminator Loss: tf.Tensor(1.3450657, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.6064715, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 18624\n",
+ "Discriminator Loss: tf.Tensor(1.297469, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.19137667, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 18625\n",
+ "Discriminator Loss: tf.Tensor(1.0503844, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.88917065, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 18626\n",
+ "Discriminator Loss: tf.Tensor(0.708637, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.78149027, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 18627\n",
+ "Discriminator Loss: tf.Tensor(0.9582659, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.8025523, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 18628\n",
+ "Discriminator Loss: tf.Tensor(1.2638237, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.18937516, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 18629\n",
+ "Discriminator Loss: tf.Tensor(0.99195087, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.3897343, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 18630\n",
+ "Discriminator Loss: tf.Tensor(1.5406585, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.4185051, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 18631\n",
+ "Discriminator Loss: tf.Tensor(0.91910464, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.99279946, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 18632\n",
+ "Discriminator Loss: tf.Tensor(0.9135691, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.4210938, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 18633\n",
+ "Discriminator Loss: tf.Tensor(1.0061541, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.0516691, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 18634\n",
+ "Discriminator Loss: tf.Tensor(1.2367196, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.1587659, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 18635\n",
+ "Discriminator Loss: tf.Tensor(0.5605352, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.0744314, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 18636\n",
+ "Discriminator Loss: tf.Tensor(1.2757356, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.15912826, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 18637\n",
+ "Discriminator Loss: tf.Tensor(1.2015761, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.3399957, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 18638\n",
+ "Discriminator Loss: tf.Tensor(1.3350122, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.2774816, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 18639\n",
+ "Discriminator Loss: tf.Tensor(1.0610956, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.3065903, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 18640\n",
+ "Discriminator Loss: tf.Tensor(0.8952324, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.13729341, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 18641\n",
+ "Discriminator Loss: tf.Tensor(1.1451521, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.15212, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 18642\n",
+ "Discriminator Loss: tf.Tensor(0.5818817, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.83214045, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 18643\n",
+ "Discriminator Loss: tf.Tensor(0.64900446, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.94392014, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 18644\n",
+ "Discriminator Loss: tf.Tensor(1.5393775, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.3403606, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 18645\n",
+ "Discriminator Loss: tf.Tensor(1.620848, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.39912346, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 18646\n",
+ "Discriminator Loss: tf.Tensor(0.9843455, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.4211394, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 18647\n",
+ "Discriminator Loss: tf.Tensor(0.8968885, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.8478542, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 18648\n",
+ "Discriminator Loss: tf.Tensor(1.0346987, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.7767865, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 18649\n",
+ "Discriminator Loss: tf.Tensor(0.62717736, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.880977, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 18650\n",
+ "Discriminator Loss: tf.Tensor(1.0245593, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.3248008, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 18651\n",
+ "Discriminator Loss: tf.Tensor(1.5640697, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.53384507, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 18652\n",
+ "Discriminator Loss: tf.Tensor(1.2405291, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.9979033, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 18653\n",
+ "Discriminator Loss: tf.Tensor(0.9955982, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.25442472, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 18654\n",
+ "Discriminator Loss: tf.Tensor(0.90521914, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.3056346, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 18655\n",
+ "Discriminator Loss: tf.Tensor(0.9561266, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.17204018, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 18656\n",
+ "Discriminator Loss: tf.Tensor(1.1052219, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.081874, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 18657\n",
+ "Discriminator Loss: tf.Tensor(1.2211328, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.13898836, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 18658\n",
+ "Discriminator Loss: tf.Tensor(1.1638463, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.5786046, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 18659\n",
+ "Discriminator Loss: tf.Tensor(1.3922429, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.35699415, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 18660\n",
+ "Discriminator Loss: tf.Tensor(1.0110786, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.94611675, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 18661\n",
+ "Discriminator Loss: tf.Tensor(0.71476746, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.43664685, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 18662\n",
+ "Discriminator Loss: tf.Tensor(1.2627547, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.4421014, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 18663\n",
+ "Discriminator Loss: tf.Tensor(1.7097834, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.52685183, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 18664\n",
+ "Discriminator Loss: tf.Tensor(0.9109715, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.1485963, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 18665\n",
+ "Discriminator Loss: tf.Tensor(1.0637453, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.10432973, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 18666\n",
+ "Discriminator Loss: tf.Tensor(0.98817384, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.5881711, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 18667\n",
+ "Discriminator Loss: tf.Tensor(0.7503298, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.3660191, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 18668\n",
+ "Discriminator Loss: tf.Tensor(1.2213478, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.694934, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 18669\n",
+ "Discriminator Loss: tf.Tensor(1.5562158, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.4999099, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 18670\n",
+ "Discriminator Loss: tf.Tensor(1.0731297, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.3284079, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 18671\n",
+ "Discriminator Loss: tf.Tensor(1.5363752, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.4579182, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 18672\n",
+ "Discriminator Loss: tf.Tensor(0.7999665, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.9565639, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 18673\n",
+ "Discriminator Loss: tf.Tensor(1.1292669, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.5576008, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 18674\n",
+ "Discriminator Loss: tf.Tensor(1.150084, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.910925, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 18675\n",
+ "Discriminator Loss: tf.Tensor(1.0018945, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.9996834, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 18676\n",
+ "Discriminator Loss: tf.Tensor(0.97703284, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.8203141, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 18677\n",
+ "Discriminator Loss: tf.Tensor(0.88404137, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.47276995, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 18678\n",
+ "Discriminator Loss: tf.Tensor(1.6084237, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.342372, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 18679\n",
+ "Discriminator Loss: tf.Tensor(1.0784818, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.07143934, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 18680\n",
+ "Discriminator Loss: tf.Tensor(0.8548273, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.1697828, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 18681\n",
+ "Discriminator Loss: tf.Tensor(1.2698755, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.15053089, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 18682\n",
+ "Discriminator Loss: tf.Tensor(1.1047536, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.2086538, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 18683\n",
+ "Discriminator Loss: tf.Tensor(1.0942212, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.28496784, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 18684\n",
+ "Discriminator Loss: tf.Tensor(1.1163403, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.0973668, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 18685\n",
+ "Discriminator Loss: tf.Tensor(0.7940776, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.49205133, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 18686\n",
+ "Discriminator Loss: tf.Tensor(1.1108303, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.3802191, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 18687\n",
+ "Discriminator Loss: tf.Tensor(1.3057761, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.27101824, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 18688\n",
+ "Discriminator Loss: tf.Tensor(1.1642895, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.2431961, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 18689\n",
+ "Discriminator Loss: tf.Tensor(0.973244, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.48460582, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 18690\n",
+ "Discriminator Loss: tf.Tensor(0.72567594, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.1484537, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 18691\n",
+ "Discriminator Loss: tf.Tensor(0.58105254, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.80950826, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 18692\n",
+ "Discriminator Loss: tf.Tensor(1.5420716, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.7867047, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 18693\n",
+ "Discriminator Loss: tf.Tensor(1.715544, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.6722079, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 18694\n",
+ "Discriminator Loss: tf.Tensor(1.3015589, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.6997598, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 18695\n",
+ "Discriminator Loss: tf.Tensor(0.8394418, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.45701298, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 18696\n",
+ "Discriminator Loss: tf.Tensor(1.4411232, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.8299347, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 18697\n",
+ "Discriminator Loss: tf.Tensor(1.162937, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.10743803, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 18698\n",
+ "Discriminator Loss: tf.Tensor(1.0270762, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.1234965, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 18699\n",
+ "Discriminator Loss: tf.Tensor(0.52673674, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.79371023, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 18700\n",
+ "Discriminator Loss: tf.Tensor(0.59860957, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.337597, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 18701\n",
+ "Discriminator Loss: tf.Tensor(1.0127199, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.071152, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 18702\n",
+ "Discriminator Loss: tf.Tensor(1.4801128, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.2815269, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 18703\n",
+ "Discriminator Loss: tf.Tensor(0.9850353, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.08073214, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 18704\n",
+ "Discriminator Loss: tf.Tensor(1.2502024, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.2663751, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 18705\n",
+ "Discriminator Loss: tf.Tensor(0.8425922, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.31209692, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 18706\n",
+ "Discriminator Loss: tf.Tensor(1.0176108, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.4699513, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 18707\n",
+ "Discriminator Loss: tf.Tensor(1.0192486, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.27967688, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 18708\n",
+ "Discriminator Loss: tf.Tensor(1.1076319, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.0951066, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 18709\n",
+ "Discriminator Loss: tf.Tensor(0.62399626, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.54472935, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 18710\n",
+ "Discriminator Loss: tf.Tensor(1.3990569, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.2015363, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 18711\n",
+ "Discriminator Loss: tf.Tensor(0.6352387, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.6773095, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 18712\n",
+ "Discriminator Loss: tf.Tensor(1.346425, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.269318, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 18713\n",
+ "Discriminator Loss: tf.Tensor(1.0392348, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.09867097, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 18714\n",
+ "Discriminator Loss: tf.Tensor(1.2443461, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.5009084, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 18715\n",
+ "Discriminator Loss: tf.Tensor(1.2416844, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.008680408, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 18716\n",
+ "Discriminator Loss: tf.Tensor(1.0266215, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.8333371, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 18717\n",
+ "Discriminator Loss: tf.Tensor(0.7333803, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.52068764, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 18718\n",
+ "Discriminator Loss: tf.Tensor(1.5107266, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.0569031, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 18719\n",
+ "Discriminator Loss: tf.Tensor(1.1006583, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.020944903, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 18720\n",
+ "Discriminator Loss: tf.Tensor(1.098402, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.8734506, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 18721\n",
+ "Discriminator Loss: tf.Tensor(0.74721193, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.9241612, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 18722\n",
+ "Discriminator Loss: tf.Tensor(0.9871478, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.44494286, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 18723\n",
+ "Discriminator Loss: tf.Tensor(1.6943841, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.811369, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 18724\n",
+ "Discriminator Loss: tf.Tensor(1.1670752, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.05324174, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 18725\n",
+ "Discriminator Loss: tf.Tensor(1.171674, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.009055, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 18726\n",
+ "Discriminator Loss: tf.Tensor(0.7731055, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.2698737, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 18727\n",
+ "Discriminator Loss: tf.Tensor(1.3110769, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.8350215, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 18728\n",
+ "Discriminator Loss: tf.Tensor(1.4228945, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.22200029, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 18729\n",
+ "Discriminator Loss: tf.Tensor(0.6768286, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.96770316, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 18730\n",
+ "Discriminator Loss: tf.Tensor(0.99802816, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.49048463, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 18731\n",
+ "Discriminator Loss: tf.Tensor(0.909528, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.4102836, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 18732\n",
+ "Discriminator Loss: tf.Tensor(1.0809549, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.32495612, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 18733\n",
+ "Discriminator Loss: tf.Tensor(1.6552485, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.1540325, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 18734\n",
+ "Discriminator Loss: tf.Tensor(1.3381386, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.23574899, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 18735\n",
+ "Discriminator Loss: tf.Tensor(0.749716, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.0310179, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 18736\n",
+ "Discriminator Loss: tf.Tensor(0.6736003, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.68513995, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 18737\n",
+ "Discriminator Loss: tf.Tensor(1.1494772, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.6708816, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 18738\n",
+ "Discriminator Loss: tf.Tensor(1.3877912, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.21123321, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 18739\n",
+ "Discriminator Loss: tf.Tensor(0.96188736, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.0895121, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 18740\n",
+ "Discriminator Loss: tf.Tensor(1.0496252, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.074159324, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 18741\n",
+ "Discriminator Loss: tf.Tensor(1.0781136, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.5115256, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 18742\n",
+ "Discriminator Loss: tf.Tensor(1.0399662, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.05310582, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 18743\n",
+ "Discriminator Loss: tf.Tensor(1.6303599, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.4553971, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 18744\n",
+ "Discriminator Loss: tf.Tensor(1.2514974, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.016464254, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 18745\n",
+ "Discriminator Loss: tf.Tensor(1.0099468, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.9513243, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 18746\n",
+ "Discriminator Loss: tf.Tensor(0.5708802, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.93080235, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 18747\n",
+ "Discriminator Loss: tf.Tensor(0.6102187, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.7927757, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 18748\n",
+ "Discriminator Loss: tf.Tensor(1.2283221, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.4566826, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 18749\n",
+ "Discriminator Loss: tf.Tensor(0.89680606, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.30893257, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 18750\n",
+ "Discriminator Loss: tf.Tensor(1.4633538, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.6694355, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 18751\n",
+ "Discriminator Loss: tf.Tensor(1.4936835, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.21530803, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 18752\n",
+ "Discriminator Loss: tf.Tensor(0.9384793, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.95243746, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 18753\n",
+ "Discriminator Loss: tf.Tensor(0.72337365, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.8028975, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 18754\n",
+ "Discriminator Loss: tf.Tensor(0.78745764, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.7559026, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 18755\n",
+ "Discriminator Loss: tf.Tensor(1.8256477, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.6626749, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 18756\n",
+ "Discriminator Loss: tf.Tensor(1.3590451, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.97421813, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 18757\n",
+ "Discriminator Loss: tf.Tensor(1.0250326, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.18844433, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 18758\n",
+ "Discriminator Loss: tf.Tensor(1.045036, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.2841233, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 18759\n",
+ "Discriminator Loss: tf.Tensor(1.4854344, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.38799036, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 18760\n",
+ "Discriminator Loss: tf.Tensor(1.0116981, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.0888511, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 18761\n",
+ "Discriminator Loss: tf.Tensor(0.7569982, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.58883464, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 18762\n",
+ "Discriminator Loss: tf.Tensor(0.4971217, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.9107329, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 18763\n",
+ "Discriminator Loss: tf.Tensor(1.3893286, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.7089409, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 18764\n",
+ "Discriminator Loss: tf.Tensor(1.6130515, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.468022, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 18765\n",
+ "Discriminator Loss: tf.Tensor(0.90999913, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.0926405, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 18766\n",
+ "Discriminator Loss: tf.Tensor(0.74675524, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.4498609, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 18767\n",
+ "Discriminator Loss: tf.Tensor(1.6568866, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.9971203, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 18768\n",
+ "Discriminator Loss: tf.Tensor(1.5602323, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.5205669, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 18769\n",
+ "Discriminator Loss: tf.Tensor(1.0353699, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.1262524, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 18770\n",
+ "Discriminator Loss: tf.Tensor(1.1740478, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.07061881, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 18771\n",
+ "Discriminator Loss: tf.Tensor(1.1058346, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.8060755, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 18772\n",
+ "Discriminator Loss: tf.Tensor(1.0154222, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.9430271, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 18773\n",
+ "Discriminator Loss: tf.Tensor(0.8387668, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.7152708, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 18774\n",
+ "Discriminator Loss: tf.Tensor(0.6342865, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.95085496, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 18775\n",
+ "Discriminator Loss: tf.Tensor(0.9233501, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.2849156, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 18776\n",
+ "Discriminator Loss: tf.Tensor(0.851019, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.23525007, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 18777\n",
+ "Discriminator Loss: tf.Tensor(1.7660813, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.1055176, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 18778\n",
+ "Discriminator Loss: tf.Tensor(1.3998371, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.014772837, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 18779\n",
+ "Discriminator Loss: tf.Tensor(1.15326, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.9161496, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 18780\n",
+ "Discriminator Loss: tf.Tensor(0.76219314, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.51664495, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 18781\n",
+ "Discriminator Loss: tf.Tensor(0.7699026, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.3724432, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 18782\n",
+ "Discriminator Loss: tf.Tensor(0.7281079, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.67670846, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 18783\n",
+ "Discriminator Loss: tf.Tensor(0.9710897, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.5348872, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 18784\n",
+ "Discriminator Loss: tf.Tensor(1.2926654, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.09062461, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 18785\n",
+ "Discriminator Loss: tf.Tensor(0.8708481, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.2324151, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 18786\n",
+ "Discriminator Loss: tf.Tensor(0.7232518, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.3491474, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 18787\n",
+ "Discriminator Loss: tf.Tensor(1.4778255, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.9512295, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 18788\n",
+ "Discriminator Loss: tf.Tensor(1.1535622, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.06400437, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 18789\n",
+ "Discriminator Loss: tf.Tensor(0.93256986, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.2625749, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 18790\n",
+ "Discriminator Loss: tf.Tensor(0.95730996, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.12283828, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 18791\n",
+ "Discriminator Loss: tf.Tensor(0.9815867, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.6950005, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 18792\n",
+ "Discriminator Loss: tf.Tensor(1.3118652, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.10816544, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 18793\n",
+ "Discriminator Loss: tf.Tensor(0.86751956, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.60410595, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 18794\n",
+ "Discriminator Loss: tf.Tensor(0.8562584, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.2546917, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 18795\n",
+ "Discriminator Loss: tf.Tensor(1.2399449, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.13496698, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 18796\n",
+ "Discriminator Loss: tf.Tensor(1.1755886, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.262175, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 18797\n",
+ "Discriminator Loss: tf.Tensor(1.5098647, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.33099568, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 18798\n",
+ "Discriminator Loss: tf.Tensor(0.7873422, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.90247554, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 18799\n",
+ "Discriminator Loss: tf.Tensor(0.5132217, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.76038903, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 18800\n",
+ "Discriminator Loss: tf.Tensor(1.2331009, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.2861264, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 18801\n",
+ "Discriminator Loss: tf.Tensor(1.1453273, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.149633, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 18802\n",
+ "Discriminator Loss: tf.Tensor(1.1459848, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.2938802, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 18803\n",
+ "Discriminator Loss: tf.Tensor(1.353286, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.28445935, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 18804\n",
+ "Discriminator Loss: tf.Tensor(0.91650414, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.1518381, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 18805\n",
+ "Discriminator Loss: tf.Tensor(0.9109242, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.3330268, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 18806\n",
+ "Discriminator Loss: tf.Tensor(1.156576, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.4559427, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 18807\n",
+ "Discriminator Loss: tf.Tensor(1.0232562, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.16676712, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 18808\n",
+ "Discriminator Loss: tf.Tensor(0.76421803, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.93737537, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 18809\n",
+ "Discriminator Loss: tf.Tensor(0.4010118, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.8703997, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 18810\n",
+ "Discriminator Loss: tf.Tensor(1.485221, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.0184793, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 18811\n",
+ "Discriminator Loss: tf.Tensor(1.6673716, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.5861379, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 18812\n",
+ "Discriminator Loss: tf.Tensor(0.7575415, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.9725463, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 18813\n",
+ "Discriminator Loss: tf.Tensor(0.714306, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.7183916, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 18814\n",
+ "Discriminator Loss: tf.Tensor(0.919101, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.543097, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 18815\n",
+ "Discriminator Loss: tf.Tensor(1.7399179, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.63631576, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 18816\n",
+ "Discriminator Loss: tf.Tensor(1.011403, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.0043002, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 18817\n",
+ "Discriminator Loss: tf.Tensor(0.6715407, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.73091316, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 18818\n",
+ "Discriminator Loss: tf.Tensor(1.5944543, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.7657548, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 18819\n",
+ "Discriminator Loss: tf.Tensor(1.070478, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.030240363, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 18820\n",
+ "Discriminator Loss: tf.Tensor(1.1306453, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.1084137, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 18821\n",
+ "Discriminator Loss: tf.Tensor(0.9795313, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.41442904, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 18822\n",
+ "Discriminator Loss: tf.Tensor(1.1425877, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.2539059, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 18823\n",
+ "Discriminator Loss: tf.Tensor(0.8770823, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.40298733, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 18824\n",
+ "Discriminator Loss: tf.Tensor(0.89073133, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.1516637, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 18825\n",
+ "Discriminator Loss: tf.Tensor(0.5951024, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.7174501, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 18826\n",
+ "Discriminator Loss: tf.Tensor(1.2874486, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.7516605, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 18827\n",
+ "Discriminator Loss: tf.Tensor(1.4034841, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.2520395, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 18828\n",
+ "Discriminator Loss: tf.Tensor(0.9043058, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.1640936, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 18829\n",
+ "Discriminator Loss: tf.Tensor(1.5011601, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.26795474, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 18830\n",
+ "Discriminator Loss: tf.Tensor(0.85508657, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.189415, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 18831\n",
+ "Discriminator Loss: tf.Tensor(1.0892566, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.036743548, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 18832\n",
+ "Discriminator Loss: tf.Tensor(0.9473572, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.3127639, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 18833\n",
+ "Discriminator Loss: tf.Tensor(0.8154009, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.3242053, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 18834\n",
+ "Discriminator Loss: tf.Tensor(1.1205755, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.4175282, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 18835\n",
+ "Discriminator Loss: tf.Tensor(0.963759, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.24594478, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 18836\n",
+ "Discriminator Loss: tf.Tensor(0.9655422, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.5945705, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 18837\n",
+ "Discriminator Loss: tf.Tensor(0.71244556, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.5587108, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 18838\n",
+ "Discriminator Loss: tf.Tensor(1.2002223, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.4089292, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 18839\n",
+ "Discriminator Loss: tf.Tensor(1.0795981, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.020232918, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 18840\n",
+ "Discriminator Loss: tf.Tensor(1.0510894, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.194572, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 18841\n",
+ "Discriminator Loss: tf.Tensor(0.80001754, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.49989507, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 18842\n",
+ "Discriminator Loss: tf.Tensor(1.4144387, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.8031926, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 18843\n",
+ "Discriminator Loss: tf.Tensor(1.041566, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.24871157, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 18844\n",
+ "Discriminator Loss: tf.Tensor(0.81378406, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.3742605, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 18845\n",
+ "Discriminator Loss: tf.Tensor(0.7830721, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.7788058, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 18846\n",
+ "Discriminator Loss: tf.Tensor(1.2949187, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.7356461, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 18847\n",
+ "Discriminator Loss: tf.Tensor(0.98450917, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.119722955, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 18848\n",
+ "Discriminator Loss: tf.Tensor(0.7752392, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.2884436, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 18849\n",
+ "Discriminator Loss: tf.Tensor(0.63489664, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.6079342, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 18850\n",
+ "Discriminator Loss: tf.Tensor(1.2059984, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.6470146, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 18851\n",
+ "Discriminator Loss: tf.Tensor(1.5513854, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.49260545, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 18852\n",
+ "Discriminator Loss: tf.Tensor(1.0578234, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.4511935, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 18853\n",
+ "Discriminator Loss: tf.Tensor(0.9694444, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.12962194, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 18854\n",
+ "Discriminator Loss: tf.Tensor(0.41685754, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.2878395, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 18855\n",
+ "Discriminator Loss: tf.Tensor(0.7128397, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.85425335, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 18856\n",
+ "Discriminator Loss: tf.Tensor(0.90648496, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.4265863, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 18857\n",
+ "Discriminator Loss: tf.Tensor(1.1113592, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.16867884, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 18858\n",
+ "Discriminator Loss: tf.Tensor(1.1634604, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.15496, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 18859\n",
+ "Discriminator Loss: tf.Tensor(1.4023817, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.015747687, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 18860\n",
+ "Discriminator Loss: tf.Tensor(1.3907139, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.7649894, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 18861\n",
+ "Discriminator Loss: tf.Tensor(1.285444, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.1084219, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 18862\n",
+ "Discriminator Loss: tf.Tensor(0.9002789, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.8965812, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 18863\n",
+ "Discriminator Loss: tf.Tensor(0.8217162, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.53699356, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 18864\n",
+ "Discriminator Loss: tf.Tensor(0.92555106, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.7024285, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 18865\n",
+ "Discriminator Loss: tf.Tensor(1.478162, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.2390691, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 18866\n",
+ "Discriminator Loss: tf.Tensor(0.9482385, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.0031897, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 18867\n",
+ "Discriminator Loss: tf.Tensor(0.9822209, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.38117453, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 18868\n",
+ "Discriminator Loss: tf.Tensor(0.8433673, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.322627, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 18869\n",
+ "Discriminator Loss: tf.Tensor(1.2377304, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.16117088, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 18870\n",
+ "Discriminator Loss: tf.Tensor(1.287734, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.5695562, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 18871\n",
+ "Discriminator Loss: tf.Tensor(1.3428978, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.1721791, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 18872\n",
+ "Discriminator Loss: tf.Tensor(0.8761098, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.9936261, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 18873\n",
+ "Discriminator Loss: tf.Tensor(0.8035654, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.7867989, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 18874\n",
+ "Discriminator Loss: tf.Tensor(0.8165712, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.201564, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 18875\n",
+ "Discriminator Loss: tf.Tensor(1.8232794, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.7647427, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 18876\n",
+ "Discriminator Loss: tf.Tensor(1.3055296, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.8700518, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 18877\n",
+ "Discriminator Loss: tf.Tensor(0.83832574, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.31266865, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 18878\n",
+ "Discriminator Loss: tf.Tensor(1.2520827, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.3902346, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 18879\n",
+ "Discriminator Loss: tf.Tensor(0.5519625, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.61783534, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 18880\n",
+ "Discriminator Loss: tf.Tensor(0.9737998, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.5514835, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 18881\n",
+ "Discriminator Loss: tf.Tensor(0.94600296, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.3544754, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 18882\n",
+ "Discriminator Loss: tf.Tensor(1.0473338, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.9405837, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 18883\n",
+ "Discriminator Loss: tf.Tensor(0.7534474, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.0502805, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 18884\n",
+ "Discriminator Loss: tf.Tensor(0.9429673, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.17908569, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 18885\n",
+ "Discriminator Loss: tf.Tensor(1.4019679, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.9880047, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 18886\n",
+ "Discriminator Loss: tf.Tensor(1.2813264, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.062822886, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 18887\n",
+ "Discriminator Loss: tf.Tensor(0.8077178, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.8447082, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 18888\n",
+ "Discriminator Loss: tf.Tensor(0.94257426, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.264434, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 18889\n",
+ "Discriminator Loss: tf.Tensor(1.5530349, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.38850102, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 18890\n",
+ "Discriminator Loss: tf.Tensor(0.9313776, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.96792096, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 18891\n",
+ "Discriminator Loss: tf.Tensor(0.70162296, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.33268377, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 18892\n",
+ "Discriminator Loss: tf.Tensor(1.470647, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.8457922, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 18893\n",
+ "Discriminator Loss: tf.Tensor(0.7664788, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.3847569, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 18894\n",
+ "Discriminator Loss: tf.Tensor(0.61378783, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.0065573, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 18895\n",
+ "Discriminator Loss: tf.Tensor(0.7381074, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.5254087, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 18896\n",
+ "Discriminator Loss: tf.Tensor(1.2066171, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.2661667, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 18897\n",
+ "Discriminator Loss: tf.Tensor(1.0594915, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.0026443228, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 18898\n",
+ "Discriminator Loss: tf.Tensor(1.5953038, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.7813677, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 18899\n",
+ "Discriminator Loss: tf.Tensor(1.284357, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.18452883, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 18900\n",
+ "Discriminator Loss: tf.Tensor(0.9300696, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.9651711, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 18901\n",
+ "Discriminator Loss: tf.Tensor(0.47484267, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.8092146, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 18902\n",
+ "Discriminator Loss: tf.Tensor(0.76387423, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.6555599, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 18903\n",
+ "Discriminator Loss: tf.Tensor(1.475871, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.2247289, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 18904\n",
+ "Discriminator Loss: tf.Tensor(0.79033196, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.6674332, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 18905\n",
+ "Discriminator Loss: tf.Tensor(0.9523597, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.0035977, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 18906\n",
+ "Discriminator Loss: tf.Tensor(1.3259399, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.21358149, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 18907\n",
+ "Discriminator Loss: tf.Tensor(1.3106551, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.9898561, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 18908\n",
+ "Discriminator Loss: tf.Tensor(1.3186759, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.041168798, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 18909\n",
+ "Discriminator Loss: tf.Tensor(0.9500773, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.9139983, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 18910\n",
+ "Discriminator Loss: tf.Tensor(0.6281259, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.90393734, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 18911\n",
+ "Discriminator Loss: tf.Tensor(1.056501, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.3531257, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 18912\n",
+ "Discriminator Loss: tf.Tensor(1.3523172, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.25690725, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 18913\n",
+ "Discriminator Loss: tf.Tensor(1.1923643, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.2753563, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 18914\n",
+ "Discriminator Loss: tf.Tensor(1.0793006, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.111200474, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 18915\n",
+ "Discriminator Loss: tf.Tensor(0.9740445, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.7650843, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 18916\n",
+ "Discriminator Loss: tf.Tensor(0.86294174, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.2721039, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 18917\n",
+ "Discriminator Loss: tf.Tensor(1.084648, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.018429846, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 18918\n",
+ "Discriminator Loss: tf.Tensor(1.512035, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.0821495, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 18919\n",
+ "Discriminator Loss: tf.Tensor(0.8654564, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.32699797, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 18920\n",
+ "Discriminator Loss: tf.Tensor(1.0974653, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.7900629, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 18921\n",
+ "Discriminator Loss: tf.Tensor(1.3745939, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.26873854, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 18922\n",
+ "Discriminator Loss: tf.Tensor(1.3214568, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.063145, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 18923\n",
+ "Discriminator Loss: tf.Tensor(0.7079502, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.4692795, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 18924\n",
+ "Discriminator Loss: tf.Tensor(1.4045238, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.4863877, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 18925\n",
+ "Discriminator Loss: tf.Tensor(0.9722295, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.08565018, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 18926\n",
+ "Discriminator Loss: tf.Tensor(1.0567625, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.0074406, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 18927\n",
+ "Discriminator Loss: tf.Tensor(0.7413174, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.7464567, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 18928\n",
+ "Discriminator Loss: tf.Tensor(1.1683666, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.8176807, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 18929\n",
+ "Discriminator Loss: tf.Tensor(1.1309958, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.03977127, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 18930\n",
+ "Discriminator Loss: tf.Tensor(0.9981349, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.3226653, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 18931\n",
+ "Discriminator Loss: tf.Tensor(1.1376104, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.11765029, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 18932\n",
+ "Discriminator Loss: tf.Tensor(1.0174214, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.6858267, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 18933\n",
+ "Discriminator Loss: tf.Tensor(1.0487304, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.026059367, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 18934\n",
+ "Discriminator Loss: tf.Tensor(0.78695464, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.5033253, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 18935\n",
+ "Discriminator Loss: tf.Tensor(1.4310702, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.31571865, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 18936\n",
+ "Discriminator Loss: tf.Tensor(0.98894733, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.006494, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 18937\n",
+ "Discriminator Loss: tf.Tensor(0.6257998, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.60342145, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 18938\n",
+ "Discriminator Loss: tf.Tensor(1.55331, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.897471, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 18939\n",
+ "Discriminator Loss: tf.Tensor(0.9601216, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.06679997, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 18940\n",
+ "Discriminator Loss: tf.Tensor(1.0814047, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.0424182, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 18941\n",
+ "Discriminator Loss: tf.Tensor(0.3992094, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.75805926, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 18942\n",
+ "Discriminator Loss: tf.Tensor(1.35039, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.5416123, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 18943\n",
+ "Discriminator Loss: tf.Tensor(1.0647814, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.027676702, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 18944\n",
+ "Discriminator Loss: tf.Tensor(1.0430341, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.0920751, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 18945\n",
+ "Discriminator Loss: tf.Tensor(0.4520741, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.1161934, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 18946\n",
+ "Discriminator Loss: tf.Tensor(0.8438562, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.31585255, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 18947\n",
+ "Discriminator Loss: tf.Tensor(1.7870991, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.2934887, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 18948\n",
+ "Discriminator Loss: tf.Tensor(1.3534946, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.13029984, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 18949\n",
+ "Discriminator Loss: tf.Tensor(0.968771, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.9170123, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 18950\n",
+ "Discriminator Loss: tf.Tensor(0.8523074, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.61085767, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 18951\n",
+ "Discriminator Loss: tf.Tensor(1.1874745, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.6605622, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 18952\n",
+ "Discriminator Loss: tf.Tensor(1.3752035, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.113874994, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 18953\n",
+ "Discriminator Loss: tf.Tensor(1.1137403, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.6818711, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 18954\n",
+ "Discriminator Loss: tf.Tensor(0.9847599, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.5114466, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 18955\n",
+ "Discriminator Loss: tf.Tensor(1.5012991, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.29784346, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 18956\n",
+ "Discriminator Loss: tf.Tensor(1.3337461, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.2557205, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 18957\n",
+ "Discriminator Loss: tf.Tensor(1.2842509, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.20662475, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 18958\n",
+ "Discriminator Loss: tf.Tensor(0.8558569, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.1651473, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 18959\n",
+ "Discriminator Loss: tf.Tensor(1.1115392, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.100110374, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 18960\n",
+ "Discriminator Loss: tf.Tensor(1.6383559, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.87792844, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 18961\n",
+ "Discriminator Loss: tf.Tensor(0.9135504, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.4439676, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 18962\n",
+ "Discriminator Loss: tf.Tensor(0.9926872, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.614196, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 18963\n",
+ "Discriminator Loss: tf.Tensor(1.8074366, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.7774169, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 18964\n",
+ "Discriminator Loss: tf.Tensor(1.1013231, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.91504675, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 18965\n",
+ "Discriminator Loss: tf.Tensor(1.150821, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.5980959, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 18966\n",
+ "Discriminator Loss: tf.Tensor(0.64745486, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.2539862, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 18967\n",
+ "Discriminator Loss: tf.Tensor(0.8150943, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.41987607, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 18968\n",
+ "Discriminator Loss: tf.Tensor(1.2050521, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.4623209, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 18969\n",
+ "Discriminator Loss: tf.Tensor(0.83193517, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.30740568, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 18970\n",
+ "Discriminator Loss: tf.Tensor(1.2153316, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.4298296, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 18971\n",
+ "Discriminator Loss: tf.Tensor(0.81869704, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.329759, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 18972\n",
+ "Discriminator Loss: tf.Tensor(1.3019334, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.4564165, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 18973\n",
+ "Discriminator Loss: tf.Tensor(1.236706, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.21506517, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 18974\n",
+ "Discriminator Loss: tf.Tensor(0.8635576, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.94891924, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 18975\n",
+ "Discriminator Loss: tf.Tensor(0.94052726, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.5504847, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 18976\n",
+ "Discriminator Loss: tf.Tensor(1.0566651, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.7035666, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 18977\n",
+ "Discriminator Loss: tf.Tensor(0.9191958, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.13498606, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 18978\n",
+ "Discriminator Loss: tf.Tensor(0.798069, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.1026722, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 18979\n",
+ "Discriminator Loss: tf.Tensor(1.1264356, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.52037853, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 18980\n",
+ "Discriminator Loss: tf.Tensor(1.0297196, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.2561651, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 18981\n",
+ "Discriminator Loss: tf.Tensor(1.1342838, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.5215408, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 18982\n",
+ "Discriminator Loss: tf.Tensor(1.0125384, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.5781164, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 18983\n",
+ "Discriminator Loss: tf.Tensor(1.3225883, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.26626712, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 18984\n",
+ "Discriminator Loss: tf.Tensor(1.0479344, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.0045785, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 18985\n",
+ "Discriminator Loss: tf.Tensor(0.75628847, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.5973547, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 18986\n",
+ "Discriminator Loss: tf.Tensor(1.0027969, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.8033212, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 18987\n",
+ "Discriminator Loss: tf.Tensor(1.889599, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.74267226, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 18988\n",
+ "Discriminator Loss: tf.Tensor(0.8550923, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.8287084, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 18989\n",
+ "Discriminator Loss: tf.Tensor(0.71017087, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.256064, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 18990\n",
+ "Discriminator Loss: tf.Tensor(1.0131273, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.11974716, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 18991\n",
+ "Discriminator Loss: tf.Tensor(0.776705, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.2616005, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 18992\n",
+ "Discriminator Loss: tf.Tensor(0.88711363, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.4224801, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 18993\n",
+ "Discriminator Loss: tf.Tensor(1.3098044, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.5322398, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 18994\n",
+ "Discriminator Loss: tf.Tensor(1.0790623, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.075623445, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 18995\n",
+ "Discriminator Loss: tf.Tensor(1.0146029, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.8047469, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 18996\n",
+ "Discriminator Loss: tf.Tensor(1.3244714, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.6689371, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 18997\n",
+ "Discriminator Loss: tf.Tensor(1.2092464, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.14218497, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 18998\n",
+ "Discriminator Loss: tf.Tensor(0.85928607, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.99594164, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 18999\n",
+ "Discriminator Loss: tf.Tensor(0.9524558, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.734088, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 19000\n",
+ "Discriminator Loss: tf.Tensor(0.67850184, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.823026, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 19001\n",
+ "Discriminator Loss: tf.Tensor(1.2748861, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.9188312, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 19002\n",
+ "Discriminator Loss: tf.Tensor(1.0408535, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.01935467, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 19003\n",
+ "Discriminator Loss: tf.Tensor(0.9530153, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.1612377, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 19004\n",
+ "Discriminator Loss: tf.Tensor(1.0030853, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.2708634, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 19005\n",
+ "Discriminator Loss: tf.Tensor(1.0525742, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.4270602, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 19006\n",
+ "Discriminator Loss: tf.Tensor(1.2009528, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.15747374, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 19007\n",
+ "Discriminator Loss: tf.Tensor(1.1080269, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.1840234, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 19008\n",
+ "Discriminator Loss: tf.Tensor(1.0583562, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.14310363, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 19009\n",
+ "Discriminator Loss: tf.Tensor(1.3909286, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.0740142, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 19010\n",
+ "Discriminator Loss: tf.Tensor(1.0054612, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.0750227, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 19011\n",
+ "Discriminator Loss: tf.Tensor(0.8642609, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.34812272, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 19012\n",
+ "Discriminator Loss: tf.Tensor(1.7014755, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.8842525, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 19013\n",
+ "Discriminator Loss: tf.Tensor(0.98080623, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.24102934, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 19014\n",
+ "Discriminator Loss: tf.Tensor(0.58490837, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.176279, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 19015\n",
+ "Discriminator Loss: tf.Tensor(0.48807067, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.790194, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 19016\n",
+ "Discriminator Loss: tf.Tensor(1.4326179, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.0083, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 19017\n",
+ "Discriminator Loss: tf.Tensor(1.1162195, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.02607272, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 19018\n",
+ "Discriminator Loss: tf.Tensor(1.1673863, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.93235224, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 19019\n",
+ "Discriminator Loss: tf.Tensor(0.6558768, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.7244131, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 19020\n",
+ "Discriminator Loss: tf.Tensor(0.9656099, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.7399435, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 19021\n",
+ "Discriminator Loss: tf.Tensor(1.3622776, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.13734844, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 19022\n",
+ "Discriminator Loss: tf.Tensor(1.2657509, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.2973708, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 19023\n",
+ "Discriminator Loss: tf.Tensor(1.336129, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.20065369, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 19024\n",
+ "Discriminator Loss: tf.Tensor(0.7267426, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.90003604, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 19025\n",
+ "Discriminator Loss: tf.Tensor(0.80260974, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.2236234, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 19026\n",
+ "Discriminator Loss: tf.Tensor(1.09502, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.2777923, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 19027\n",
+ "Discriminator Loss: tf.Tensor(1.1454134, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.3566135, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 19028\n",
+ "Discriminator Loss: tf.Tensor(0.8336438, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.3735586, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 19029\n",
+ "Discriminator Loss: tf.Tensor(1.2199249, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.5091685, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 19030\n",
+ "Discriminator Loss: tf.Tensor(1.1038977, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.100744486, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 19031\n",
+ "Discriminator Loss: tf.Tensor(0.9007499, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.9824791, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 19032\n",
+ "Discriminator Loss: tf.Tensor(1.1418906, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.29694006, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 19033\n",
+ "Discriminator Loss: tf.Tensor(1.3006316, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.8237876, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 19034\n",
+ "Discriminator Loss: tf.Tensor(1.358816, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.080098204, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 19035\n",
+ "Discriminator Loss: tf.Tensor(0.95111364, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.8425067, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 19036\n",
+ "Discriminator Loss: tf.Tensor(0.618574, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.1212752, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 19037\n",
+ "Discriminator Loss: tf.Tensor(1.2469325, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.00048122802, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 19038\n",
+ "Discriminator Loss: tf.Tensor(1.1960056, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.1006652, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 19039\n",
+ "Discriminator Loss: tf.Tensor(1.1380844, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.1584714, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 19040\n",
+ "Discriminator Loss: tf.Tensor(0.977955, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.3663117, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 19041\n",
+ "Discriminator Loss: tf.Tensor(1.6394054, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.59899694, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 19042\n",
+ "Discriminator Loss: tf.Tensor(1.4179696, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.85948926, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 19043\n",
+ "Discriminator Loss: tf.Tensor(0.60582364, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.78113824, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 19044\n",
+ "Discriminator Loss: tf.Tensor(1.0825402, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.2454978, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 19045\n",
+ "Discriminator Loss: tf.Tensor(0.97386754, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.07279541, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 19046\n",
+ "Discriminator Loss: tf.Tensor(1.1890943, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.4725752, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 19047\n",
+ "Discriminator Loss: tf.Tensor(0.9432737, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.23511423, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 19048\n",
+ "Discriminator Loss: tf.Tensor(1.1582026, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.994669, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 19049\n",
+ "Discriminator Loss: tf.Tensor(1.1873198, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.011521608, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 19050\n",
+ "Discriminator Loss: tf.Tensor(0.88743913, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.3328575, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 19051\n",
+ "Discriminator Loss: tf.Tensor(0.95042336, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.60265416, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 19052\n",
+ "Discriminator Loss: tf.Tensor(0.9638276, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.1865268, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 19053\n",
+ "Discriminator Loss: tf.Tensor(1.2134384, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.10112228, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 19054\n",
+ "Discriminator Loss: tf.Tensor(0.7988267, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.1150705, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 19055\n",
+ "Discriminator Loss: tf.Tensor(0.9469151, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.47396865, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 19056\n",
+ "Discriminator Loss: tf.Tensor(1.1326982, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.6595448, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 19057\n",
+ "Discriminator Loss: tf.Tensor(0.69115806, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.3693579, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 19058\n",
+ "Discriminator Loss: tf.Tensor(0.81726944, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.1541805, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 19059\n",
+ "Discriminator Loss: tf.Tensor(0.8826444, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.3021398, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 19060\n",
+ "Discriminator Loss: tf.Tensor(1.7511606, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.9083558, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 19061\n",
+ "Discriminator Loss: tf.Tensor(0.883004, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.14976242, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 19062\n",
+ "Discriminator Loss: tf.Tensor(1.0981563, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.0114282, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 19063\n",
+ "Discriminator Loss: tf.Tensor(0.7696847, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.43394455, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 19064\n",
+ "Discriminator Loss: tf.Tensor(1.5886495, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.7513291, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 19065\n",
+ "Discriminator Loss: tf.Tensor(1.1672189, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.09913665, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 19066\n",
+ "Discriminator Loss: tf.Tensor(1.211436, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.1514522, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 19067\n",
+ "Discriminator Loss: tf.Tensor(1.3655508, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.14845972, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 19068\n",
+ "Discriminator Loss: tf.Tensor(1.0950922, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.1415595, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 19069\n",
+ "Discriminator Loss: tf.Tensor(0.70805866, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.48728457, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 19070\n",
+ "Discriminator Loss: tf.Tensor(0.9079342, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.6311083, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 19071\n",
+ "Discriminator Loss: tf.Tensor(1.2360833, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.357383, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 19072\n",
+ "Discriminator Loss: tf.Tensor(0.98276854, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.69999033, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 19073\n",
+ "Discriminator Loss: tf.Tensor(1.151998, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.3833917, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 19074\n",
+ "Discriminator Loss: tf.Tensor(1.1798701, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.02429591, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 19075\n",
+ "Discriminator Loss: tf.Tensor(1.153509, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.3507204, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 19076\n",
+ "Discriminator Loss: tf.Tensor(0.8919313, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.38725904, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 19077\n",
+ "Discriminator Loss: tf.Tensor(1.606993, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.8134699, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 19078\n",
+ "Discriminator Loss: tf.Tensor(1.0818446, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.036824796, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 19079\n",
+ "Discriminator Loss: tf.Tensor(0.7932599, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.2429892, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 19080\n",
+ "Discriminator Loss: tf.Tensor(1.129777, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.05781019, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 19081\n",
+ "Discriminator Loss: tf.Tensor(0.89136547, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.6879133, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 19082\n",
+ "Discriminator Loss: tf.Tensor(0.7376704, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.3807026, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 19083\n",
+ "Discriminator Loss: tf.Tensor(1.0369954, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.4813776, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 19084\n",
+ "Discriminator Loss: tf.Tensor(1.6284662, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.59191567, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 19085\n",
+ "Discriminator Loss: tf.Tensor(0.8289424, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.2529763, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 19086\n",
+ "Discriminator Loss: tf.Tensor(0.9432414, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.24016191, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 19087\n",
+ "Discriminator Loss: tf.Tensor(0.68588984, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.1186851, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 19088\n",
+ "Discriminator Loss: tf.Tensor(0.8381321, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.46655956, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 19089\n",
+ "Discriminator Loss: tf.Tensor(1.0643696, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.83156747, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 19090\n",
+ "Discriminator Loss: tf.Tensor(0.8529318, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.5343334, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 19091\n",
+ "Discriminator Loss: tf.Tensor(1.6025804, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.1571314, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 19092\n",
+ "Discriminator Loss: tf.Tensor(1.7059214, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.46028158, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 19093\n",
+ "Discriminator Loss: tf.Tensor(1.0842702, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.50641847, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 19094\n",
+ "Discriminator Loss: tf.Tensor(0.7728251, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.84297705, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 19095\n",
+ "Discriminator Loss: tf.Tensor(1.1948936, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.67411345, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 19096\n",
+ "Discriminator Loss: tf.Tensor(0.5828538, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.82364494, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 19097\n",
+ "Discriminator Loss: tf.Tensor(1.4937706, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.2025805, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 19098\n",
+ "Discriminator Loss: tf.Tensor(1.417154, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.13151468, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 19099\n",
+ "Discriminator Loss: tf.Tensor(0.95843387, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.5688372, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 19100\n",
+ "Discriminator Loss: tf.Tensor(1.0223247, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.5460078, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 19101\n",
+ "Discriminator Loss: tf.Tensor(1.3309857, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.28692162, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 19102\n",
+ "Discriminator Loss: tf.Tensor(0.824507, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.353702, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 19103\n",
+ "Discriminator Loss: tf.Tensor(1.2655556, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.19111632, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 19104\n",
+ "Discriminator Loss: tf.Tensor(0.6444706, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.2414128, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 19105\n",
+ "Discriminator Loss: tf.Tensor(0.95937055, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.40625778, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 19106\n",
+ "Discriminator Loss: tf.Tensor(1.180715, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.9946286, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 19107\n",
+ "Discriminator Loss: tf.Tensor(0.91237414, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.5898485, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 19108\n",
+ "Discriminator Loss: tf.Tensor(0.92445004, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.7365847, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 19109\n",
+ "Discriminator Loss: tf.Tensor(1.0507808, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.023022572, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 19110\n",
+ "Discriminator Loss: tf.Tensor(1.0630474, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.4234191, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 19111\n",
+ "Discriminator Loss: tf.Tensor(1.4217381, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.25709, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 19112\n",
+ "Discriminator Loss: tf.Tensor(0.9595509, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.0349706, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 19113\n",
+ "Discriminator Loss: tf.Tensor(0.9126449, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.3133341, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 19114\n",
+ "Discriminator Loss: tf.Tensor(1.0611708, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.6607628, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 19115\n",
+ "Discriminator Loss: tf.Tensor(1.6168143, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.5187292, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 19116\n",
+ "Discriminator Loss: tf.Tensor(1.1356031, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.62139064, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 19117\n",
+ "Discriminator Loss: tf.Tensor(0.88102514, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.90577096, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 19118\n",
+ "Discriminator Loss: tf.Tensor(0.82864183, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.8074541, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 19119\n",
+ "Discriminator Loss: tf.Tensor(1.0270636, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.5587758, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 19120\n",
+ "Discriminator Loss: tf.Tensor(1.0290016, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.16171806, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 19121\n",
+ "Discriminator Loss: tf.Tensor(0.9831445, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.5792083, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 19122\n",
+ "Discriminator Loss: tf.Tensor(1.3261392, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.046389163, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 19123\n",
+ "Discriminator Loss: tf.Tensor(0.68677455, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.99576646, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 19124\n",
+ "Discriminator Loss: tf.Tensor(0.5410191, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.62476903, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 19125\n",
+ "Discriminator Loss: tf.Tensor(1.671788, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.9487143, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 19126\n",
+ "Discriminator Loss: tf.Tensor(0.9249866, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.124471806, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 19127\n",
+ "Discriminator Loss: tf.Tensor(1.451956, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.8959097, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 19128\n",
+ "Discriminator Loss: tf.Tensor(0.7557246, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.83771557, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 19129\n",
+ "Discriminator Loss: tf.Tensor(1.0006168, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.7961192, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 19130\n",
+ "Discriminator Loss: tf.Tensor(1.0041841, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.0080379, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 19131\n",
+ "Discriminator Loss: tf.Tensor(0.81031287, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.6421147, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 19132\n",
+ "Discriminator Loss: tf.Tensor(1.6664639, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.1887186, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 19133\n",
+ "Discriminator Loss: tf.Tensor(1.472099, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.38773742, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 19134\n",
+ "Discriminator Loss: tf.Tensor(0.84856874, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.84373397, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 19135\n",
+ "Discriminator Loss: tf.Tensor(0.6280763, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.82239324, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 19136\n",
+ "Discriminator Loss: tf.Tensor(0.6110778, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.7922001, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 19137\n",
+ "Discriminator Loss: tf.Tensor(1.1533219, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.16802388, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 19138\n",
+ "Discriminator Loss: tf.Tensor(1.0911599, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.4986137, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 19139\n",
+ "Discriminator Loss: tf.Tensor(1.2697272, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.22485805, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 19140\n",
+ "Discriminator Loss: tf.Tensor(1.2750555, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.1507438, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 19141\n",
+ "Discriminator Loss: tf.Tensor(1.0403435, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.056525555, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 19142\n",
+ "Discriminator Loss: tf.Tensor(1.2641987, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.3772255, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 19143\n",
+ "Discriminator Loss: tf.Tensor(1.3212509, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.0621338, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 19144\n",
+ "Discriminator Loss: tf.Tensor(1.0112283, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.1266923, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 19145\n",
+ "Discriminator Loss: tf.Tensor(0.5354038, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.65805966, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 19146\n",
+ "Discriminator Loss: tf.Tensor(1.203792, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.9212047, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 19147\n",
+ "Discriminator Loss: tf.Tensor(1.2253056, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.05331846, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 19148\n",
+ "Discriminator Loss: tf.Tensor(1.2931633, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.6718525, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 19149\n",
+ "Discriminator Loss: tf.Tensor(0.8718964, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.0166496, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 19150\n",
+ "Discriminator Loss: tf.Tensor(0.410973, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.8195117, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 19151\n",
+ "Discriminator Loss: tf.Tensor(1.445765, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.1757917, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 19152\n",
+ "Discriminator Loss: tf.Tensor(1.5101597, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.40016174, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 19153\n",
+ "Discriminator Loss: tf.Tensor(1.2654352, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.1248075, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 19154\n",
+ "Discriminator Loss: tf.Tensor(0.7751421, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.48976484, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 19155\n",
+ "Discriminator Loss: tf.Tensor(1.1665426, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.5021816, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 19156\n",
+ "Discriminator Loss: tf.Tensor(1.5816864, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.47476843, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 19157\n",
+ "Discriminator Loss: tf.Tensor(1.1753879, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.6623074, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 19158\n",
+ "Discriminator Loss: tf.Tensor(0.7257076, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.78002506, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 19159\n",
+ "Discriminator Loss: tf.Tensor(0.69185483, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.6669092, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 19160\n",
+ "Discriminator Loss: tf.Tensor(1.1171174, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.5705637, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 19161\n",
+ "Discriminator Loss: tf.Tensor(1.140897, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.13969915, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 19162\n",
+ "Discriminator Loss: tf.Tensor(0.8503014, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.7103937, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 19163\n",
+ "Discriminator Loss: tf.Tensor(1.142458, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.2290453, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 19164\n",
+ "Discriminator Loss: tf.Tensor(1.3261161, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.28765926, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 19165\n",
+ "Discriminator Loss: tf.Tensor(1.1413903, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.239931, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 19166\n",
+ "Discriminator Loss: tf.Tensor(1.2629297, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.12616314, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 19167\n",
+ "Discriminator Loss: tf.Tensor(1.1847031, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.67039424, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 19168\n",
+ "Discriminator Loss: tf.Tensor(0.9427337, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.3809639, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 19169\n",
+ "Discriminator Loss: tf.Tensor(1.1472337, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.04059429, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 19170\n",
+ "Discriminator Loss: tf.Tensor(0.81239027, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.6584736, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 19171\n",
+ "Discriminator Loss: tf.Tensor(1.2951496, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.22386795, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 19172\n",
+ "Discriminator Loss: tf.Tensor(1.0154965, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.3605319, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 19173\n",
+ "Discriminator Loss: tf.Tensor(1.3505207, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.22725748, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 19174\n",
+ "Discriminator Loss: tf.Tensor(0.6797466, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.101809, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 19175\n",
+ "Discriminator Loss: tf.Tensor(0.61395556, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.46688983, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 19176\n",
+ "Discriminator Loss: tf.Tensor(1.4201921, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.0027616, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 19177\n",
+ "Discriminator Loss: tf.Tensor(1.1826988, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.027908191, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 19178\n",
+ "Discriminator Loss: tf.Tensor(0.6816926, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.283574, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 19179\n",
+ "Discriminator Loss: tf.Tensor(0.9988359, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.1103513, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 19180\n",
+ "Discriminator Loss: tf.Tensor(1.1289517, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.5514712, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 19181\n",
+ "Discriminator Loss: tf.Tensor(0.6585863, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.38663015, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 19182\n",
+ "Discriminator Loss: tf.Tensor(1.273622, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.3033867, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 19183\n",
+ "Discriminator Loss: tf.Tensor(0.8187561, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.46848062, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 19184\n",
+ "Discriminator Loss: tf.Tensor(1.0200064, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.2258657, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 19185\n",
+ "Discriminator Loss: tf.Tensor(0.67922884, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.41314545, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 19186\n",
+ "Discriminator Loss: tf.Tensor(1.0409353, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.4240433, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 19187\n",
+ "Discriminator Loss: tf.Tensor(0.9723326, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.18312627, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 19188\n",
+ "Discriminator Loss: tf.Tensor(1.0610087, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.4641551, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 19189\n",
+ "Discriminator Loss: tf.Tensor(0.7380675, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.44971296, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 19190\n",
+ "Discriminator Loss: tf.Tensor(0.59034216, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.1961805, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 19191\n",
+ "Discriminator Loss: tf.Tensor(0.5542508, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.64487594, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 19192\n",
+ "Discriminator Loss: tf.Tensor(1.8964117, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.4779856, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 19193\n",
+ "Discriminator Loss: tf.Tensor(0.9543046, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.20975333, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 19194\n",
+ "Discriminator Loss: tf.Tensor(0.8979809, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.4654592, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 19195\n",
+ "Discriminator Loss: tf.Tensor(0.82175756, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.3487922, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 19196\n",
+ "Discriminator Loss: tf.Tensor(1.1635973, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.6552254, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 19197\n",
+ "Discriminator Loss: tf.Tensor(0.764039, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.41605556, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 19198\n",
+ "Discriminator Loss: tf.Tensor(0.8417692, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.4411036, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 19199\n",
+ "Discriminator Loss: tf.Tensor(0.63474655, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.5800882, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 19200\n",
+ "Discriminator Loss: tf.Tensor(1.1208287, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.8667549, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 19201\n",
+ "Discriminator Loss: tf.Tensor(0.740702, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.6738686, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 19202\n",
+ "Discriminator Loss: tf.Tensor(1.1550483, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.9151179, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 19203\n",
+ "Discriminator Loss: tf.Tensor(1.1661861, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.06289599, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 19204\n",
+ "Discriminator Loss: tf.Tensor(1.0153356, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.1870815, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 19205\n",
+ "Discriminator Loss: tf.Tensor(0.60612565, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.6671125, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 19206\n",
+ "Discriminator Loss: tf.Tensor(1.5384166, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.2532037, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 19207\n",
+ "Discriminator Loss: tf.Tensor(1.3156803, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.18704735, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 19208\n",
+ "Discriminator Loss: tf.Tensor(1.1412153, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.2639526, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 19209\n",
+ "Discriminator Loss: tf.Tensor(1.4168328, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.09598475, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 19210\n",
+ "Discriminator Loss: tf.Tensor(0.8084277, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.0300618, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 19211\n",
+ "Discriminator Loss: tf.Tensor(1.047586, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.0034791778, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 19212\n",
+ "Discriminator Loss: tf.Tensor(1.0825467, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.4321004, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 19213\n",
+ "Discriminator Loss: tf.Tensor(0.713009, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.49266216, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 19214\n",
+ "Discriminator Loss: tf.Tensor(0.89318347, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.3695655, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 19215\n",
+ "Discriminator Loss: tf.Tensor(1.1085963, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.07145093, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 19216\n",
+ "Discriminator Loss: tf.Tensor(0.74776626, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.2292781, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 19217\n",
+ "Discriminator Loss: tf.Tensor(1.0465348, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.016653508, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 19218\n",
+ "Discriminator Loss: tf.Tensor(0.9045601, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.1099358, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 19219\n",
+ "Discriminator Loss: tf.Tensor(0.8220739, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.37519082, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 19220\n",
+ "Discriminator Loss: tf.Tensor(1.1397076, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.6319278, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 19221\n",
+ "Discriminator Loss: tf.Tensor(1.0948802, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.009990503, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 19222\n",
+ "Discriminator Loss: tf.Tensor(0.9358656, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.060764, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 19223\n",
+ "Discriminator Loss: tf.Tensor(0.33570167, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.7520279, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 19224\n",
+ "Discriminator Loss: tf.Tensor(1.4936371, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.0646892, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 19225\n",
+ "Discriminator Loss: tf.Tensor(1.2825389, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.12831326, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 19226\n",
+ "Discriminator Loss: tf.Tensor(0.83634526, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.2921501, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 19227\n",
+ "Discriminator Loss: tf.Tensor(1.0664895, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.084232785, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 19228\n",
+ "Discriminator Loss: tf.Tensor(0.6883336, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.7054081, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 19229\n",
+ "Discriminator Loss: tf.Tensor(0.6830757, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.529486, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 19230\n",
+ "Discriminator Loss: tf.Tensor(1.164394, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.3390404, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 19231\n",
+ "Discriminator Loss: tf.Tensor(1.1851417, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.13821353, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 19232\n",
+ "Discriminator Loss: tf.Tensor(0.7630686, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.0416459, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 19233\n",
+ "Discriminator Loss: tf.Tensor(0.89617145, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.9603302, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 19234\n",
+ "Discriminator Loss: tf.Tensor(1.4642413, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.41366926, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 19235\n",
+ "Discriminator Loss: tf.Tensor(1.0142708, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.65878046, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 19236\n",
+ "Discriminator Loss: tf.Tensor(0.8670715, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.1074084, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 19237\n",
+ "Discriminator Loss: tf.Tensor(0.6350013, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.989028, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 19238\n",
+ "Discriminator Loss: tf.Tensor(0.99319303, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.2810414, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 19239\n",
+ "Discriminator Loss: tf.Tensor(1.5307016, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.8267435, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 19240\n",
+ "Discriminator Loss: tf.Tensor(1.6781865, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.5481737, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 19241\n",
+ "Discriminator Loss: tf.Tensor(0.9005872, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.84091854, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 19242\n",
+ "Discriminator Loss: tf.Tensor(0.38595206, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.0628133, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 19243\n",
+ "Discriminator Loss: tf.Tensor(0.7333244, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.8054414, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 19244\n",
+ "Discriminator Loss: tf.Tensor(1.625079, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.1966147, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 19245\n",
+ "Discriminator Loss: tf.Tensor(1.3678362, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.1197261, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 19246\n",
+ "Discriminator Loss: tf.Tensor(1.213443, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.55498064, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 19247\n",
+ "Discriminator Loss: tf.Tensor(1.2053372, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.76839894, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 19248\n",
+ "Discriminator Loss: tf.Tensor(0.8246068, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.732591, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 19249\n",
+ "Discriminator Loss: tf.Tensor(0.48996973, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.236689, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 19250\n",
+ "Discriminator Loss: tf.Tensor(1.5699964, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.089788295, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 19251\n",
+ "Discriminator Loss: tf.Tensor(1.7893536, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.7793169, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 19252\n",
+ "Discriminator Loss: tf.Tensor(1.4277222, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.23160304, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 19253\n",
+ "Discriminator Loss: tf.Tensor(1.061454, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.55409944, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 19254\n",
+ "Discriminator Loss: tf.Tensor(0.8659146, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.8384302, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 19255\n",
+ "Discriminator Loss: tf.Tensor(1.1327336, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.010425, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 19256\n",
+ "Discriminator Loss: tf.Tensor(1.109951, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.00447106, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 19257\n",
+ "Discriminator Loss: tf.Tensor(1.8599246, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.0259593, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 19258\n",
+ "Discriminator Loss: tf.Tensor(1.0735195, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.083729185, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 19259\n",
+ "Discriminator Loss: tf.Tensor(0.9718002, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.8547389, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 19260\n",
+ "Discriminator Loss: tf.Tensor(0.82911694, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.5511118, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 19261\n",
+ "Discriminator Loss: tf.Tensor(0.7746501, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.1888348, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 19262\n",
+ "Discriminator Loss: tf.Tensor(0.6182251, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.9631007, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 19263\n",
+ "Discriminator Loss: tf.Tensor(1.2302647, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.072459824, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 19264\n",
+ "Discriminator Loss: tf.Tensor(1.4266398, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.8826513, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 19265\n",
+ "Discriminator Loss: tf.Tensor(1.3651564, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.010549744, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 19266\n",
+ "Discriminator Loss: tf.Tensor(0.91132796, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.6738102, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 19267\n",
+ "Discriminator Loss: tf.Tensor(0.9539629, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.8329465, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 19268\n",
+ "Discriminator Loss: tf.Tensor(0.91023785, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.89219016, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 19269\n",
+ "Discriminator Loss: tf.Tensor(1.1168761, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.0700194, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 19270\n",
+ "Discriminator Loss: tf.Tensor(1.4802103, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.31562576, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 19271\n",
+ "Discriminator Loss: tf.Tensor(1.0432949, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.1261454, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 19272\n",
+ "Discriminator Loss: tf.Tensor(1.0016896, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.11040375, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 19273\n",
+ "Discriminator Loss: tf.Tensor(1.3449944, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.5911394, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 19274\n",
+ "Discriminator Loss: tf.Tensor(0.9939935, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.045683827, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 19275\n",
+ "Discriminator Loss: tf.Tensor(1.2618263, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.2335691, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 19276\n",
+ "Discriminator Loss: tf.Tensor(0.9755276, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.28907338, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 19277\n",
+ "Discriminator Loss: tf.Tensor(0.95403755, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.263932, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 19278\n",
+ "Discriminator Loss: tf.Tensor(1.2413281, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.003154114, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 19279\n",
+ "Discriminator Loss: tf.Tensor(0.9032779, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.2637178, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 19280\n",
+ "Discriminator Loss: tf.Tensor(0.9563885, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.30500093, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 19281\n",
+ "Discriminator Loss: tf.Tensor(1.2213228, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.5213842, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 19282\n",
+ "Discriminator Loss: tf.Tensor(1.3475409, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.29813355, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 19283\n",
+ "Discriminator Loss: tf.Tensor(1.1475778, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.99648315, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 19284\n",
+ "Discriminator Loss: tf.Tensor(0.84196913, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.33866906, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 19285\n",
+ "Discriminator Loss: tf.Tensor(1.5072969, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.9055878, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 19286\n",
+ "Discriminator Loss: tf.Tensor(1.1120281, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.09589049, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 19287\n",
+ "Discriminator Loss: tf.Tensor(0.82190937, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.8387583, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 19288\n",
+ "Discriminator Loss: tf.Tensor(0.84277815, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.35999694, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 19289\n",
+ "Discriminator Loss: tf.Tensor(1.1584494, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.4912257, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 19290\n",
+ "Discriminator Loss: tf.Tensor(1.3012382, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.09972742, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 19291\n",
+ "Discriminator Loss: tf.Tensor(0.74604094, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.1283735, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 19292\n",
+ "Discriminator Loss: tf.Tensor(1.0039151, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.24526139, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 19293\n",
+ "Discriminator Loss: tf.Tensor(1.5635686, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.2491082, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 19294\n",
+ "Discriminator Loss: tf.Tensor(1.0205822, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.46472797, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 19295\n",
+ "Discriminator Loss: tf.Tensor(0.8394849, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.267137, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 19296\n",
+ "Discriminator Loss: tf.Tensor(0.796497, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.68690425, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 19297\n",
+ "Discriminator Loss: tf.Tensor(0.9770988, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.2277137, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 19298\n",
+ "Discriminator Loss: tf.Tensor(1.1126382, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.06722169, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 19299\n",
+ "Discriminator Loss: tf.Tensor(1.3761145, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.7685261, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 19300\n",
+ "Discriminator Loss: tf.Tensor(0.9647286, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.17091917, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 19301\n",
+ "Discriminator Loss: tf.Tensor(0.89181906, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.3324765, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 19302\n",
+ "Discriminator Loss: tf.Tensor(1.0746497, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.07129239, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 19303\n",
+ "Discriminator Loss: tf.Tensor(1.2333174, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.1676884, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 19304\n",
+ "Discriminator Loss: tf.Tensor(1.6370924, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.32360363, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 19305\n",
+ "Discriminator Loss: tf.Tensor(1.2220819, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.7535203, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 19306\n",
+ "Discriminator Loss: tf.Tensor(1.1775124, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.36408624, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 19307\n",
+ "Discriminator Loss: tf.Tensor(1.1986318, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.5325145, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 19308\n",
+ "Discriminator Loss: tf.Tensor(1.0940938, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.066429965, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 19309\n",
+ "Discriminator Loss: tf.Tensor(1.5909917, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.024758, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 19310\n",
+ "Discriminator Loss: tf.Tensor(1.0673525, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.21193998, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 19311\n",
+ "Discriminator Loss: tf.Tensor(1.0022044, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.1843947, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 19312\n",
+ "Discriminator Loss: tf.Tensor(0.9800557, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.2032872, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 19313\n",
+ "Discriminator Loss: tf.Tensor(1.0387583, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.1655837, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 19314\n",
+ "Discriminator Loss: tf.Tensor(0.7086125, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.5427927, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 19315\n",
+ "Discriminator Loss: tf.Tensor(1.201092, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.7188925, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 19316\n",
+ "Discriminator Loss: tf.Tensor(1.0209188, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.030669725, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 19317\n",
+ "Discriminator Loss: tf.Tensor(1.237954, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.5509104, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 19318\n",
+ "Discriminator Loss: tf.Tensor(0.8482284, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.2393585, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 19319\n",
+ "Discriminator Loss: tf.Tensor(1.0601215, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.1889328, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 19320\n",
+ "Discriminator Loss: tf.Tensor(0.94967026, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.34354684, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 19321\n",
+ "Discriminator Loss: tf.Tensor(1.03987, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.5219212, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 19322\n",
+ "Discriminator Loss: tf.Tensor(0.9612647, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.2366932, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 19323\n",
+ "Discriminator Loss: tf.Tensor(0.8404664, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.3206149, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 19324\n",
+ "Discriminator Loss: tf.Tensor(0.6333224, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.2206774, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 19325\n",
+ "Discriminator Loss: tf.Tensor(0.94766766, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.89634484, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 19326\n",
+ "Discriminator Loss: tf.Tensor(0.96329117, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.2952066, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 19327\n",
+ "Discriminator Loss: tf.Tensor(1.0884483, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.4201962, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 19328\n",
+ "Discriminator Loss: tf.Tensor(1.2287685, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.1537245, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 19329\n",
+ "Discriminator Loss: tf.Tensor(0.8243897, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.1739103, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 19330\n",
+ "Discriminator Loss: tf.Tensor(1.2794819, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.04774647, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 19331\n",
+ "Discriminator Loss: tf.Tensor(0.8861432, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.1683551, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 19332\n",
+ "Discriminator Loss: tf.Tensor(1.2722903, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.0780619, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 19333\n",
+ "Discriminator Loss: tf.Tensor(0.9066297, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.2169179, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 19334\n",
+ "Discriminator Loss: tf.Tensor(1.0079451, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.5437529, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 19335\n",
+ "Discriminator Loss: tf.Tensor(1.2191863, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.9621701, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 19336\n",
+ "Discriminator Loss: tf.Tensor(1.3098989, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.3579696, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 19337\n",
+ "Discriminator Loss: tf.Tensor(0.8833579, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.2507671, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 19338\n",
+ "Discriminator Loss: tf.Tensor(0.84604275, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.19802861, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 19339\n",
+ "Discriminator Loss: tf.Tensor(2.065619, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.115173, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 19340\n",
+ "Discriminator Loss: tf.Tensor(1.1152891, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.00635499, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 19341\n",
+ "Discriminator Loss: tf.Tensor(0.903434, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.0811001, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 19342\n",
+ "Discriminator Loss: tf.Tensor(0.91477656, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.39622703, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 19343\n",
+ "Discriminator Loss: tf.Tensor(0.88095903, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.7579254, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 19344\n",
+ "Discriminator Loss: tf.Tensor(0.8714763, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.23123997, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 19345\n",
+ "Discriminator Loss: tf.Tensor(1.3722672, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.9844426, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 19346\n",
+ "Discriminator Loss: tf.Tensor(1.1049913, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.29065374, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 19347\n",
+ "Discriminator Loss: tf.Tensor(0.9340822, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.5994029, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 19348\n",
+ "Discriminator Loss: tf.Tensor(1.0242981, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.3979439, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 19349\n",
+ "Discriminator Loss: tf.Tensor(1.2979667, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.1367733, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 19350\n",
+ "Discriminator Loss: tf.Tensor(0.9258079, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.8466298, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 19351\n",
+ "Discriminator Loss: tf.Tensor(1.1182957, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.49338433, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 19352\n",
+ "Discriminator Loss: tf.Tensor(1.0786191, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.965405, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 19353\n",
+ "Discriminator Loss: tf.Tensor(0.89096165, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.9799862, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 19354\n",
+ "Discriminator Loss: tf.Tensor(0.626442, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.9400237, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 19355\n",
+ "Discriminator Loss: tf.Tensor(0.5456091, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.8700252, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 19356\n",
+ "Discriminator Loss: tf.Tensor(1.7247593, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.7145323, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 19357\n",
+ "Discriminator Loss: tf.Tensor(1.3181144, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.16241053, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 19358\n",
+ "Discriminator Loss: tf.Tensor(1.0496105, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.88381094, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 19359\n",
+ "Discriminator Loss: tf.Tensor(0.5440095, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.7717703, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 19360\n",
+ "Discriminator Loss: tf.Tensor(1.1066374, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.8776525, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 19361\n",
+ "Discriminator Loss: tf.Tensor(1.2244457, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.06885659, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 19362\n",
+ "Discriminator Loss: tf.Tensor(0.9383471, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.9593754, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 19363\n",
+ "Discriminator Loss: tf.Tensor(0.6043647, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.1642354, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 19364\n",
+ "Discriminator Loss: tf.Tensor(0.939398, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.0198067, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 19365\n",
+ "Discriminator Loss: tf.Tensor(1.0075613, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.87144184, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 19366\n",
+ "Discriminator Loss: tf.Tensor(1.2606966, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.44321868, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 19367\n",
+ "Discriminator Loss: tf.Tensor(1.3585994, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.8015513, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 19368\n",
+ "Discriminator Loss: tf.Tensor(1.1516225, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.08693265, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 19369\n",
+ "Discriminator Loss: tf.Tensor(0.87862766, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.213123, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 19370\n",
+ "Discriminator Loss: tf.Tensor(1.2044976, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.013002463, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 19371\n",
+ "Discriminator Loss: tf.Tensor(0.92152, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.0324565, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 19372\n",
+ "Discriminator Loss: tf.Tensor(0.48470372, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.73844045, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 19373\n",
+ "Discriminator Loss: tf.Tensor(1.3047361, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.3189825, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 19374\n",
+ "Discriminator Loss: tf.Tensor(0.6618885, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.5489346, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 19375\n",
+ "Discriminator Loss: tf.Tensor(1.3982925, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.6980814, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 19376\n",
+ "Discriminator Loss: tf.Tensor(1.797771, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.6123689, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 19377\n",
+ "Discriminator Loss: tf.Tensor(0.79159003, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.73538184, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 19378\n",
+ "Discriminator Loss: tf.Tensor(0.8934285, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.6342394, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 19379\n",
+ "Discriminator Loss: tf.Tensor(1.5120759, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.7721334, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 19380\n",
+ "Discriminator Loss: tf.Tensor(1.0715909, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.021600517, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 19381\n",
+ "Discriminator Loss: tf.Tensor(1.0065391, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.9461073, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 19382\n",
+ "Discriminator Loss: tf.Tensor(0.78227276, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.52569157, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 19383\n",
+ "Discriminator Loss: tf.Tensor(0.67862105, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.4613615, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 19384\n",
+ "Discriminator Loss: tf.Tensor(1.6326894, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.39341107, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 19385\n",
+ "Discriminator Loss: tf.Tensor(0.8662168, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.0481175, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 19386\n",
+ "Discriminator Loss: tf.Tensor(0.71877885, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.4084612, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 19387\n",
+ "Discriminator Loss: tf.Tensor(1.699368, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.2047431, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 19388\n",
+ "Discriminator Loss: tf.Tensor(1.3932021, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.15565826, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 19389\n",
+ "Discriminator Loss: tf.Tensor(0.9963958, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.5825982, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 19390\n",
+ "Discriminator Loss: tf.Tensor(1.1467794, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.8129379, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 19391\n",
+ "Discriminator Loss: tf.Tensor(1.0947448, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.1329404, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 19392\n",
+ "Discriminator Loss: tf.Tensor(1.0988808, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.069035165, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 19393\n",
+ "Discriminator Loss: tf.Tensor(1.2957103, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.7855902, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 19394\n",
+ "Discriminator Loss: tf.Tensor(1.1769803, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.0060543916, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 19395\n",
+ "Discriminator Loss: tf.Tensor(0.9657592, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.93099385, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 19396\n",
+ "Discriminator Loss: tf.Tensor(0.70381176, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.9157529, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 19397\n",
+ "Discriminator Loss: tf.Tensor(0.95371795, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.3587143, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 19398\n",
+ "Discriminator Loss: tf.Tensor(1.4405241, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.349377, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 19399\n",
+ "Discriminator Loss: tf.Tensor(1.4094726, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.3169052, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 19400\n",
+ "Discriminator Loss: tf.Tensor(1.1970253, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.1709188, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 19401\n",
+ "Discriminator Loss: tf.Tensor(0.9454274, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.19567658, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 19402\n",
+ "Discriminator Loss: tf.Tensor(0.87978923, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.247286, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 19403\n",
+ "Discriminator Loss: tf.Tensor(0.9619772, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.4118949, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 19404\n",
+ "Discriminator Loss: tf.Tensor(1.0077387, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.8171379, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 19405\n",
+ "Discriminator Loss: tf.Tensor(0.54235923, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.7244832, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 19406\n",
+ "Discriminator Loss: tf.Tensor(0.77019083, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.3808583, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 19407\n",
+ "Discriminator Loss: tf.Tensor(1.3343875, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.29198495, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 19408\n",
+ "Discriminator Loss: tf.Tensor(0.9724765, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.89838344, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 19409\n",
+ "Discriminator Loss: tf.Tensor(1.1514448, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.0641036, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 19410\n",
+ "Discriminator Loss: tf.Tensor(0.9131721, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.98170286, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 19411\n",
+ "Discriminator Loss: tf.Tensor(0.8383572, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.4500675, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 19412\n",
+ "Discriminator Loss: tf.Tensor(1.5602376, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.8673735, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 19413\n",
+ "Discriminator Loss: tf.Tensor(1.4494336, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.40080193, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 19414\n",
+ "Discriminator Loss: tf.Tensor(1.0118123, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.927087, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 19415\n",
+ "Discriminator Loss: tf.Tensor(0.9246159, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.448697, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 19416\n",
+ "Discriminator Loss: tf.Tensor(1.1297052, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.9046335, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 19417\n",
+ "Discriminator Loss: tf.Tensor(0.932706, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.31430307, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 19418\n",
+ "Discriminator Loss: tf.Tensor(1.3488486, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.86588067, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 19419\n",
+ "Discriminator Loss: tf.Tensor(1.0688488, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.166252, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 19420\n",
+ "Discriminator Loss: tf.Tensor(1.0714049, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.27025756, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 19421\n",
+ "Discriminator Loss: tf.Tensor(1.0043225, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.2869126, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 19422\n",
+ "Discriminator Loss: tf.Tensor(0.78977823, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.5456317, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 19423\n",
+ "Discriminator Loss: tf.Tensor(1.4636083, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.8982283, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 19424\n",
+ "Discriminator Loss: tf.Tensor(1.3809406, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.2823859, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 19425\n",
+ "Discriminator Loss: tf.Tensor(0.8632586, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.91257906, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 19426\n",
+ "Discriminator Loss: tf.Tensor(0.90502834, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.46014634, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 19427\n",
+ "Discriminator Loss: tf.Tensor(1.2411773, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.3606167, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 19428\n",
+ "Discriminator Loss: tf.Tensor(1.8468395, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.44341493, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 19429\n",
+ "Discriminator Loss: tf.Tensor(1.0432682, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.55926585, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 19430\n",
+ "Discriminator Loss: tf.Tensor(1.0613784, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.71120375, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 19431\n",
+ "Discriminator Loss: tf.Tensor(1.2659001, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.9401078, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 19432\n",
+ "Discriminator Loss: tf.Tensor(0.69944084, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.8271826, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 19433\n",
+ "Discriminator Loss: tf.Tensor(1.1552033, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.1495531, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 19434\n",
+ "Discriminator Loss: tf.Tensor(1.3639582, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.19768131, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 19435\n",
+ "Discriminator Loss: tf.Tensor(1.3686838, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.98657537, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 19436\n",
+ "Discriminator Loss: tf.Tensor(0.65356636, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.92342407, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 19437\n",
+ "Discriminator Loss: tf.Tensor(1.1099141, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.4400558, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 19438\n",
+ "Discriminator Loss: tf.Tensor(0.6230027, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.71556586, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 19439\n",
+ "Discriminator Loss: tf.Tensor(1.2228768, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.5023907, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 19440\n",
+ "Discriminator Loss: tf.Tensor(1.3130069, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.2024316, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 19441\n",
+ "Discriminator Loss: tf.Tensor(0.7430032, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.88963526, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 19442\n",
+ "Discriminator Loss: tf.Tensor(1.0450691, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.98016834, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 19443\n",
+ "Discriminator Loss: tf.Tensor(1.0816396, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.092068516, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 19444\n",
+ "Discriminator Loss: tf.Tensor(1.3357297, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.7832276, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 19445\n",
+ "Discriminator Loss: tf.Tensor(1.232799, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.04886047, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 19446\n",
+ "Discriminator Loss: tf.Tensor(1.1720382, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.0481619, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 19447\n",
+ "Discriminator Loss: tf.Tensor(1.0512344, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.026508586, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 19448\n",
+ "Discriminator Loss: tf.Tensor(0.930817, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.6038107, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 19449\n",
+ "Discriminator Loss: tf.Tensor(0.84787846, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.23919821, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 19450\n",
+ "Discriminator Loss: tf.Tensor(0.7763483, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.0032431, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 19451\n",
+ "Discriminator Loss: tf.Tensor(0.8714502, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.4940368, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 19452\n",
+ "Discriminator Loss: tf.Tensor(1.9883775, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.7904701, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 19453\n",
+ "Discriminator Loss: tf.Tensor(0.7931024, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.80553883, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 19454\n",
+ "Discriminator Loss: tf.Tensor(1.0956495, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.64057726, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 19455\n",
+ "Discriminator Loss: tf.Tensor(0.99258304, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.9031413, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 19456\n",
+ "Discriminator Loss: tf.Tensor(0.61372674, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.85271376, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 19457\n",
+ "Discriminator Loss: tf.Tensor(1.037791, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.5652556, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 19458\n",
+ "Discriminator Loss: tf.Tensor(1.6433142, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.52032954, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 19459\n",
+ "Discriminator Loss: tf.Tensor(1.1246815, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.1774608, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 19460\n",
+ "Discriminator Loss: tf.Tensor(0.75235456, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.55069566, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 19461\n",
+ "Discriminator Loss: tf.Tensor(1.178376, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.6215576, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 19462\n",
+ "Discriminator Loss: tf.Tensor(1.3037717, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.1922779, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 19463\n",
+ "Discriminator Loss: tf.Tensor(0.6461114, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.9144817, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 19464\n",
+ "Discriminator Loss: tf.Tensor(1.3360013, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.4933957, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 19465\n",
+ "Discriminator Loss: tf.Tensor(0.5759004, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.7913633, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 19466\n",
+ "Discriminator Loss: tf.Tensor(1.597907, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.691831, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 19467\n",
+ "Discriminator Loss: tf.Tensor(1.0241243, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.04690696, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 19468\n",
+ "Discriminator Loss: tf.Tensor(0.83827245, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.8586175, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 19469\n",
+ "Discriminator Loss: tf.Tensor(0.70807743, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.55762017, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 19470\n",
+ "Discriminator Loss: tf.Tensor(1.6151081, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.2423221, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 19471\n",
+ "Discriminator Loss: tf.Tensor(0.7365113, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.4793718, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 19472\n",
+ "Discriminator Loss: tf.Tensor(1.0518078, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.5194386, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 19473\n",
+ "Discriminator Loss: tf.Tensor(1.090585, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.06838284, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 19474\n",
+ "Discriminator Loss: tf.Tensor(1.321589, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.322668, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 19475\n",
+ "Discriminator Loss: tf.Tensor(1.021235, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.16166335, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 19476\n",
+ "Discriminator Loss: tf.Tensor(0.9391465, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.4873004, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 19477\n",
+ "Discriminator Loss: tf.Tensor(1.3850052, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.112848796, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 19478\n",
+ "Discriminator Loss: tf.Tensor(0.91709816, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.74779916, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 19479\n",
+ "Discriminator Loss: tf.Tensor(0.5456687, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.4426413, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 19480\n",
+ "Discriminator Loss: tf.Tensor(1.3545098, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.1987998, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 19481\n",
+ "Discriminator Loss: tf.Tensor(0.830089, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.1951185, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 19482\n",
+ "Discriminator Loss: tf.Tensor(0.9450095, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.2923801, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 19483\n",
+ "Discriminator Loss: tf.Tensor(1.084868, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.4319566, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 19484\n",
+ "Discriminator Loss: tf.Tensor(1.5651413, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.4040852, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 19485\n",
+ "Discriminator Loss: tf.Tensor(0.7127973, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.1700511, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 19486\n",
+ "Discriminator Loss: tf.Tensor(1.2554656, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.11229218, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 19487\n",
+ "Discriminator Loss: tf.Tensor(0.77917755, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.1025406, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 19488\n",
+ "Discriminator Loss: tf.Tensor(0.9000792, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.5486832, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 19489\n",
+ "Discriminator Loss: tf.Tensor(0.6073442, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.9577138, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 19490\n",
+ "Discriminator Loss: tf.Tensor(1.0080932, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.5775093, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 19491\n",
+ "Discriminator Loss: tf.Tensor(1.1118594, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.17446572, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 19492\n",
+ "Discriminator Loss: tf.Tensor(1.3097948, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.6927716, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 19493\n",
+ "Discriminator Loss: tf.Tensor(1.2449222, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.097655825, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 19494\n",
+ "Discriminator Loss: tf.Tensor(1.0040574, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.006732, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 19495\n",
+ "Discriminator Loss: tf.Tensor(0.88427675, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.31552947, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 19496\n",
+ "Discriminator Loss: tf.Tensor(1.26168, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.2848715, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 19497\n",
+ "Discriminator Loss: tf.Tensor(0.96247214, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.12364902, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 19498\n",
+ "Discriminator Loss: tf.Tensor(1.2206516, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.587121, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 19499\n",
+ "Discriminator Loss: tf.Tensor(1.0188668, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.12041676, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 19500\n",
+ "Discriminator Loss: tf.Tensor(1.2221806, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.8774573, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 19501\n",
+ "Discriminator Loss: tf.Tensor(0.73166174, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.74243087, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 19502\n",
+ "Discriminator Loss: tf.Tensor(0.5703443, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.9781329, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 19503\n",
+ "Discriminator Loss: tf.Tensor(0.64512235, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.8899271, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 19504\n",
+ "Discriminator Loss: tf.Tensor(1.0981665, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.551761, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 19505\n",
+ "Discriminator Loss: tf.Tensor(1.1125028, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.02113163, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 19506\n",
+ "Discriminator Loss: tf.Tensor(1.2209179, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.9644701, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 19507\n",
+ "Discriminator Loss: tf.Tensor(1.0788506, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.3216617, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 19508\n",
+ "Discriminator Loss: tf.Tensor(1.1337748, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.8302579, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 19509\n",
+ "Discriminator Loss: tf.Tensor(1.2077178, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.050813247, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 19510\n",
+ "Discriminator Loss: tf.Tensor(1.2391775, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.4583426, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 19511\n",
+ "Discriminator Loss: tf.Tensor(1.3217628, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.20098114, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 19512\n",
+ "Discriminator Loss: tf.Tensor(0.91443163, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.75366825, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 19513\n",
+ "Discriminator Loss: tf.Tensor(0.7544917, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.88772273, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 19514\n",
+ "Discriminator Loss: tf.Tensor(1.0007778, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.6183579, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 19515\n",
+ "Discriminator Loss: tf.Tensor(1.2943165, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.2763102, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 19516\n",
+ "Discriminator Loss: tf.Tensor(1.2695698, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.079788394, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 19517\n",
+ "Discriminator Loss: tf.Tensor(1.302164, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.857847, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 19518\n",
+ "Discriminator Loss: tf.Tensor(1.2259276, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.2332924, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 19519\n",
+ "Discriminator Loss: tf.Tensor(1.1171104, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.3057524, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 19520\n",
+ "Discriminator Loss: tf.Tensor(1.2082309, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.10789434, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 19521\n",
+ "Discriminator Loss: tf.Tensor(0.7611209, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.2238989, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 19522\n",
+ "Discriminator Loss: tf.Tensor(0.7238067, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.42261672, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 19523\n",
+ "Discriminator Loss: tf.Tensor(1.1763397, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.9033724, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 19524\n",
+ "Discriminator Loss: tf.Tensor(0.92082566, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.25901827, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 19525\n",
+ "Discriminator Loss: tf.Tensor(1.0476689, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.2017707, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 19526\n",
+ "Discriminator Loss: tf.Tensor(0.95231545, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.14820692, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 19527\n",
+ "Discriminator Loss: tf.Tensor(0.788255, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.1699696, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 19528\n",
+ "Discriminator Loss: tf.Tensor(0.62523186, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.145992, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 19529\n",
+ "Discriminator Loss: tf.Tensor(0.927171, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.3882732, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 19530\n",
+ "Discriminator Loss: tf.Tensor(1.0602235, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.344574, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 19531\n",
+ "Discriminator Loss: tf.Tensor(0.9292273, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.46222782, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 19532\n",
+ "Discriminator Loss: tf.Tensor(0.43087742, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.3418851, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 19533\n",
+ "Discriminator Loss: tf.Tensor(0.6047074, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.63262564, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 19534\n",
+ "Discriminator Loss: tf.Tensor(2.3111043, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.3517544, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 19535\n",
+ "Discriminator Loss: tf.Tensor(0.99435854, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.32758918, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 19536\n",
+ "Discriminator Loss: tf.Tensor(0.9562079, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.7858, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 19537\n",
+ "Discriminator Loss: tf.Tensor(0.8044779, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.2892178, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 19538\n",
+ "Discriminator Loss: tf.Tensor(0.51906395, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.066668, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 19539\n",
+ "Discriminator Loss: tf.Tensor(0.92113936, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.7175768, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 19540\n",
+ "Discriminator Loss: tf.Tensor(0.6696303, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.1659477, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 19541\n",
+ "Discriminator Loss: tf.Tensor(0.9377173, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.1740336, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 19542\n",
+ "Discriminator Loss: tf.Tensor(1.1381522, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.08477316, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 19543\n",
+ "Discriminator Loss: tf.Tensor(0.938323, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.5135378, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 19544\n",
+ "Discriminator Loss: tf.Tensor(1.0020677, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.28551748, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 19545\n",
+ "Discriminator Loss: tf.Tensor(1.1671445, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.7445602, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 19546\n",
+ "Discriminator Loss: tf.Tensor(0.9129901, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.3272385, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 19547\n",
+ "Discriminator Loss: tf.Tensor(1.2879078, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.88679606, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 19548\n",
+ "Discriminator Loss: tf.Tensor(0.9137895, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.5171241, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 19549\n",
+ "Discriminator Loss: tf.Tensor(1.1712096, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.8477508, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 19550\n",
+ "Discriminator Loss: tf.Tensor(1.3800067, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.22895966, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 19551\n",
+ "Discriminator Loss: tf.Tensor(0.9928577, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.1888571, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 19552\n",
+ "Discriminator Loss: tf.Tensor(1.1937656, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.04141879, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 19553\n",
+ "Discriminator Loss: tf.Tensor(0.9519868, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.3313988, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 19554\n",
+ "Discriminator Loss: tf.Tensor(1.0277576, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.17791305, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 19555\n",
+ "Discriminator Loss: tf.Tensor(1.4143248, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.925943, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 19556\n",
+ "Discriminator Loss: tf.Tensor(1.161495, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.10326085, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 19557\n",
+ "Discriminator Loss: tf.Tensor(1.2704946, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.88050956, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 19558\n",
+ "Discriminator Loss: tf.Tensor(0.8486863, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.5604501, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 19559\n",
+ "Discriminator Loss: tf.Tensor(0.89870363, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.4938952, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 19560\n",
+ "Discriminator Loss: tf.Tensor(1.31283, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.17483789, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 19561\n",
+ "Discriminator Loss: tf.Tensor(0.9288237, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.9313473, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 19562\n",
+ "Discriminator Loss: tf.Tensor(1.019847, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.26658186, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 19563\n",
+ "Discriminator Loss: tf.Tensor(1.5363653, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.6233801, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 19564\n",
+ "Discriminator Loss: tf.Tensor(1.1971064, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.11459497, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 19565\n",
+ "Discriminator Loss: tf.Tensor(1.2135315, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.9648748, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 19566\n",
+ "Discriminator Loss: tf.Tensor(1.1104468, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.0022812437, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 19567\n",
+ "Discriminator Loss: tf.Tensor(1.113172, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.413997, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 19568\n",
+ "Discriminator Loss: tf.Tensor(1.2549726, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.20194785, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 19569\n",
+ "Discriminator Loss: tf.Tensor(1.2775086, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.7068727, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 19570\n",
+ "Discriminator Loss: tf.Tensor(0.9176679, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.4914485, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 19571\n",
+ "Discriminator Loss: tf.Tensor(1.1861812, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.5462523, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 19572\n",
+ "Discriminator Loss: tf.Tensor(1.0506711, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.012030862, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 19573\n",
+ "Discriminator Loss: tf.Tensor(1.1601015, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.0393461, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 19574\n",
+ "Discriminator Loss: tf.Tensor(0.83683795, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.42285863, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 19575\n",
+ "Discriminator Loss: tf.Tensor(0.88817763, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.5686096, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 19576\n",
+ "Discriminator Loss: tf.Tensor(1.3242874, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.06534355, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 19577\n",
+ "Discriminator Loss: tf.Tensor(0.9383788, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.2654314, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 19578\n",
+ "Discriminator Loss: tf.Tensor(0.82023245, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.24274951, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 19579\n",
+ "Discriminator Loss: tf.Tensor(1.5359882, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.7570201, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 19580\n",
+ "Discriminator Loss: tf.Tensor(1.0323074, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.10436482, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 19581\n",
+ "Discriminator Loss: tf.Tensor(1.1420571, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.2309844, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 19582\n",
+ "Discriminator Loss: tf.Tensor(0.81256354, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.45464787, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 19583\n",
+ "Discriminator Loss: tf.Tensor(0.7683994, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.9637293, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 19584\n",
+ "Discriminator Loss: tf.Tensor(0.5167651, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.1599365, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 19585\n",
+ "Discriminator Loss: tf.Tensor(0.823301, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.25537342, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 19586\n",
+ "Discriminator Loss: tf.Tensor(1.6979465, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.8591805, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 19587\n",
+ "Discriminator Loss: tf.Tensor(1.0035436, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.16340178, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 19588\n",
+ "Discriminator Loss: tf.Tensor(0.8846758, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.0337006, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 19589\n",
+ "Discriminator Loss: tf.Tensor(0.5741111, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.1391611, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 19590\n",
+ "Discriminator Loss: tf.Tensor(1.1283422, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.05903102, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 19591\n",
+ "Discriminator Loss: tf.Tensor(0.9169339, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.7353001, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 19592\n",
+ "Discriminator Loss: tf.Tensor(1.1209242, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.08922217, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 19593\n",
+ "Discriminator Loss: tf.Tensor(0.9829798, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.1564652, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 19594\n",
+ "Discriminator Loss: tf.Tensor(0.74383473, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.67709285, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 19595\n",
+ "Discriminator Loss: tf.Tensor(0.71213984, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.9718371, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 19596\n",
+ "Discriminator Loss: tf.Tensor(0.9988976, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.47111717, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 19597\n",
+ "Discriminator Loss: tf.Tensor(1.865117, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.2368662, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 19598\n",
+ "Discriminator Loss: tf.Tensor(0.8689595, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.24545003, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 19599\n",
+ "Discriminator Loss: tf.Tensor(0.7175327, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.2774762, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 19600\n",
+ "Discriminator Loss: tf.Tensor(0.57269627, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.633622, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 19601\n",
+ "Discriminator Loss: tf.Tensor(0.9960854, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.6191111, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 19602\n",
+ "Discriminator Loss: tf.Tensor(1.2419164, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.13480766, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 19603\n",
+ "Discriminator Loss: tf.Tensor(0.7395095, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.2413068, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 19604\n",
+ "Discriminator Loss: tf.Tensor(1.1968931, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.05286224, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 19605\n",
+ "Discriminator Loss: tf.Tensor(1.3094627, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.468418, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 19606\n",
+ "Discriminator Loss: tf.Tensor(0.8676692, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.31316814, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 19607\n",
+ "Discriminator Loss: tf.Tensor(1.1655996, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.2918124, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 19608\n",
+ "Discriminator Loss: tf.Tensor(1.3601702, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.25760734, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 19609\n",
+ "Discriminator Loss: tf.Tensor(0.96973324, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.1664842, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 19610\n",
+ "Discriminator Loss: tf.Tensor(0.9305526, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.32977623, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 19611\n",
+ "Discriminator Loss: tf.Tensor(1.0047026, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.1963615, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 19612\n",
+ "Discriminator Loss: tf.Tensor(0.6965667, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.8312605, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 19613\n",
+ "Discriminator Loss: tf.Tensor(0.653309, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.1161448, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 19614\n",
+ "Discriminator Loss: tf.Tensor(0.9297446, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.4375614, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 19615\n",
+ "Discriminator Loss: tf.Tensor(1.0958939, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.19259854, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 19616\n",
+ "Discriminator Loss: tf.Tensor(0.7943796, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.5252947, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 19617\n",
+ "Discriminator Loss: tf.Tensor(1.1516498, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.16195723, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 19618\n",
+ "Discriminator Loss: tf.Tensor(1.2758423, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.3045563, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 19619\n",
+ "Discriminator Loss: tf.Tensor(0.9795296, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.12996955, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 19620\n",
+ "Discriminator Loss: tf.Tensor(1.2515005, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.3009338, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 19621\n",
+ "Discriminator Loss: tf.Tensor(1.2773824, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.16761172, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 19622\n",
+ "Discriminator Loss: tf.Tensor(0.6088511, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.86024743, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 19623\n",
+ "Discriminator Loss: tf.Tensor(0.9126623, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.3565248, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 19624\n",
+ "Discriminator Loss: tf.Tensor(1.3498402, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.18379885, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 19625\n",
+ "Discriminator Loss: tf.Tensor(1.2668325, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.48495123, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 19626\n",
+ "Discriminator Loss: tf.Tensor(0.86532664, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.0309772, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 19627\n",
+ "Discriminator Loss: tf.Tensor(0.6109642, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.3996395, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 19628\n",
+ "Discriminator Loss: tf.Tensor(0.82954717, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.48204502, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 19629\n",
+ "Discriminator Loss: tf.Tensor(1.2577271, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.8147897, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 19630\n",
+ "Discriminator Loss: tf.Tensor(0.99458545, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.13709033, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 19631\n",
+ "Discriminator Loss: tf.Tensor(0.9736212, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.2652422, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 19632\n",
+ "Discriminator Loss: tf.Tensor(1.2115021, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.08242526, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 19633\n",
+ "Discriminator Loss: tf.Tensor(1.0287654, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.1037992, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 19634\n",
+ "Discriminator Loss: tf.Tensor(0.93971896, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.33390903, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 19635\n",
+ "Discriminator Loss: tf.Tensor(0.71428186, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.4532413, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 19636\n",
+ "Discriminator Loss: tf.Tensor(1.1694634, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.004933074, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 19637\n",
+ "Discriminator Loss: tf.Tensor(1.0241655, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.2704376, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 19638\n",
+ "Discriminator Loss: tf.Tensor(1.0752242, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.16244045, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 19639\n",
+ "Discriminator Loss: tf.Tensor(0.9001949, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.2688464, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 19640\n",
+ "Discriminator Loss: tf.Tensor(1.3324492, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.23037471, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 19641\n",
+ "Discriminator Loss: tf.Tensor(0.83563185, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.2027282, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 19642\n",
+ "Discriminator Loss: tf.Tensor(1.1559594, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.08057756, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 19643\n",
+ "Discriminator Loss: tf.Tensor(0.8104788, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.1937481, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 19644\n",
+ "Discriminator Loss: tf.Tensor(0.9913124, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.1832263, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 19645\n",
+ "Discriminator Loss: tf.Tensor(0.847167, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.0874776, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 19646\n",
+ "Discriminator Loss: tf.Tensor(1.2826875, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.2127431, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 19647\n",
+ "Discriminator Loss: tf.Tensor(1.0293391, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.1681181, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 19648\n",
+ "Discriminator Loss: tf.Tensor(0.95626557, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.45771554, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 19649\n",
+ "Discriminator Loss: tf.Tensor(1.0264217, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.3714243, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 19650\n",
+ "Discriminator Loss: tf.Tensor(1.1710967, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.14044844, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 19651\n",
+ "Discriminator Loss: tf.Tensor(1.1031263, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.9037226, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 19652\n",
+ "Discriminator Loss: tf.Tensor(0.7702627, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.2305382, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 19653\n",
+ "Discriminator Loss: tf.Tensor(0.94092, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.44188556, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 19654\n",
+ "Discriminator Loss: tf.Tensor(1.054288, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.5918714, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 19655\n",
+ "Discriminator Loss: tf.Tensor(1.3316528, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.27725455, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 19656\n",
+ "Discriminator Loss: tf.Tensor(0.7614568, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.88605523, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 19657\n",
+ "Discriminator Loss: tf.Tensor(1.0866363, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.38775194, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 19658\n",
+ "Discriminator Loss: tf.Tensor(0.77525014, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.3269631, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 19659\n",
+ "Discriminator Loss: tf.Tensor(1.5929242, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.3379235, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 19660\n",
+ "Discriminator Loss: tf.Tensor(1.1540974, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.48194036, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 19661\n",
+ "Discriminator Loss: tf.Tensor(0.54312456, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.95630187, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 19662\n",
+ "Discriminator Loss: tf.Tensor(0.5455523, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.0320774, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 19663\n",
+ "Discriminator Loss: tf.Tensor(0.9389473, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.5746552, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 19664\n",
+ "Discriminator Loss: tf.Tensor(1.5382272, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.4797599, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 19665\n",
+ "Discriminator Loss: tf.Tensor(1.0609056, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.92889696, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 19666\n",
+ "Discriminator Loss: tf.Tensor(0.87477696, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.71281403, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 19667\n",
+ "Discriminator Loss: tf.Tensor(0.9536365, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.1245099, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 19668\n",
+ "Discriminator Loss: tf.Tensor(0.9742781, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.5407695, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 19669\n",
+ "Discriminator Loss: tf.Tensor(1.3466958, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.7081894, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 19670\n",
+ "Discriminator Loss: tf.Tensor(1.0914406, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.15803467, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 19671\n",
+ "Discriminator Loss: tf.Tensor(1.0134475, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.53694, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 19672\n",
+ "Discriminator Loss: tf.Tensor(1.174746, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.0100407945, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 19673\n",
+ "Discriminator Loss: tf.Tensor(0.8848287, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.817684, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 19674\n",
+ "Discriminator Loss: tf.Tensor(1.1216105, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.9636294, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 19675\n",
+ "Discriminator Loss: tf.Tensor(0.7187318, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.75753236, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 19676\n",
+ "Discriminator Loss: tf.Tensor(1.2842329, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.6496254, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 19677\n",
+ "Discriminator Loss: tf.Tensor(1.6417134, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.5439485, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 19678\n",
+ "Discriminator Loss: tf.Tensor(1.0979427, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.7631064, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 19679\n",
+ "Discriminator Loss: tf.Tensor(0.9326926, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.77385074, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 19680\n",
+ "Discriminator Loss: tf.Tensor(0.62674236, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.3110086, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 19681\n",
+ "Discriminator Loss: tf.Tensor(0.84604925, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.3612032, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 19682\n",
+ "Discriminator Loss: tf.Tensor(1.2697606, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.6502441, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 19683\n",
+ "Discriminator Loss: tf.Tensor(1.0904647, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.017385632, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 19684\n",
+ "Discriminator Loss: tf.Tensor(0.85014343, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.539878, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 19685\n",
+ "Discriminator Loss: tf.Tensor(0.9259748, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.31533292, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 19686\n",
+ "Discriminator Loss: tf.Tensor(0.9405844, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.4818491, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 19687\n",
+ "Discriminator Loss: tf.Tensor(1.312104, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.15734653, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 19688\n",
+ "Discriminator Loss: tf.Tensor(1.1292707, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.543221, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 19689\n",
+ "Discriminator Loss: tf.Tensor(0.7659425, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.40158316, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 19690\n",
+ "Discriminator Loss: tf.Tensor(1.1760361, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.5692164, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 19691\n",
+ "Discriminator Loss: tf.Tensor(0.84367794, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.38601032, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 19692\n",
+ "Discriminator Loss: tf.Tensor(1.1661853, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.8817536, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 19693\n",
+ "Discriminator Loss: tf.Tensor(0.8710592, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.4678022, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 19694\n",
+ "Discriminator Loss: tf.Tensor(1.0007789, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.83199257, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 19695\n",
+ "Discriminator Loss: tf.Tensor(0.66336155, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.755621, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 19696\n",
+ "Discriminator Loss: tf.Tensor(1.1316133, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.12866688, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 19697\n",
+ "Discriminator Loss: tf.Tensor(0.9309423, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.6665272, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 19698\n",
+ "Discriminator Loss: tf.Tensor(1.1199841, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.24195433, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 19699\n",
+ "Discriminator Loss: tf.Tensor(1.0914701, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.4467129, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 19700\n",
+ "Discriminator Loss: tf.Tensor(0.9486468, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.18802369, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 19701\n",
+ "Discriminator Loss: tf.Tensor(0.74222505, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.332744, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 19702\n",
+ "Discriminator Loss: tf.Tensor(1.4827367, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.27333042, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 19703\n",
+ "Discriminator Loss: tf.Tensor(0.7883065, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.0826687, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 19704\n",
+ "Discriminator Loss: tf.Tensor(0.77664906, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.7039161, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 19705\n",
+ "Discriminator Loss: tf.Tensor(1.2237102, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.4538075, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 19706\n",
+ "Discriminator Loss: tf.Tensor(1.3462181, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.24953473, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 19707\n",
+ "Discriminator Loss: tf.Tensor(1.0122191, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.77238894, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 19708\n",
+ "Discriminator Loss: tf.Tensor(1.223074, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.9994084, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 19709\n",
+ "Discriminator Loss: tf.Tensor(1.0524458, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.42320547, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 19710\n",
+ "Discriminator Loss: tf.Tensor(1.0540628, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.0062952, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 19711\n",
+ "Discriminator Loss: tf.Tensor(0.81344706, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.6936205, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 19712\n",
+ "Discriminator Loss: tf.Tensor(0.6722306, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.0544921, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 19713\n",
+ "Discriminator Loss: tf.Tensor(1.1892382, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.2158948, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 19714\n",
+ "Discriminator Loss: tf.Tensor(0.9809562, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.25183585, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 19715\n",
+ "Discriminator Loss: tf.Tensor(1.2758406, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.829614, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 19716\n",
+ "Discriminator Loss: tf.Tensor(1.3866303, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.35205922, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 19717\n",
+ "Discriminator Loss: tf.Tensor(0.8484601, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.0531417, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 19718\n",
+ "Discriminator Loss: tf.Tensor(0.7063026, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.3378992, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 19719\n",
+ "Discriminator Loss: tf.Tensor(1.4598874, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.8130461, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 19720\n",
+ "Discriminator Loss: tf.Tensor(1.3607968, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.15892665, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 19721\n",
+ "Discriminator Loss: tf.Tensor(0.7331994, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.8374447, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 19722\n",
+ "Discriminator Loss: tf.Tensor(0.84357125, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.8469656, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 19723\n",
+ "Discriminator Loss: tf.Tensor(1.1623116, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.6803484, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 19724\n",
+ "Discriminator Loss: tf.Tensor(0.82019, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.29267153, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 19725\n",
+ "Discriminator Loss: tf.Tensor(1.2544595, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.7882167, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 19726\n",
+ "Discriminator Loss: tf.Tensor(1.0833478, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.019518048, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 19727\n",
+ "Discriminator Loss: tf.Tensor(1.1612641, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.991144, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 19728\n",
+ "Discriminator Loss: tf.Tensor(0.7654172, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.61561817, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 19729\n",
+ "Discriminator Loss: tf.Tensor(0.77975726, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.3042064, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 19730\n",
+ "Discriminator Loss: tf.Tensor(0.98031145, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.23291834, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 19731\n",
+ "Discriminator Loss: tf.Tensor(0.9085039, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.2254534, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 19732\n",
+ "Discriminator Loss: tf.Tensor(1.1411567, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.112739764, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 19733\n",
+ "Discriminator Loss: tf.Tensor(0.8908446, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.8995625, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 19734\n",
+ "Discriminator Loss: tf.Tensor(1.001587, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.13734771, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 19735\n",
+ "Discriminator Loss: tf.Tensor(0.99258196, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.6059918, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 19736\n",
+ "Discriminator Loss: tf.Tensor(0.97469896, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.21236102, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 19737\n",
+ "Discriminator Loss: tf.Tensor(1.0772893, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.0075397, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 19738\n",
+ "Discriminator Loss: tf.Tensor(1.4425099, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.3550518, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 19739\n",
+ "Discriminator Loss: tf.Tensor(0.9237065, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.4501115, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 19740\n",
+ "Discriminator Loss: tf.Tensor(0.9417833, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.2089961, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 19741\n",
+ "Discriminator Loss: tf.Tensor(1.2031744, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.537171, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 19742\n",
+ "Discriminator Loss: tf.Tensor(1.057795, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.02252098, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 19743\n",
+ "Discriminator Loss: tf.Tensor(1.0280154, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.009922, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 19744\n",
+ "Discriminator Loss: tf.Tensor(0.632284, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.5262097, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 19745\n",
+ "Discriminator Loss: tf.Tensor(1.4828919, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.0529544, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 19746\n",
+ "Discriminator Loss: tf.Tensor(1.1990838, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.059579402, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 19747\n",
+ "Discriminator Loss: tf.Tensor(1.1838214, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.1689581, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 19748\n",
+ "Discriminator Loss: tf.Tensor(0.71374327, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.43218407, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 19749\n",
+ "Discriminator Loss: tf.Tensor(1.0906391, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.6559305, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 19750\n",
+ "Discriminator Loss: tf.Tensor(1.1779505, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.01284339, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 19751\n",
+ "Discriminator Loss: tf.Tensor(0.9028977, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.9751788, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 19752\n",
+ "Discriminator Loss: tf.Tensor(0.5933741, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.6644265, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 19753\n",
+ "Discriminator Loss: tf.Tensor(0.7260227, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.5364236, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 19754\n",
+ "Discriminator Loss: tf.Tensor(1.2209743, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.14014675, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 19755\n",
+ "Discriminator Loss: tf.Tensor(1.3289711, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.8986429, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 19756\n",
+ "Discriminator Loss: tf.Tensor(0.9376147, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.33293828, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 19757\n",
+ "Discriminator Loss: tf.Tensor(0.7636374, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.2060409, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 19758\n",
+ "Discriminator Loss: tf.Tensor(0.9608772, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.26718524, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 19759\n",
+ "Discriminator Loss: tf.Tensor(0.83658934, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.0230267, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 19760\n",
+ "Discriminator Loss: tf.Tensor(0.50234807, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.71562266, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 19761\n",
+ "Discriminator Loss: tf.Tensor(1.2733437, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.64982927, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 19762\n",
+ "Discriminator Loss: tf.Tensor(1.2974895, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.6103433, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 19763\n",
+ "Discriminator Loss: tf.Tensor(1.5137714, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.4237118, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 19764\n",
+ "Discriminator Loss: tf.Tensor(1.2710488, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.08061898, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 19765\n",
+ "Discriminator Loss: tf.Tensor(1.0440387, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.2155924, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 19766\n",
+ "Discriminator Loss: tf.Tensor(0.82850933, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.52732664, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 19767\n",
+ "Discriminator Loss: tf.Tensor(1.2303157, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.018308, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 19768\n",
+ "Discriminator Loss: tf.Tensor(1.7049273, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.65020126, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 19769\n",
+ "Discriminator Loss: tf.Tensor(1.1537166, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.6537795, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 19770\n",
+ "Discriminator Loss: tf.Tensor(0.8539133, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.1378509, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 19771\n",
+ "Discriminator Loss: tf.Tensor(0.7535544, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.34148797, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 19772\n",
+ "Discriminator Loss: tf.Tensor(1.2487752, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.5323254, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 19773\n",
+ "Discriminator Loss: tf.Tensor(0.9877192, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.37966752, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 19774\n",
+ "Discriminator Loss: tf.Tensor(0.9829165, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.3292869, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 19775\n",
+ "Discriminator Loss: tf.Tensor(1.1692938, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.5082131, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 19776\n",
+ "Discriminator Loss: tf.Tensor(0.6082449, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.9668824, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 19777\n",
+ "Discriminator Loss: tf.Tensor(0.5468037, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.83066034, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 19778\n",
+ "Discriminator Loss: tf.Tensor(1.259868, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.7701445, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 19779\n",
+ "Discriminator Loss: tf.Tensor(1.2150968, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.15445392, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 19780\n",
+ "Discriminator Loss: tf.Tensor(0.9404408, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.3089046, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 19781\n",
+ "Discriminator Loss: tf.Tensor(1.0607717, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.032312926, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 19782\n",
+ "Discriminator Loss: tf.Tensor(0.81051743, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.4202131, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 19783\n",
+ "Discriminator Loss: tf.Tensor(0.78831226, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.50093645, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 19784\n",
+ "Discriminator Loss: tf.Tensor(1.2200518, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.5851599, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 19785\n",
+ "Discriminator Loss: tf.Tensor(1.1543514, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.0033662368, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 19786\n",
+ "Discriminator Loss: tf.Tensor(0.638399, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.9406452, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 19787\n",
+ "Discriminator Loss: tf.Tensor(0.93166906, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.8493969, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 19788\n",
+ "Discriminator Loss: tf.Tensor(0.84100604, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.0517983, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 19789\n",
+ "Discriminator Loss: tf.Tensor(0.9023149, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.37608805, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 19790\n",
+ "Discriminator Loss: tf.Tensor(0.75151163, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.4853197, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 19791\n",
+ "Discriminator Loss: tf.Tensor(1.3076056, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.2399473, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 19792\n",
+ "Discriminator Loss: tf.Tensor(0.9812705, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.4970684, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 19793\n",
+ "Discriminator Loss: tf.Tensor(1.0038266, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.06702183, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 19794\n",
+ "Discriminator Loss: tf.Tensor(0.7419164, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.1870677, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 19795\n",
+ "Discriminator Loss: tf.Tensor(0.58658427, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.6490143, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 19796\n",
+ "Discriminator Loss: tf.Tensor(1.5612667, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.1445432, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 19797\n",
+ "Discriminator Loss: tf.Tensor(1.02956, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.07142379, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 19798\n",
+ "Discriminator Loss: tf.Tensor(0.97452736, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.2971412, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 19799\n",
+ "Discriminator Loss: tf.Tensor(0.9366714, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.23683582, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 19800\n",
+ "Discriminator Loss: tf.Tensor(0.88605726, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.185265, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 19801\n",
+ "Discriminator Loss: tf.Tensor(0.6069234, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.7884333, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 19802\n",
+ "Discriminator Loss: tf.Tensor(0.8693352, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.5647831, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 19803\n",
+ "Discriminator Loss: tf.Tensor(1.3601482, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.19965915, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 19804\n",
+ "Discriminator Loss: tf.Tensor(1.263787, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.5234375, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 19805\n",
+ "Discriminator Loss: tf.Tensor(1.1431934, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.108424574, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 19806\n",
+ "Discriminator Loss: tf.Tensor(1.0733798, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.2923219, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 19807\n",
+ "Discriminator Loss: tf.Tensor(0.7503196, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.36981416, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 19808\n",
+ "Discriminator Loss: tf.Tensor(1.318696, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.9614398, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 19809\n",
+ "Discriminator Loss: tf.Tensor(0.8235362, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.5362485, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 19810\n",
+ "Discriminator Loss: tf.Tensor(1.1328217, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.1257409, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 19811\n",
+ "Discriminator Loss: tf.Tensor(0.9532029, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.17072086, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 19812\n",
+ "Discriminator Loss: tf.Tensor(1.4776496, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.7324005, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 19813\n",
+ "Discriminator Loss: tf.Tensor(0.9046688, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.18905663, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 19814\n",
+ "Discriminator Loss: tf.Tensor(1.0789106, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.91063505, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 19815\n",
+ "Discriminator Loss: tf.Tensor(0.78773165, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.83108646, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 19816\n",
+ "Discriminator Loss: tf.Tensor(0.788959, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.81111556, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 19817\n",
+ "Discriminator Loss: tf.Tensor(0.94967115, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.0007701, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 19818\n",
+ "Discriminator Loss: tf.Tensor(0.96308696, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.7954069, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 19819\n",
+ "Discriminator Loss: tf.Tensor(0.8979759, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.0281528, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 19820\n",
+ "Discriminator Loss: tf.Tensor(1.5207624, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.30951384, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 19821\n",
+ "Discriminator Loss: tf.Tensor(1.1640954, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.9491452, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 19822\n",
+ "Discriminator Loss: tf.Tensor(1.1757841, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.009493013, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 19823\n",
+ "Discriminator Loss: tf.Tensor(1.1351919, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.0882576, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 19824\n",
+ "Discriminator Loss: tf.Tensor(0.8913714, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.38260484, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 19825\n",
+ "Discriminator Loss: tf.Tensor(1.0865912, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.5783439, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 19826\n",
+ "Discriminator Loss: tf.Tensor(1.0964421, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.24050371, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 19827\n",
+ "Discriminator Loss: tf.Tensor(0.8481823, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.0372281, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 19828\n",
+ "Discriminator Loss: tf.Tensor(1.176452, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.59062403, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 19829\n",
+ "Discriminator Loss: tf.Tensor(0.859025, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.3458489, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 19830\n",
+ "Discriminator Loss: tf.Tensor(1.5302689, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.3829889, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 19831\n",
+ "Discriminator Loss: tf.Tensor(1.0125334, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.4501489, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 19832\n",
+ "Discriminator Loss: tf.Tensor(1.1973118, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.15816258, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 19833\n",
+ "Discriminator Loss: tf.Tensor(1.2952617, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.3449403, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 19834\n",
+ "Discriminator Loss: tf.Tensor(1.386035, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.3226681, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 19835\n",
+ "Discriminator Loss: tf.Tensor(1.1324741, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.56628543, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 19836\n",
+ "Discriminator Loss: tf.Tensor(0.59629613, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.0508305, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 19837\n",
+ "Discriminator Loss: tf.Tensor(0.9404034, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.3306937, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 19838\n",
+ "Discriminator Loss: tf.Tensor(1.4095408, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.5083281, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 19839\n",
+ "Discriminator Loss: tf.Tensor(1.3316451, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.19382732, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 19840\n",
+ "Discriminator Loss: tf.Tensor(0.9800141, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.3037935, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 19841\n",
+ "Discriminator Loss: tf.Tensor(1.078051, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.03119818, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 19842\n",
+ "Discriminator Loss: tf.Tensor(0.7994318, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.3573976, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 19843\n",
+ "Discriminator Loss: tf.Tensor(0.9651134, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.09792886, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 19844\n",
+ "Discriminator Loss: tf.Tensor(1.0290948, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.7545988, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 19845\n",
+ "Discriminator Loss: tf.Tensor(1.2524127, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.679016, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 19846\n",
+ "Discriminator Loss: tf.Tensor(1.140519, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.08003844, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 19847\n",
+ "Discriminator Loss: tf.Tensor(1.147537, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.0636674, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 19848\n",
+ "Discriminator Loss: tf.Tensor(0.8876195, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.27812713, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 19849\n",
+ "Discriminator Loss: tf.Tensor(0.4699801, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.3797216, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 19850\n",
+ "Discriminator Loss: tf.Tensor(0.74947375, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.54755205, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 19851\n",
+ "Discriminator Loss: tf.Tensor(1.2898898, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.1613824, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 19852\n",
+ "Discriminator Loss: tf.Tensor(0.7332393, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.36846232, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 19853\n",
+ "Discriminator Loss: tf.Tensor(0.8407023, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.4405838, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 19854\n",
+ "Discriminator Loss: tf.Tensor(0.7149333, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.7489338, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 19855\n",
+ "Discriminator Loss: tf.Tensor(1.1692431, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.3774508, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 19856\n",
+ "Discriminator Loss: tf.Tensor(1.3980517, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.30026636, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 19857\n",
+ "Discriminator Loss: tf.Tensor(1.0444814, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.1812211, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 19858\n",
+ "Discriminator Loss: tf.Tensor(0.8826345, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.6154752, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 19859\n",
+ "Discriminator Loss: tf.Tensor(0.98640823, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.4567852, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 19860\n",
+ "Discriminator Loss: tf.Tensor(0.69632685, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.7829222, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 19861\n",
+ "Discriminator Loss: tf.Tensor(0.9325851, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.0735722, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 19862\n",
+ "Discriminator Loss: tf.Tensor(0.75165653, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.8636894, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 19863\n",
+ "Discriminator Loss: tf.Tensor(1.0087559, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.014634, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 19864\n",
+ "Discriminator Loss: tf.Tensor(1.0378356, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.15528381, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 19865\n",
+ "Discriminator Loss: tf.Tensor(1.3779314, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.9184681, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 19866\n",
+ "Discriminator Loss: tf.Tensor(1.3883352, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.22258781, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 19867\n",
+ "Discriminator Loss: tf.Tensor(1.3412536, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.8412706, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 19868\n",
+ "Discriminator Loss: tf.Tensor(0.21264678, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.95775646, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 19869\n",
+ "Discriminator Loss: tf.Tensor(1.1128101, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.4583181, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 19870\n",
+ "Discriminator Loss: tf.Tensor(1.2762239, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.11514408, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 19871\n",
+ "Discriminator Loss: tf.Tensor(0.96270084, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.2411209, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 19872\n",
+ "Discriminator Loss: tf.Tensor(1.3854423, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.06036557, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 19873\n",
+ "Discriminator Loss: tf.Tensor(0.8895694, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.89538383, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 19874\n",
+ "Discriminator Loss: tf.Tensor(0.52182305, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.8125784, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 19875\n",
+ "Discriminator Loss: tf.Tensor(1.4217517, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.0902858, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 19876\n",
+ "Discriminator Loss: tf.Tensor(1.5981735, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.4729301, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 19877\n",
+ "Discriminator Loss: tf.Tensor(0.9265005, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.7113023, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 19878\n",
+ "Discriminator Loss: tf.Tensor(0.6948011, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.99447775, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 19879\n",
+ "Discriminator Loss: tf.Tensor(0.88963866, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.4655098, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 19880\n",
+ "Discriminator Loss: tf.Tensor(1.4820751, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.38795552, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 19881\n",
+ "Discriminator Loss: tf.Tensor(1.1484368, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.5343691, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 19882\n",
+ "Discriminator Loss: tf.Tensor(1.1135432, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.07943339, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 19883\n",
+ "Discriminator Loss: tf.Tensor(0.9148619, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.1163411, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 19884\n",
+ "Discriminator Loss: tf.Tensor(1.075305, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.11310539, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 19885\n",
+ "Discriminator Loss: tf.Tensor(0.8201348, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.5045375, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 19886\n",
+ "Discriminator Loss: tf.Tensor(1.0575991, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.07612195, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 19887\n",
+ "Discriminator Loss: tf.Tensor(0.6613936, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.1628548, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 19888\n",
+ "Discriminator Loss: tf.Tensor(1.0834552, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.02854857, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 19889\n",
+ "Discriminator Loss: tf.Tensor(0.9821482, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.3694695, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 19890\n",
+ "Discriminator Loss: tf.Tensor(0.9803959, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.19236629, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 19891\n",
+ "Discriminator Loss: tf.Tensor(0.99489975, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.452483, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 19892\n",
+ "Discriminator Loss: tf.Tensor(1.2422106, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.021059772, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 19893\n",
+ "Discriminator Loss: tf.Tensor(1.0317687, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.9166129, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 19894\n",
+ "Discriminator Loss: tf.Tensor(1.4267195, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.2842867, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 19895\n",
+ "Discriminator Loss: tf.Tensor(0.96619105, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.9908692, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 19896\n",
+ "Discriminator Loss: tf.Tensor(1.2329061, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.19816555, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 19897\n",
+ "Discriminator Loss: tf.Tensor(1.3453366, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.8439512, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 19898\n",
+ "Discriminator Loss: tf.Tensor(1.7616733, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.5503446, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 19899\n",
+ "Discriminator Loss: tf.Tensor(1.3423072, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.45118228, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 19900\n",
+ "Discriminator Loss: tf.Tensor(0.6485234, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.7893327, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 19901\n",
+ "Discriminator Loss: tf.Tensor(1.0347615, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.6192192, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 19902\n",
+ "Discriminator Loss: tf.Tensor(1.1322844, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.08044251, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 19903\n",
+ "Discriminator Loss: tf.Tensor(1.0935125, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.3174118, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 19904\n",
+ "Discriminator Loss: tf.Tensor(1.0249557, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.085793614, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 19905\n",
+ "Discriminator Loss: tf.Tensor(1.2337729, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.1929101, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 19906\n",
+ "Discriminator Loss: tf.Tensor(0.868707, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.5789686, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 19907\n",
+ "Discriminator Loss: tf.Tensor(1.2929223, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.6116682, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 19908\n",
+ "Discriminator Loss: tf.Tensor(1.3040756, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.18442364, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 19909\n",
+ "Discriminator Loss: tf.Tensor(1.2164154, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.5903975, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 19910\n",
+ "Discriminator Loss: tf.Tensor(1.2055346, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.022832615, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 19911\n",
+ "Discriminator Loss: tf.Tensor(0.7478283, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.1586665, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 19912\n",
+ "Discriminator Loss: tf.Tensor(1.0294306, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.08140058, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 19913\n",
+ "Discriminator Loss: tf.Tensor(1.0803449, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.1090822, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 19914\n",
+ "Discriminator Loss: tf.Tensor(0.87386847, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.37489948, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 19915\n",
+ "Discriminator Loss: tf.Tensor(0.80881083, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.1291322, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 19916\n",
+ "Discriminator Loss: tf.Tensor(0.6913339, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.87131, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 19917\n",
+ "Discriminator Loss: tf.Tensor(0.7826468, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.0919261, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 19918\n",
+ "Discriminator Loss: tf.Tensor(0.9758894, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.12510945, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 19919\n",
+ "Discriminator Loss: tf.Tensor(1.4457747, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.6153613, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 19920\n",
+ "Discriminator Loss: tf.Tensor(1.174709, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.010481936, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 19921\n",
+ "Discriminator Loss: tf.Tensor(0.56658363, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.1492969, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 19922\n",
+ "Discriminator Loss: tf.Tensor(1.0817205, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.25317368, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 19923\n",
+ "Discriminator Loss: tf.Tensor(1.192275, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.5960923, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 19924\n",
+ "Discriminator Loss: tf.Tensor(0.92821443, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.4202795, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 19925\n",
+ "Discriminator Loss: tf.Tensor(0.63538146, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.0991439, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 19926\n",
+ "Discriminator Loss: tf.Tensor(0.7330355, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.4454076, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 19927\n",
+ "Discriminator Loss: tf.Tensor(1.1888435, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.0340583, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 19928\n",
+ "Discriminator Loss: tf.Tensor(1.3015865, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.08646049, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 19929\n",
+ "Discriminator Loss: tf.Tensor(1.0466516, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.9565037, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 19930\n",
+ "Discriminator Loss: tf.Tensor(0.1829007, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.9641469, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 19931\n",
+ "Discriminator Loss: tf.Tensor(1.2117305, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.4036382, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 19932\n",
+ "Discriminator Loss: tf.Tensor(1.3015455, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.29206, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 19933\n",
+ "Discriminator Loss: tf.Tensor(1.4310436, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.2891179, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 19934\n",
+ "Discriminator Loss: tf.Tensor(1.259074, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.06394409, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 19935\n",
+ "Discriminator Loss: tf.Tensor(1.167389, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.6384416, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 19936\n",
+ "Discriminator Loss: tf.Tensor(1.2503119, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.254088, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 19937\n",
+ "Discriminator Loss: tf.Tensor(1.3944587, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.22775076, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 19938\n",
+ "Discriminator Loss: tf.Tensor(1.2266573, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.1212034, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 19939\n",
+ "Discriminator Loss: tf.Tensor(1.2883637, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.039913133, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 19940\n",
+ "Discriminator Loss: tf.Tensor(0.9886025, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.3391863, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 19941\n",
+ "Discriminator Loss: tf.Tensor(1.1889567, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.06265586, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 19942\n",
+ "Discriminator Loss: tf.Tensor(0.6736733, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.2089952, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 19943\n",
+ "Discriminator Loss: tf.Tensor(0.9965029, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.18869682, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 19944\n",
+ "Discriminator Loss: tf.Tensor(0.89751387, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.3599015, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 19945\n",
+ "Discriminator Loss: tf.Tensor(0.85672796, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.43993673, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 19946\n",
+ "Discriminator Loss: tf.Tensor(0.9377842, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.6524693, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 19947\n",
+ "Discriminator Loss: tf.Tensor(1.003733, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.3707533, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 19948\n",
+ "Discriminator Loss: tf.Tensor(0.8269105, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.3562459, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 19949\n",
+ "Discriminator Loss: tf.Tensor(0.9522905, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.9044227, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 19950\n",
+ "Discriminator Loss: tf.Tensor(0.8526966, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.7603453, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 19951\n",
+ "Discriminator Loss: tf.Tensor(0.85054815, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.82978344, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 19952\n",
+ "Discriminator Loss: tf.Tensor(1.0220494, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.3914133, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 19953\n",
+ "Discriminator Loss: tf.Tensor(1.1604934, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.014081587, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 19954\n",
+ "Discriminator Loss: tf.Tensor(1.8182065, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.960915, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 19955\n",
+ "Discriminator Loss: tf.Tensor(1.3459561, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.1685616, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 19956\n",
+ "Discriminator Loss: tf.Tensor(1.0132892, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.7181391, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 19957\n",
+ "Discriminator Loss: tf.Tensor(0.5158373, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.914478, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 19958\n",
+ "Discriminator Loss: tf.Tensor(0.9660514, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.9500824, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 19959\n",
+ "Discriminator Loss: tf.Tensor(1.3727468, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.31998906, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 19960\n",
+ "Discriminator Loss: tf.Tensor(1.0566688, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.1564745, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 19961\n",
+ "Discriminator Loss: tf.Tensor(0.7780728, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.47883055, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 19962\n",
+ "Discriminator Loss: tf.Tensor(1.2082477, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.780817, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 19963\n",
+ "Discriminator Loss: tf.Tensor(1.0797852, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.035936724, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 19964\n",
+ "Discriminator Loss: tf.Tensor(0.79833794, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.0029024, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 19965\n",
+ "Discriminator Loss: tf.Tensor(0.7429427, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.4874475, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 19966\n",
+ "Discriminator Loss: tf.Tensor(1.0961101, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.1052694, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 19967\n",
+ "Discriminator Loss: tf.Tensor(1.1755238, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.10752982, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 19968\n",
+ "Discriminator Loss: tf.Tensor(0.84445435, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.1798961, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 19969\n",
+ "Discriminator Loss: tf.Tensor(1.1251272, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.09504199, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 19970\n",
+ "Discriminator Loss: tf.Tensor(1.2226993, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.3758951, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 19971\n",
+ "Discriminator Loss: tf.Tensor(0.95823276, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.29330322, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 19972\n",
+ "Discriminator Loss: tf.Tensor(0.9394345, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.7750471, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 19973\n",
+ "Discriminator Loss: tf.Tensor(0.8926799, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.9902784, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 19974\n",
+ "Discriminator Loss: tf.Tensor(0.66810334, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.3927349, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 19975\n",
+ "Discriminator Loss: tf.Tensor(0.9209703, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.0993613, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 19976\n",
+ "Discriminator Loss: tf.Tensor(1.2042215, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.08808795, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 19977\n",
+ "Discriminator Loss: tf.Tensor(1.1230052, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.8130045, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 19978\n",
+ "Discriminator Loss: tf.Tensor(1.3536675, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.24771734, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 19979\n",
+ "Discriminator Loss: tf.Tensor(1.0642974, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.6434621, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 19980\n",
+ "Discriminator Loss: tf.Tensor(1.1196195, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.5093342, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 19981\n",
+ "Discriminator Loss: tf.Tensor(1.2053525, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.031480554, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 19982\n",
+ "Discriminator Loss: tf.Tensor(0.6414368, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.081798, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 19983\n",
+ "Discriminator Loss: tf.Tensor(1.2160553, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.12301671, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 19984\n",
+ "Discriminator Loss: tf.Tensor(1.0626646, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.2038726, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 19985\n",
+ "Discriminator Loss: tf.Tensor(0.49549693, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.1946539, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 19986\n",
+ "Discriminator Loss: tf.Tensor(0.96612984, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.3202065, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 19987\n",
+ "Discriminator Loss: tf.Tensor(1.3379694, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.1400363, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 19988\n",
+ "Discriminator Loss: tf.Tensor(1.2903726, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.16337824, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 19989\n",
+ "Discriminator Loss: tf.Tensor(0.69320977, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.02876, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 19990\n",
+ "Discriminator Loss: tf.Tensor(0.90681654, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.29552507, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 19991\n",
+ "Discriminator Loss: tf.Tensor(1.3937879, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.7423152, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 19992\n",
+ "Discriminator Loss: tf.Tensor(1.3819206, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.15084748, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 19993\n",
+ "Discriminator Loss: tf.Tensor(0.90366584, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.97839457, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 19994\n",
+ "Discriminator Loss: tf.Tensor(0.90348333, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.7607129, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 19995\n",
+ "Discriminator Loss: tf.Tensor(1.4781052, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.1841166, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 19996\n",
+ "Discriminator Loss: tf.Tensor(0.9730266, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.2255528, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 19997\n",
+ "Discriminator Loss: tf.Tensor(1.1709237, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.7009794, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 19998\n",
+ "Discriminator Loss: tf.Tensor(1.0319403, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.026784947, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 19999\n",
+ "Discriminator Loss: tf.Tensor(0.9858283, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.2888402, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 20000\n",
+ "Discriminator Loss: tf.Tensor(0.90363157, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.22428155, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 20001\n",
+ "Discriminator Loss: tf.Tensor(1.1566694, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.5831589, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 20002\n",
+ "Discriminator Loss: tf.Tensor(1.0684505, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.22754955, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 20003\n",
+ "Discriminator Loss: tf.Tensor(0.503476, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.0996022, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 20004\n",
+ "Discriminator Loss: tf.Tensor(0.70725846, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.6247556, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 20005\n",
+ "Discriminator Loss: tf.Tensor(1.1847, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.5836395, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 20006\n",
+ "Discriminator Loss: tf.Tensor(1.1979604, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.044191692, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 20007\n",
+ "Discriminator Loss: tf.Tensor(1.1144055, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.5862258, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 20008\n",
+ "Discriminator Loss: tf.Tensor(0.49403927, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.7420827, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 20009\n",
+ "Discriminator Loss: tf.Tensor(0.623832, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.67153746, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 20010\n",
+ "Discriminator Loss: tf.Tensor(1.1538491, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.4196062, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 20011\n",
+ "Discriminator Loss: tf.Tensor(0.914675, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.13109474, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 20012\n",
+ "Discriminator Loss: tf.Tensor(1.344538, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.4317393, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 20013\n",
+ "Discriminator Loss: tf.Tensor(1.3532791, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.10257459, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 20014\n",
+ "Discriminator Loss: tf.Tensor(0.99948, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.93032855, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 20015\n",
+ "Discriminator Loss: tf.Tensor(0.79552734, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.3393856, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 20016\n",
+ "Discriminator Loss: tf.Tensor(1.2246493, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.7078543, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 20017\n",
+ "Discriminator Loss: tf.Tensor(1.1836046, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.059958767, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 20018\n",
+ "Discriminator Loss: tf.Tensor(0.90906394, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.1339597, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 20019\n",
+ "Discriminator Loss: tf.Tensor(1.0567832, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.13465442, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 20020\n",
+ "Discriminator Loss: tf.Tensor(0.839939, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.4890522, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 20021\n",
+ "Discriminator Loss: tf.Tensor(1.0266476, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.2465282, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 20022\n",
+ "Discriminator Loss: tf.Tensor(0.8765749, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.9745024, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 20023\n",
+ "Discriminator Loss: tf.Tensor(0.8655664, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.6022814, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 20024\n",
+ "Discriminator Loss: tf.Tensor(1.0278407, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.5728489, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 20025\n",
+ "Discriminator Loss: tf.Tensor(1.3807425, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.26047084, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 20026\n",
+ "Discriminator Loss: tf.Tensor(1.1132536, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.0795999, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 20027\n",
+ "Discriminator Loss: tf.Tensor(0.6480591, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.55381185, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 20028\n",
+ "Discriminator Loss: tf.Tensor(1.0360527, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.7214618, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 20029\n",
+ "Discriminator Loss: tf.Tensor(1.1504472, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.034055278, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 20030\n",
+ "Discriminator Loss: tf.Tensor(1.0090052, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.90114546, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 20031\n",
+ "Discriminator Loss: tf.Tensor(0.7784977, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.8659236, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 20032\n",
+ "Discriminator Loss: tf.Tensor(0.63700736, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.0418723, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 20033\n",
+ "Discriminator Loss: tf.Tensor(0.819497, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.8042888, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 20034\n",
+ "Discriminator Loss: tf.Tensor(1.459579, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.5289412, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 20035\n",
+ "Discriminator Loss: tf.Tensor(1.0517831, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.0656067, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 20036\n",
+ "Discriminator Loss: tf.Tensor(1.0040503, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.8642988, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 20037\n",
+ "Discriminator Loss: tf.Tensor(0.6986965, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.7272088, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 20038\n",
+ "Discriminator Loss: tf.Tensor(1.2474383, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.5776567, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 20039\n",
+ "Discriminator Loss: tf.Tensor(0.914322, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.24555165, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 20040\n",
+ "Discriminator Loss: tf.Tensor(1.0213655, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.5688915, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 20041\n",
+ "Discriminator Loss: tf.Tensor(0.9049413, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.35013282, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 20042\n",
+ "Discriminator Loss: tf.Tensor(0.61953545, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.2903446, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 20043\n",
+ "Discriminator Loss: tf.Tensor(0.94242144, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.45387617, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 20044\n",
+ "Discriminator Loss: tf.Tensor(1.7156448, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.8082253, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 20045\n",
+ "Discriminator Loss: tf.Tensor(1.2632253, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.0073675993, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 20046\n",
+ "Discriminator Loss: tf.Tensor(0.66528946, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.83010167, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 20047\n",
+ "Discriminator Loss: tf.Tensor(0.5284189, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.7979779, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 20048\n",
+ "Discriminator Loss: tf.Tensor(1.2818546, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.733646, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 20049\n",
+ "Discriminator Loss: tf.Tensor(1.1944245, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.15449402, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 20050\n",
+ "Discriminator Loss: tf.Tensor(0.96226937, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.1741679, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 20051\n",
+ "Discriminator Loss: tf.Tensor(0.8024347, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.52885586, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 20052\n",
+ "Discriminator Loss: tf.Tensor(0.775359, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.4360176, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 20053\n",
+ "Discriminator Loss: tf.Tensor(0.46366167, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.82374114, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 20054\n",
+ "Discriminator Loss: tf.Tensor(1.533921, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.4590105, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 20055\n",
+ "Discriminator Loss: tf.Tensor(1.128358, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.011613003, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 20056\n",
+ "Discriminator Loss: tf.Tensor(0.8982307, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.5034304, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 20057\n",
+ "Discriminator Loss: tf.Tensor(1.0338953, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.19354372, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 20058\n",
+ "Discriminator Loss: tf.Tensor(0.99162203, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.0737062, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 20059\n",
+ "Discriminator Loss: tf.Tensor(0.73950785, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.9218162, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 20060\n",
+ "Discriminator Loss: tf.Tensor(0.8949681, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.2885361, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 20061\n",
+ "Discriminator Loss: tf.Tensor(1.8418261, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.7993844, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 20062\n",
+ "Discriminator Loss: tf.Tensor(1.367258, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.3387437, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 20063\n",
+ "Discriminator Loss: tf.Tensor(0.94620854, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.2382846, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 20064\n",
+ "Discriminator Loss: tf.Tensor(0.674141, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.6706176, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 20065\n",
+ "Discriminator Loss: tf.Tensor(0.7590283, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.37522364, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 20066\n",
+ "Discriminator Loss: tf.Tensor(1.0532795, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.561335, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 20067\n",
+ "Discriminator Loss: tf.Tensor(0.9177729, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.24870281, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 20068\n",
+ "Discriminator Loss: tf.Tensor(1.2318051, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.4284521, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 20069\n",
+ "Discriminator Loss: tf.Tensor(1.2148921, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.011886648, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 20070\n",
+ "Discriminator Loss: tf.Tensor(0.79246134, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.0743906, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 20071\n",
+ "Discriminator Loss: tf.Tensor(1.0361255, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.50477654, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 20072\n",
+ "Discriminator Loss: tf.Tensor(1.2062347, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.6374208, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 20073\n",
+ "Discriminator Loss: tf.Tensor(1.6601944, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.53371733, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 20074\n",
+ "Discriminator Loss: tf.Tensor(0.7234643, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.7119131, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 20075\n",
+ "Discriminator Loss: tf.Tensor(0.78325516, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.4776855, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 20076\n",
+ "Discriminator Loss: tf.Tensor(0.9858976, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.24022032, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 20077\n",
+ "Discriminator Loss: tf.Tensor(1.5267999, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.0111732, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 20078\n",
+ "Discriminator Loss: tf.Tensor(1.3208218, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.22283208, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 20079\n",
+ "Discriminator Loss: tf.Tensor(0.79686034, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.9711428, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 20080\n",
+ "Discriminator Loss: tf.Tensor(0.27015144, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.3431457, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 20081\n",
+ "Discriminator Loss: tf.Tensor(0.7636874, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.0826964, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 20082\n",
+ "Discriminator Loss: tf.Tensor(1.2312366, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.23659648, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 20083\n",
+ "Discriminator Loss: tf.Tensor(1.9993873, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.9058155, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 20084\n",
+ "Discriminator Loss: tf.Tensor(1.1933907, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.028439837, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 20085\n",
+ "Discriminator Loss: tf.Tensor(0.8819967, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.718704, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 20086\n",
+ "Discriminator Loss: tf.Tensor(1.0834278, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.0010612, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 20087\n",
+ "Discriminator Loss: tf.Tensor(0.57157826, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.63899064, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 20088\n",
+ "Discriminator Loss: tf.Tensor(0.72935915, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.7463802, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 20089\n",
+ "Discriminator Loss: tf.Tensor(1.0127425, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.41277352, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 20090\n",
+ "Discriminator Loss: tf.Tensor(1.9387305, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.897554, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 20091\n",
+ "Discriminator Loss: tf.Tensor(0.6238553, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.5352321, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 20092\n",
+ "Discriminator Loss: tf.Tensor(1.1975427, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.0998894, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 20093\n",
+ "Discriminator Loss: tf.Tensor(1.4761418, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.015920445, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 20094\n",
+ "Discriminator Loss: tf.Tensor(0.8787271, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.2733835, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 20095\n",
+ "Discriminator Loss: tf.Tensor(1.3357743, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.23712085, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 20096\n",
+ "Discriminator Loss: tf.Tensor(0.7116905, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.3488039, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 20097\n",
+ "Discriminator Loss: tf.Tensor(1.3745892, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.1334429, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 20098\n",
+ "Discriminator Loss: tf.Tensor(0.6688702, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.1483539, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 20099\n",
+ "Discriminator Loss: tf.Tensor(0.57782036, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.6735368, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 20100\n",
+ "Discriminator Loss: tf.Tensor(0.97198516, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.1849777, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 20101\n",
+ "Discriminator Loss: tf.Tensor(0.8867, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.39474258, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 20102\n",
+ "Discriminator Loss: tf.Tensor(1.1774101, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.324811, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 20103\n",
+ "Discriminator Loss: tf.Tensor(1.3274715, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.12869075, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 20104\n",
+ "Discriminator Loss: tf.Tensor(1.0632334, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.064419, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 20105\n",
+ "Discriminator Loss: tf.Tensor(0.8567628, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.7734067, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 20106\n",
+ "Discriminator Loss: tf.Tensor(0.77535844, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.1143057, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 20107\n",
+ "Discriminator Loss: tf.Tensor(0.84120584, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.6721182, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 20108\n",
+ "Discriminator Loss: tf.Tensor(0.81239617, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.2050182, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 20109\n",
+ "Discriminator Loss: tf.Tensor(1.6767036, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.5809646, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 20110\n",
+ "Discriminator Loss: tf.Tensor(1.11181, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.2814993, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 20111\n",
+ "Discriminator Loss: tf.Tensor(1.0624065, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.17063083, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 20112\n",
+ "Discriminator Loss: tf.Tensor(1.1545856, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.4209687, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 20113\n",
+ "Discriminator Loss: tf.Tensor(0.7600553, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.39164624, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 20114\n",
+ "Discriminator Loss: tf.Tensor(1.0581691, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.9795966, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 20115\n",
+ "Discriminator Loss: tf.Tensor(0.41253325, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.7835367, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 20116\n",
+ "Discriminator Loss: tf.Tensor(1.1512789, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.2531195, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 20117\n",
+ "Discriminator Loss: tf.Tensor(1.2771398, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.23882109, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 20118\n",
+ "Discriminator Loss: tf.Tensor(1.1114452, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.1242493, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 20119\n",
+ "Discriminator Loss: tf.Tensor(1.2639166, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.18110032, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 20120\n",
+ "Discriminator Loss: tf.Tensor(0.5950515, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.0410937, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 20121\n",
+ "Discriminator Loss: tf.Tensor(0.730786, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.81660914, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 20122\n",
+ "Discriminator Loss: tf.Tensor(1.0477719, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.184464, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 20123\n",
+ "Discriminator Loss: tf.Tensor(1.5736604, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.43931016, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 20124\n",
+ "Discriminator Loss: tf.Tensor(1.2965415, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.4892629, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 20125\n",
+ "Discriminator Loss: tf.Tensor(1.2643644, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.061660808, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 20126\n",
+ "Discriminator Loss: tf.Tensor(0.73267215, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.2531036, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 20127\n",
+ "Discriminator Loss: tf.Tensor(0.65075064, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.61290616, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 20128\n",
+ "Discriminator Loss: tf.Tensor(1.2619, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.7874547, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 20129\n",
+ "Discriminator Loss: tf.Tensor(1.1058505, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.15567328, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 20130\n",
+ "Discriminator Loss: tf.Tensor(0.9780289, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.1148463, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 20131\n",
+ "Discriminator Loss: tf.Tensor(0.91151905, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.18202795, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 20132\n",
+ "Discriminator Loss: tf.Tensor(0.71217144, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.365347, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 20133\n",
+ "Discriminator Loss: tf.Tensor(0.7011695, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.5991011, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 20134\n",
+ "Discriminator Loss: tf.Tensor(1.0885627, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.2662659, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 20135\n",
+ "Discriminator Loss: tf.Tensor(1.0680492, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.11027303, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 20136\n",
+ "Discriminator Loss: tf.Tensor(0.98684025, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.6009725, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 20137\n",
+ "Discriminator Loss: tf.Tensor(1.1391504, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.09423194, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 20138\n",
+ "Discriminator Loss: tf.Tensor(1.1776061, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.2247218, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 20139\n",
+ "Discriminator Loss: tf.Tensor(1.3049737, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.2837457, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 20140\n",
+ "Discriminator Loss: tf.Tensor(0.8201268, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.023167, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 20141\n",
+ "Discriminator Loss: tf.Tensor(0.9411001, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.34205458, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 20142\n",
+ "Discriminator Loss: tf.Tensor(1.1036596, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.495657, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 20143\n",
+ "Discriminator Loss: tf.Tensor(1.4549437, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.2260511, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 20144\n",
+ "Discriminator Loss: tf.Tensor(0.901141, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.98199946, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 20145\n",
+ "Discriminator Loss: tf.Tensor(1.4558179, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.38669762, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 20146\n",
+ "Discriminator Loss: tf.Tensor(1.0020407, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.118409, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 20147\n",
+ "Discriminator Loss: tf.Tensor(0.95389664, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.32584572, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 20148\n",
+ "Discriminator Loss: tf.Tensor(1.0333582, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.7558674, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 20149\n",
+ "Discriminator Loss: tf.Tensor(0.81173885, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.32544637, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 20150\n",
+ "Discriminator Loss: tf.Tensor(0.7645124, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.7918029, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 20151\n",
+ "Discriminator Loss: tf.Tensor(0.6753641, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.5163987, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 20152\n",
+ "Discriminator Loss: tf.Tensor(0.98993814, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.7570257, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 20153\n",
+ "Discriminator Loss: tf.Tensor(1.1700373, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.0826053, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 20154\n",
+ "Discriminator Loss: tf.Tensor(1.1095927, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.83418626, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 20155\n",
+ "Discriminator Loss: tf.Tensor(0.68603116, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.78335947, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 20156\n",
+ "Discriminator Loss: tf.Tensor(1.1136436, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.5344328, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 20157\n",
+ "Discriminator Loss: tf.Tensor(0.8120329, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.30739024, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 20158\n",
+ "Discriminator Loss: tf.Tensor(1.1922235, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.3514835, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 20159\n",
+ "Discriminator Loss: tf.Tensor(0.6285163, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.6899808, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 20160\n",
+ "Discriminator Loss: tf.Tensor(0.7340571, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.3718785, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 20161\n",
+ "Discriminator Loss: tf.Tensor(1.009881, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.022469109, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 20162\n",
+ "Discriminator Loss: tf.Tensor(1.2032679, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.826553, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 20163\n",
+ "Discriminator Loss: tf.Tensor(1.1021719, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.43766728, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 20164\n",
+ "Discriminator Loss: tf.Tensor(0.57265604, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.1588501, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 20165\n",
+ "Discriminator Loss: tf.Tensor(1.1177344, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.09003786, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 20166\n",
+ "Discriminator Loss: tf.Tensor(1.2341313, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.9261127, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 20167\n",
+ "Discriminator Loss: tf.Tensor(0.7908699, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.28201485, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 20168\n",
+ "Discriminator Loss: tf.Tensor(0.8034199, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.4972836, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 20169\n",
+ "Discriminator Loss: tf.Tensor(0.5332498, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.5860212, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 20170\n",
+ "Discriminator Loss: tf.Tensor(1.5808619, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.1279364, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 20171\n",
+ "Discriminator Loss: tf.Tensor(1.8234252, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.4121996, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 20172\n",
+ "Discriminator Loss: tf.Tensor(0.82623655, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.8101239, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 20173\n",
+ "Discriminator Loss: tf.Tensor(0.4580279, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.9425704, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 20174\n",
+ "Discriminator Loss: tf.Tensor(0.28119949, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.1379827, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 20175\n",
+ "Discriminator Loss: tf.Tensor(1.3063877, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.0419446, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 20176\n",
+ "Discriminator Loss: tf.Tensor(0.5306743, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.7484799, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 20177\n",
+ "Discriminator Loss: tf.Tensor(1.9296328, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.3935542, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 20178\n",
+ "Discriminator Loss: tf.Tensor(1.2373351, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.012137252, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 20179\n",
+ "Discriminator Loss: tf.Tensor(0.78201866, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.3190848, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 20180\n",
+ "Discriminator Loss: tf.Tensor(0.88559866, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.25281247, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 20181\n",
+ "Discriminator Loss: tf.Tensor(1.1642239, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.4635991, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 20182\n",
+ "Discriminator Loss: tf.Tensor(1.0353594, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.07843279, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 20183\n",
+ "Discriminator Loss: tf.Tensor(1.166688, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.6159248, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 20184\n",
+ "Discriminator Loss: tf.Tensor(0.960556, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.1489197, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 20185\n",
+ "Discriminator Loss: tf.Tensor(0.870666, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.8535601, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 20186\n",
+ "Discriminator Loss: tf.Tensor(0.96542364, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.21238683, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 20187\n",
+ "Discriminator Loss: tf.Tensor(0.6906142, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.92372304, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 20188\n",
+ "Discriminator Loss: tf.Tensor(0.6926719, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.659304, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 20189\n",
+ "Discriminator Loss: tf.Tensor(0.9722308, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.2586752, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 20190\n",
+ "Discriminator Loss: tf.Tensor(1.1917253, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.0028738752, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 20191\n",
+ "Discriminator Loss: tf.Tensor(0.97694314, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.1566525, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 20192\n",
+ "Discriminator Loss: tf.Tensor(0.9299569, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.4381819, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 20193\n",
+ "Discriminator Loss: tf.Tensor(0.78384984, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.0603343, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 20194\n",
+ "Discriminator Loss: tf.Tensor(0.94013244, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.77865577, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 20195\n",
+ "Discriminator Loss: tf.Tensor(0.78493726, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.49677274, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 20196\n",
+ "Discriminator Loss: tf.Tensor(1.6686571, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.100037, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 20197\n",
+ "Discriminator Loss: tf.Tensor(1.1768554, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.10115052, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 20198\n",
+ "Discriminator Loss: tf.Tensor(1.0986515, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.4905616, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 20199\n",
+ "Discriminator Loss: tf.Tensor(1.1277754, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.006309042, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 20200\n",
+ "Discriminator Loss: tf.Tensor(0.56906086, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.0699848, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 20201\n",
+ "Discriminator Loss: tf.Tensor(1.2086868, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.28666636, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 20202\n",
+ "Discriminator Loss: tf.Tensor(0.9083937, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.7739981, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 20203\n",
+ "Discriminator Loss: tf.Tensor(0.8246194, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.0329864, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 20204\n",
+ "Discriminator Loss: tf.Tensor(0.57521564, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.0398318, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 20205\n",
+ "Discriminator Loss: tf.Tensor(0.7546238, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.5682435, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 20206\n",
+ "Discriminator Loss: tf.Tensor(1.8187643, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.3076081, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 20207\n",
+ "Discriminator Loss: tf.Tensor(1.649531, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.028283441, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 20208\n",
+ "Discriminator Loss: tf.Tensor(0.93176425, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.6006928, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 20209\n",
+ "Discriminator Loss: tf.Tensor(0.75641197, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.088611, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 20210\n",
+ "Discriminator Loss: tf.Tensor(1.3221921, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.3492583, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 20211\n",
+ "Discriminator Loss: tf.Tensor(1.177764, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.6349088, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 20212\n",
+ "Discriminator Loss: tf.Tensor(1.3161935, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.21883427, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 20213\n",
+ "Discriminator Loss: tf.Tensor(0.9609825, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.1007661, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 20214\n",
+ "Discriminator Loss: tf.Tensor(0.9800245, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.21555154, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 20215\n",
+ "Discriminator Loss: tf.Tensor(1.0706881, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.5415711, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 20216\n",
+ "Discriminator Loss: tf.Tensor(1.2436755, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.1196334, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 20217\n",
+ "Discriminator Loss: tf.Tensor(0.7027184, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.280464, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 20218\n",
+ "Discriminator Loss: tf.Tensor(1.0524268, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.11952245, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 20219\n",
+ "Discriminator Loss: tf.Tensor(0.78144634, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.2335721, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 20220\n",
+ "Discriminator Loss: tf.Tensor(1.1088743, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.26082233, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 20221\n",
+ "Discriminator Loss: tf.Tensor(1.0248919, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.9932113, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 20222\n",
+ "Discriminator Loss: tf.Tensor(0.47254723, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.0561267, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 20223\n",
+ "Discriminator Loss: tf.Tensor(1.0211711, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.4591303, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 20224\n",
+ "Discriminator Loss: tf.Tensor(1.3793741, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.18320966, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 20225\n",
+ "Discriminator Loss: tf.Tensor(1.1189936, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.2317013, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 20226\n",
+ "Discriminator Loss: tf.Tensor(1.211282, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.0643955, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 20227\n",
+ "Discriminator Loss: tf.Tensor(0.8523961, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.9927241, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 20228\n",
+ "Discriminator Loss: tf.Tensor(0.44854933, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.9461584, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 20229\n",
+ "Discriminator Loss: tf.Tensor(1.1427267, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.4816484, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 20230\n",
+ "Discriminator Loss: tf.Tensor(1.4928617, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.43966258, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 20231\n",
+ "Discriminator Loss: tf.Tensor(1.0006588, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.0441873, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 20232\n",
+ "Discriminator Loss: tf.Tensor(1.1951433, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.68487126, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 20233\n",
+ "Discriminator Loss: tf.Tensor(0.9995316, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.25970098, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 20234\n",
+ "Discriminator Loss: tf.Tensor(1.0943773, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.6819011, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 20235\n",
+ "Discriminator Loss: tf.Tensor(1.2680498, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.17398445, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 20236\n",
+ "Discriminator Loss: tf.Tensor(1.1697111, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.5305667, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 20237\n",
+ "Discriminator Loss: tf.Tensor(0.9220246, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.24703006, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 20238\n",
+ "Discriminator Loss: tf.Tensor(0.8825871, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.2200886, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 20239\n",
+ "Discriminator Loss: tf.Tensor(0.5337999, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.9489255, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 20240\n",
+ "Discriminator Loss: tf.Tensor(0.49657583, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.1765208, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 20241\n",
+ "Discriminator Loss: tf.Tensor(1.6925942, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.4943441, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 20242\n",
+ "Discriminator Loss: tf.Tensor(1.0964007, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.760926, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 20243\n",
+ "Discriminator Loss: tf.Tensor(1.2106004, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.1426557, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 20244\n",
+ "Discriminator Loss: tf.Tensor(0.96848667, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.1541105, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 20245\n",
+ "Discriminator Loss: tf.Tensor(1.2481824, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.2634059, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 20246\n",
+ "Discriminator Loss: tf.Tensor(0.7546135, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.63992316, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 20247\n",
+ "Discriminator Loss: tf.Tensor(0.7033024, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.6565012, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 20248\n",
+ "Discriminator Loss: tf.Tensor(1.3110378, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.010259013, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 20249\n",
+ "Discriminator Loss: tf.Tensor(1.2531147, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.7474979, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 20250\n",
+ "Discriminator Loss: tf.Tensor(1.5499825, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.32464775, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 20251\n",
+ "Discriminator Loss: tf.Tensor(0.9780839, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.6891635, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 20252\n",
+ "Discriminator Loss: tf.Tensor(0.8257899, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.4253277, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 20253\n",
+ "Discriminator Loss: tf.Tensor(1.1628484, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.06208275, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 20254\n",
+ "Discriminator Loss: tf.Tensor(1.1290294, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.1594622, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 20255\n",
+ "Discriminator Loss: tf.Tensor(1.0340396, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.34760904, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 20256\n",
+ "Discriminator Loss: tf.Tensor(1.3005805, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.138545, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 20257\n",
+ "Discriminator Loss: tf.Tensor(0.71280867, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.40615976, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 20258\n",
+ "Discriminator Loss: tf.Tensor(1.2845612, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.9455118, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 20259\n",
+ "Discriminator Loss: tf.Tensor(1.1194394, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.11258004, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 20260\n",
+ "Discriminator Loss: tf.Tensor(0.9147204, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.0392182, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 20261\n",
+ "Discriminator Loss: tf.Tensor(0.8675166, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.7928311, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 20262\n",
+ "Discriminator Loss: tf.Tensor(0.8186817, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.234368, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 20263\n",
+ "Discriminator Loss: tf.Tensor(0.69366443, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.8711068, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 20264\n",
+ "Discriminator Loss: tf.Tensor(0.7293825, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.9517961, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 20265\n",
+ "Discriminator Loss: tf.Tensor(0.7625108, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.137774, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 20266\n",
+ "Discriminator Loss: tf.Tensor(1.158921, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.35448983, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 20267\n",
+ "Discriminator Loss: tf.Tensor(1.6527526, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.1911876, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 20268\n",
+ "Discriminator Loss: tf.Tensor(1.3362877, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.2257811, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 20269\n",
+ "Discriminator Loss: tf.Tensor(1.2334028, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.87826324, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 20270\n",
+ "Discriminator Loss: tf.Tensor(0.8409117, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.61138886, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 20271\n",
+ "Discriminator Loss: tf.Tensor(1.1595894, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.2174274, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 20272\n",
+ "Discriminator Loss: tf.Tensor(0.8289266, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.26982322, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 20273\n",
+ "Discriminator Loss: tf.Tensor(1.8270581, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.0197928, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 20274\n",
+ "Discriminator Loss: tf.Tensor(1.1453842, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.055719048, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 20275\n",
+ "Discriminator Loss: tf.Tensor(0.7767872, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.2208631, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 20276\n",
+ "Discriminator Loss: tf.Tensor(0.7238097, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.4422892, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 20277\n",
+ "Discriminator Loss: tf.Tensor(0.92921615, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.6415974, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 20278\n",
+ "Discriminator Loss: tf.Tensor(0.8150116, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.24713953, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 20279\n",
+ "Discriminator Loss: tf.Tensor(1.5550219, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.3306149, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 20280\n",
+ "Discriminator Loss: tf.Tensor(1.0898908, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.022607187, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 20281\n",
+ "Discriminator Loss: tf.Tensor(0.9320948, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.1965362, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 20282\n",
+ "Discriminator Loss: tf.Tensor(1.0863011, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.102060795, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 20283\n",
+ "Discriminator Loss: tf.Tensor(1.499472, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.7689003, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 20284\n",
+ "Discriminator Loss: tf.Tensor(1.2878759, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.18824033, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 20285\n",
+ "Discriminator Loss: tf.Tensor(0.7868123, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.2272366, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 20286\n",
+ "Discriminator Loss: tf.Tensor(0.87580454, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.37263584, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 20287\n",
+ "Discriminator Loss: tf.Tensor(0.7063281, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.3615452, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 20288\n",
+ "Discriminator Loss: tf.Tensor(1.0758321, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.10791749, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 20289\n",
+ "Discriminator Loss: tf.Tensor(1.0571625, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.2572283, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 20290\n",
+ "Discriminator Loss: tf.Tensor(1.0207967, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.30014327, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 20291\n",
+ "Discriminator Loss: tf.Tensor(1.4519114, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.1598452, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 20292\n",
+ "Discriminator Loss: tf.Tensor(0.9274343, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.16257821, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 20293\n",
+ "Discriminator Loss: tf.Tensor(1.0279182, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.1291947, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 20294\n",
+ "Discriminator Loss: tf.Tensor(0.6795665, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.5092552, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 20295\n",
+ "Discriminator Loss: tf.Tensor(0.8578624, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.7983879, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 20296\n",
+ "Discriminator Loss: tf.Tensor(0.6658096, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.51376146, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 20297\n",
+ "Discriminator Loss: tf.Tensor(1.391553, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.2936705, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 20298\n",
+ "Discriminator Loss: tf.Tensor(0.77081203, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.46850383, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 20299\n",
+ "Discriminator Loss: tf.Tensor(1.144652, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.0043947, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 20300\n",
+ "Discriminator Loss: tf.Tensor(0.9879533, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.3283386, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 20301\n",
+ "Discriminator Loss: tf.Tensor(1.006234, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.12624778, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 20302\n",
+ "Discriminator Loss: tf.Tensor(1.1165584, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.5475053, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 20303\n",
+ "Discriminator Loss: tf.Tensor(0.94219446, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.17757253, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 20304\n",
+ "Discriminator Loss: tf.Tensor(1.11494, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.1262275, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 20305\n",
+ "Discriminator Loss: tf.Tensor(1.0185841, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.47479257, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 20306\n",
+ "Discriminator Loss: tf.Tensor(0.5372137, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.2071742, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 20307\n",
+ "Discriminator Loss: tf.Tensor(1.0332628, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.36401784, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 20308\n",
+ "Discriminator Loss: tf.Tensor(1.1515392, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.4908742, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 20309\n",
+ "Discriminator Loss: tf.Tensor(1.1927675, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.111947276, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 20310\n",
+ "Discriminator Loss: tf.Tensor(1.0162914, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.99706936, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 20311\n",
+ "Discriminator Loss: tf.Tensor(0.87300134, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.41715887, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 20312\n",
+ "Discriminator Loss: tf.Tensor(1.0752108, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.3577324, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 20313\n",
+ "Discriminator Loss: tf.Tensor(1.3219382, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.014626126, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 20314\n",
+ "Discriminator Loss: tf.Tensor(0.6682302, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.1628948, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 20315\n",
+ "Discriminator Loss: tf.Tensor(1.006413, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.537566, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 20316\n",
+ "Discriminator Loss: tf.Tensor(1.3762859, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.6827818, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 20317\n",
+ "Discriminator Loss: tf.Tensor(1.1159515, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.0068475357, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 20318\n",
+ "Discriminator Loss: tf.Tensor(0.9014143, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.0985454, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 20319\n",
+ "Discriminator Loss: tf.Tensor(0.8447392, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.21972221, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 20320\n",
+ "Discriminator Loss: tf.Tensor(0.79776627, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.2124358, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 20321\n",
+ "Discriminator Loss: tf.Tensor(0.5031324, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.8460541, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 20322\n",
+ "Discriminator Loss: tf.Tensor(1.461088, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.9493147, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 20323\n",
+ "Discriminator Loss: tf.Tensor(1.0271206, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.15646844, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 20324\n",
+ "Discriminator Loss: tf.Tensor(0.86399096, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.8876315, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 20325\n",
+ "Discriminator Loss: tf.Tensor(1.3941287, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.4850316, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 20326\n",
+ "Discriminator Loss: tf.Tensor(1.8265816, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.7843456, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 20327\n",
+ "Discriminator Loss: tf.Tensor(1.1170882, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.7938121, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 20328\n",
+ "Discriminator Loss: tf.Tensor(0.93349653, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.37613165, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 20329\n",
+ "Discriminator Loss: tf.Tensor(1.3041286, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.156484, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 20330\n",
+ "Discriminator Loss: tf.Tensor(0.7658096, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.77380276, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 20331\n",
+ "Discriminator Loss: tf.Tensor(0.82387334, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.0146197, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 20332\n",
+ "Discriminator Loss: tf.Tensor(1.1086272, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.0402228, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 20333\n",
+ "Discriminator Loss: tf.Tensor(0.8388108, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.32252726, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 20334\n",
+ "Discriminator Loss: tf.Tensor(1.591961, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.2768872, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 20335\n",
+ "Discriminator Loss: tf.Tensor(1.2244083, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.036789354, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 20336\n",
+ "Discriminator Loss: tf.Tensor(1.0965984, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.2272015, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 20337\n",
+ "Discriminator Loss: tf.Tensor(0.7094592, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.46329227, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 20338\n",
+ "Discriminator Loss: tf.Tensor(1.0758773, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.4215851, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 20339\n",
+ "Discriminator Loss: tf.Tensor(0.7972927, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.4164455, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 20340\n",
+ "Discriminator Loss: tf.Tensor(1.1444116, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.1699954, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 20341\n",
+ "Discriminator Loss: tf.Tensor(0.63983345, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.6974063, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 20342\n",
+ "Discriminator Loss: tf.Tensor(1.2687213, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.0215845, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 20343\n",
+ "Discriminator Loss: tf.Tensor(1.5922729, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.40041354, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 20344\n",
+ "Discriminator Loss: tf.Tensor(0.56376386, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.1134712, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 20345\n",
+ "Discriminator Loss: tf.Tensor(0.5850778, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.8558901, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 20346\n",
+ "Discriminator Loss: tf.Tensor(0.77623045, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.7481173, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 20347\n",
+ "Discriminator Loss: tf.Tensor(0.7498153, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.3795433, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 20348\n",
+ "Discriminator Loss: tf.Tensor(1.4942234, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.812911, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 20349\n",
+ "Discriminator Loss: tf.Tensor(0.8022828, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.31615862, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 20350\n",
+ "Discriminator Loss: tf.Tensor(0.9581885, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.2092906, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 20351\n",
+ "Discriminator Loss: tf.Tensor(1.0245764, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.15242638, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 20352\n",
+ "Discriminator Loss: tf.Tensor(0.8420758, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.0710269, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 20353\n",
+ "Discriminator Loss: tf.Tensor(1.0113008, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.0059938, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 20354\n",
+ "Discriminator Loss: tf.Tensor(0.73371774, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.6859309, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 20355\n",
+ "Discriminator Loss: tf.Tensor(1.3939457, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.119981, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 20356\n",
+ "Discriminator Loss: tf.Tensor(0.95810115, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.07777714, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 20357\n",
+ "Discriminator Loss: tf.Tensor(0.96524185, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.4110456, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 20358\n",
+ "Discriminator Loss: tf.Tensor(0.7657324, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.37326217, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 20359\n",
+ "Discriminator Loss: tf.Tensor(1.0424082, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.666622, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 20360\n",
+ "Discriminator Loss: tf.Tensor(0.8983576, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.15001751, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 20361\n",
+ "Discriminator Loss: tf.Tensor(1.1074446, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.1625338, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 20362\n",
+ "Discriminator Loss: tf.Tensor(0.75013316, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.37234902, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 20363\n",
+ "Discriminator Loss: tf.Tensor(1.1433412, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.0430623, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 20364\n",
+ "Discriminator Loss: tf.Tensor(0.68546915, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.0739024, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 20365\n",
+ "Discriminator Loss: tf.Tensor(1.4034718, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.19472325, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 20366\n",
+ "Discriminator Loss: tf.Tensor(0.76323104, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.5376352, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 20367\n",
+ "Discriminator Loss: tf.Tensor(1.356749, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.021958709, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 20368\n",
+ "Discriminator Loss: tf.Tensor(0.8703796, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.2724458, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 20369\n",
+ "Discriminator Loss: tf.Tensor(1.1052543, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.0030077521, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 20370\n",
+ "Discriminator Loss: tf.Tensor(1.3254237, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.2646037, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 20371\n",
+ "Discriminator Loss: tf.Tensor(1.2675692, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.067801654, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 20372\n",
+ "Discriminator Loss: tf.Tensor(0.95815426, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.7885309, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 20373\n",
+ "Discriminator Loss: tf.Tensor(1.1494963, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.4139743, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 20374\n",
+ "Discriminator Loss: tf.Tensor(0.6521887, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.2470888, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 20375\n",
+ "Discriminator Loss: tf.Tensor(1.0627941, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.036719978, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 20376\n",
+ "Discriminator Loss: tf.Tensor(1.0978189, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.4230932, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 20377\n",
+ "Discriminator Loss: tf.Tensor(0.9855833, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.15659626, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 20378\n",
+ "Discriminator Loss: tf.Tensor(1.3058941, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.8858288, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 20379\n",
+ "Discriminator Loss: tf.Tensor(0.6632968, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.9608514, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 20380\n",
+ "Discriminator Loss: tf.Tensor(0.7382587, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.4944767, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 20381\n",
+ "Discriminator Loss: tf.Tensor(1.7177022, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.1457326, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 20382\n",
+ "Discriminator Loss: tf.Tensor(1.2659366, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.050929468, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 20383\n",
+ "Discriminator Loss: tf.Tensor(0.9488838, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.47552478, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 20384\n",
+ "Discriminator Loss: tf.Tensor(0.7274878, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.3033677, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 20385\n",
+ "Discriminator Loss: tf.Tensor(0.88326937, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.0667361, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 20386\n",
+ "Discriminator Loss: tf.Tensor(0.7675009, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.7218337, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 20387\n",
+ "Discriminator Loss: tf.Tensor(1.1729462, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.9579339, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 20388\n",
+ "Discriminator Loss: tf.Tensor(0.6548653, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.40948865, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 20389\n",
+ "Discriminator Loss: tf.Tensor(1.0745319, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.3682165, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 20390\n",
+ "Discriminator Loss: tf.Tensor(0.9827063, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.36885706, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 20391\n",
+ "Discriminator Loss: tf.Tensor(1.3222095, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.4171764, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 20392\n",
+ "Discriminator Loss: tf.Tensor(1.1899327, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.14944081, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 20393\n",
+ "Discriminator Loss: tf.Tensor(0.910674, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.9240013, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 20394\n",
+ "Discriminator Loss: tf.Tensor(0.51603025, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.0577732, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 20395\n",
+ "Discriminator Loss: tf.Tensor(0.8177508, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.37389457, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 20396\n",
+ "Discriminator Loss: tf.Tensor(1.716649, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.0708425, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 20397\n",
+ "Discriminator Loss: tf.Tensor(0.83607924, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.28604916, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 20398\n",
+ "Discriminator Loss: tf.Tensor(0.6435617, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.211879, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 20399\n",
+ "Discriminator Loss: tf.Tensor(1.2704765, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.49799213, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 20400\n",
+ "Discriminator Loss: tf.Tensor(1.2586426, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.2418171, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 20401\n",
+ "Discriminator Loss: tf.Tensor(1.2289895, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.13366108, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 20402\n",
+ "Discriminator Loss: tf.Tensor(0.91750354, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.1413313, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 20403\n",
+ "Discriminator Loss: tf.Tensor(0.8003715, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.36325547, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 20404\n",
+ "Discriminator Loss: tf.Tensor(1.1940616, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.6967272, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 20405\n",
+ "Discriminator Loss: tf.Tensor(0.90922993, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.18620181, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 20406\n",
+ "Discriminator Loss: tf.Tensor(1.0758271, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.8431563, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 20407\n",
+ "Discriminator Loss: tf.Tensor(0.6501697, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.183647, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 20408\n",
+ "Discriminator Loss: tf.Tensor(0.7978767, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.37495586, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 20409\n",
+ "Discriminator Loss: tf.Tensor(1.1352583, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.6432279, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 20410\n",
+ "Discriminator Loss: tf.Tensor(1.0907283, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.03108477, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 20411\n",
+ "Discriminator Loss: tf.Tensor(0.6058713, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.3111877, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 20412\n",
+ "Discriminator Loss: tf.Tensor(0.7426549, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.47412586, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 20413\n",
+ "Discriminator Loss: tf.Tensor(1.0247382, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.1981997, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 20414\n",
+ "Discriminator Loss: tf.Tensor(0.77999955, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.5235735, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 20415\n",
+ "Discriminator Loss: tf.Tensor(0.89445996, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.2496976, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 20416\n",
+ "Discriminator Loss: tf.Tensor(0.9726137, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.24206674, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 20417\n",
+ "Discriminator Loss: tf.Tensor(1.4194764, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.1163788, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 20418\n",
+ "Discriminator Loss: tf.Tensor(0.8975962, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.30310678, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 20419\n",
+ "Discriminator Loss: tf.Tensor(0.7500363, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.0109967, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 20420\n",
+ "Discriminator Loss: tf.Tensor(0.6149076, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.996453, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 20421\n",
+ "Discriminator Loss: tf.Tensor(0.69246113, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.2640102, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 20422\n",
+ "Discriminator Loss: tf.Tensor(0.53149426, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.7206679, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 20423\n",
+ "Discriminator Loss: tf.Tensor(1.7834065, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.7640877, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 20424\n",
+ "Discriminator Loss: tf.Tensor(1.7416735, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.24097343, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 20425\n",
+ "Discriminator Loss: tf.Tensor(0.67022514, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.9530535, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 20426\n",
+ "Discriminator Loss: tf.Tensor(0.6991474, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.56371903, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 20427\n",
+ "Discriminator Loss: tf.Tensor(1.7544761, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.2111943, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 20428\n",
+ "Discriminator Loss: tf.Tensor(0.78197855, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.296878, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 20429\n",
+ "Discriminator Loss: tf.Tensor(0.68946886, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.2327788, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 20430\n",
+ "Discriminator Loss: tf.Tensor(0.7277093, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.68261844, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 20431\n",
+ "Discriminator Loss: tf.Tensor(0.6857281, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.3859988, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 20432\n",
+ "Discriminator Loss: tf.Tensor(0.74087775, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.396288, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 20433\n",
+ "Discriminator Loss: tf.Tensor(0.7474367, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.5841069, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 20434\n",
+ "Discriminator Loss: tf.Tensor(0.459469, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.0645181, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 20435\n",
+ "Discriminator Loss: tf.Tensor(0.98872423, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.2503191, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 20436\n",
+ "Discriminator Loss: tf.Tensor(0.94131255, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.12238749, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 20437\n",
+ "Discriminator Loss: tf.Tensor(1.1144215, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.7430862, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 20438\n",
+ "Discriminator Loss: tf.Tensor(1.0288129, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.15138482, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 20439\n",
+ "Discriminator Loss: tf.Tensor(1.1999224, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.2308232, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 20440\n",
+ "Discriminator Loss: tf.Tensor(1.0948277, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.120808214, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 20441\n",
+ "Discriminator Loss: tf.Tensor(0.8052273, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.1093448, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 20442\n",
+ "Discriminator Loss: tf.Tensor(0.70002586, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.45042548, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 20443\n",
+ "Discriminator Loss: tf.Tensor(1.4670475, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.8078593, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 20444\n",
+ "Discriminator Loss: tf.Tensor(1.1832678, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.07869498, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 20445\n",
+ "Discriminator Loss: tf.Tensor(0.9486668, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.8842991, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 20446\n",
+ "Discriminator Loss: tf.Tensor(1.0914977, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.26074174, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 20447\n",
+ "Discriminator Loss: tf.Tensor(0.6623666, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.6095206, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 20448\n",
+ "Discriminator Loss: tf.Tensor(1.0236627, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.1597174, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 20449\n",
+ "Discriminator Loss: tf.Tensor(0.89706576, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.7008499, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 20450\n",
+ "Discriminator Loss: tf.Tensor(1.3819368, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.32023165, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 20451\n",
+ "Discriminator Loss: tf.Tensor(1.167546, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.4938884, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 20452\n",
+ "Discriminator Loss: tf.Tensor(1.1218804, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.17277758, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 20453\n",
+ "Discriminator Loss: tf.Tensor(0.61933494, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.4790068, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 20454\n",
+ "Discriminator Loss: tf.Tensor(1.1911905, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.24213143, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 20455\n",
+ "Discriminator Loss: tf.Tensor(0.76213133, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.0262746, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 20456\n",
+ "Discriminator Loss: tf.Tensor(0.5154909, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.9095699, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 20457\n",
+ "Discriminator Loss: tf.Tensor(0.92553407, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.3559583, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 20458\n",
+ "Discriminator Loss: tf.Tensor(1.536526, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.0337355, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 20459\n",
+ "Discriminator Loss: tf.Tensor(1.0349759, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.19650853, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 20460\n",
+ "Discriminator Loss: tf.Tensor(1.0963565, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.0822215, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 20461\n",
+ "Discriminator Loss: tf.Tensor(0.7908932, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.32816607, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 20462\n",
+ "Discriminator Loss: tf.Tensor(0.7847966, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.5291694, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 20463\n",
+ "Discriminator Loss: tf.Tensor(0.9517625, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.3132679, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 20464\n",
+ "Discriminator Loss: tf.Tensor(1.0910282, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.4316801, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 20465\n",
+ "Discriminator Loss: tf.Tensor(1.6030935, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.5689251, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 20466\n",
+ "Discriminator Loss: tf.Tensor(0.8015869, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.2071828, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 20467\n",
+ "Discriminator Loss: tf.Tensor(1.0320916, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.08746364, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 20468\n",
+ "Discriminator Loss: tf.Tensor(1.3257662, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.646811, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 20469\n",
+ "Discriminator Loss: tf.Tensor(1.4537207, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.2916392, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 20470\n",
+ "Discriminator Loss: tf.Tensor(1.2619607, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.707881, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 20471\n",
+ "Discriminator Loss: tf.Tensor(0.8146967, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.1409098, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 20472\n",
+ "Discriminator Loss: tf.Tensor(1.0554322, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.06751812, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 20473\n",
+ "Discriminator Loss: tf.Tensor(0.85580003, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.3747915, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 20474\n",
+ "Discriminator Loss: tf.Tensor(1.2482859, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.111865826, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 20475\n",
+ "Discriminator Loss: tf.Tensor(1.1730156, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.6798235, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 20476\n",
+ "Discriminator Loss: tf.Tensor(0.9448802, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.116902865, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 20477\n",
+ "Discriminator Loss: tf.Tensor(1.2633554, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.6027767, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 20478\n",
+ "Discriminator Loss: tf.Tensor(0.9741316, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.3297383, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 20479\n",
+ "Discriminator Loss: tf.Tensor(1.0423306, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.037847918, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 20480\n",
+ "Discriminator Loss: tf.Tensor(0.9274013, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.6223793, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 20481\n",
+ "Discriminator Loss: tf.Tensor(1.0775248, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.043807518, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 20482\n",
+ "Discriminator Loss: tf.Tensor(0.88626456, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.020822, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 20483\n",
+ "Discriminator Loss: tf.Tensor(0.64071435, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.54249436, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 20484\n",
+ "Discriminator Loss: tf.Tensor(1.4516181, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.6448759, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 20485\n",
+ "Discriminator Loss: tf.Tensor(0.65397334, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.54943806, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 20486\n",
+ "Discriminator Loss: tf.Tensor(1.009552, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.4394892, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 20487\n",
+ "Discriminator Loss: tf.Tensor(0.8360457, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.41147494, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 20488\n",
+ "Discriminator Loss: tf.Tensor(1.3871093, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.6894621, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 20489\n",
+ "Discriminator Loss: tf.Tensor(1.1842843, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.10212084, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 20490\n",
+ "Discriminator Loss: tf.Tensor(0.8597539, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.2232138, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 20491\n",
+ "Discriminator Loss: tf.Tensor(0.8222999, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.20980184, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 20492\n",
+ "Discriminator Loss: tf.Tensor(1.6325514, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.8522406, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 20493\n",
+ "Discriminator Loss: tf.Tensor(1.0476878, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.2230535, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 20494\n",
+ "Discriminator Loss: tf.Tensor(0.70257777, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.84184223, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 20495\n",
+ "Discriminator Loss: tf.Tensor(0.6931523, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.3513986, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 20496\n",
+ "Discriminator Loss: tf.Tensor(0.6457867, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.57449317, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 20497\n",
+ "Discriminator Loss: tf.Tensor(0.90363014, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.4143277, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 20498\n",
+ "Discriminator Loss: tf.Tensor(0.9405716, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.20384789, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 20499\n",
+ "Discriminator Loss: tf.Tensor(1.4882642, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.85474616, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 20500\n",
+ "Discriminator Loss: tf.Tensor(0.8272668, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.3008536, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 20501\n",
+ "Discriminator Loss: tf.Tensor(0.6707903, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.36972356, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 20502\n",
+ "Discriminator Loss: tf.Tensor(1.2950374, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.7745838, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 20503\n",
+ "Discriminator Loss: tf.Tensor(1.3042055, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.1375522, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 20504\n",
+ "Discriminator Loss: tf.Tensor(0.8839677, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.076075, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 20505\n",
+ "Discriminator Loss: tf.Tensor(0.68710905, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.8195204, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 20506\n",
+ "Discriminator Loss: tf.Tensor(0.48669016, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.0511498, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 20507\n",
+ "Discriminator Loss: tf.Tensor(0.69921494, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.9993372, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 20508\n",
+ "Discriminator Loss: tf.Tensor(1.4593272, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.12818398, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 20509\n",
+ "Discriminator Loss: tf.Tensor(1.4681137, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.6813046, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 20510\n",
+ "Discriminator Loss: tf.Tensor(1.191459, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.10525308, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 20511\n",
+ "Discriminator Loss: tf.Tensor(0.8367639, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.8463606, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 20512\n",
+ "Discriminator Loss: tf.Tensor(0.6749116, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.8763196, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 20513\n",
+ "Discriminator Loss: tf.Tensor(0.4639902, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.9822562, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 20514\n",
+ "Discriminator Loss: tf.Tensor(1.0957494, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.1743835, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 20515\n",
+ "Discriminator Loss: tf.Tensor(0.76727974, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.8790426, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 20516\n",
+ "Discriminator Loss: tf.Tensor(0.7912466, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.9537842, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 20517\n",
+ "Discriminator Loss: tf.Tensor(1.0586067, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.0872005, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 20518\n",
+ "Discriminator Loss: tf.Tensor(1.3257598, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.2790723, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 20519\n",
+ "Discriminator Loss: tf.Tensor(1.0432452, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.5808271, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 20520\n",
+ "Discriminator Loss: tf.Tensor(0.703521, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.75807077, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 20521\n",
+ "Discriminator Loss: tf.Tensor(0.926758, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.61696076, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 20522\n",
+ "Discriminator Loss: tf.Tensor(0.82491195, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.5041481, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 20523\n",
+ "Discriminator Loss: tf.Tensor(1.0015815, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.23718385, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 20524\n",
+ "Discriminator Loss: tf.Tensor(1.152881, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.7347064, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 20525\n",
+ "Discriminator Loss: tf.Tensor(1.4659065, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.37469375, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 20526\n",
+ "Discriminator Loss: tf.Tensor(1.0672947, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.9735389, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 20527\n",
+ "Discriminator Loss: tf.Tensor(0.6763425, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.6248252, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 20528\n",
+ "Discriminator Loss: tf.Tensor(0.6709255, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.1776085, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 20529\n",
+ "Discriminator Loss: tf.Tensor(0.8658105, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.7658954, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 20530\n",
+ "Discriminator Loss: tf.Tensor(0.89817125, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.99765253, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 20531\n",
+ "Discriminator Loss: tf.Tensor(0.83256984, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.5444116, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 20532\n",
+ "Discriminator Loss: tf.Tensor(1.9962339, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.9956805, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 20533\n",
+ "Discriminator Loss: tf.Tensor(0.95160955, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.19739662, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 20534\n",
+ "Discriminator Loss: tf.Tensor(0.53050053, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.77674645, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 20535\n",
+ "Discriminator Loss: tf.Tensor(1.3560064, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.4830323, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 20536\n",
+ "Discriminator Loss: tf.Tensor(1.2637354, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.049952045, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 20537\n",
+ "Discriminator Loss: tf.Tensor(0.41738337, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.0699584, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 20538\n",
+ "Discriminator Loss: tf.Tensor(0.96103835, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.40504304, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 20539\n",
+ "Discriminator Loss: tf.Tensor(0.78632, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.4028689, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 20540\n",
+ "Discriminator Loss: tf.Tensor(1.4947807, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.35344958, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 20541\n",
+ "Discriminator Loss: tf.Tensor(1.1804954, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.2111262, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 20542\n",
+ "Discriminator Loss: tf.Tensor(0.93503284, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.3021426, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 20543\n",
+ "Discriminator Loss: tf.Tensor(1.2808659, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.1821791, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 20544\n",
+ "Discriminator Loss: tf.Tensor(1.0713294, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.8508859, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 20545\n",
+ "Discriminator Loss: tf.Tensor(1.295685, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.60578156, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 20546\n",
+ "Discriminator Loss: tf.Tensor(1.0437512, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.2181009, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 20547\n",
+ "Discriminator Loss: tf.Tensor(0.70651174, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.7775369, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 20548\n",
+ "Discriminator Loss: tf.Tensor(1.0624673, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.8135504, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 20549\n",
+ "Discriminator Loss: tf.Tensor(1.2766033, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.092798285, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 20550\n",
+ "Discriminator Loss: tf.Tensor(0.94842416, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.4025444, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 20551\n",
+ "Discriminator Loss: tf.Tensor(1.0324981, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.19010293, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 20552\n",
+ "Discriminator Loss: tf.Tensor(0.7643677, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.009569, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 20553\n",
+ "Discriminator Loss: tf.Tensor(0.95337445, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.3339572, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 20554\n",
+ "Discriminator Loss: tf.Tensor(1.0627434, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.1728927, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 20555\n",
+ "Discriminator Loss: tf.Tensor(0.67373943, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.1740404, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 20556\n",
+ "Discriminator Loss: tf.Tensor(0.83330846, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.0023514, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 20557\n",
+ "Discriminator Loss: tf.Tensor(0.941037, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.5708329, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 20558\n",
+ "Discriminator Loss: tf.Tensor(0.7362845, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.0486337, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 20559\n",
+ "Discriminator Loss: tf.Tensor(0.85745394, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.58454967, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 20560\n",
+ "Discriminator Loss: tf.Tensor(1.8715892, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.702404, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 20561\n",
+ "Discriminator Loss: tf.Tensor(1.1526973, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.010996719, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 20562\n",
+ "Discriminator Loss: tf.Tensor(0.99280787, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.92082447, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 20563\n",
+ "Discriminator Loss: tf.Tensor(0.76632905, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.6484336, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 20564\n",
+ "Discriminator Loss: tf.Tensor(1.8333663, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.2943761, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 20565\n",
+ "Discriminator Loss: tf.Tensor(1.346672, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.029328028, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 20566\n",
+ "Discriminator Loss: tf.Tensor(1.0232483, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.66715074, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 20567\n",
+ "Discriminator Loss: tf.Tensor(1.0364609, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.6290311, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 20568\n",
+ "Discriminator Loss: tf.Tensor(0.9286945, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.21130729, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 20569\n",
+ "Discriminator Loss: tf.Tensor(0.7770359, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.4201323, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 20570\n",
+ "Discriminator Loss: tf.Tensor(0.5243506, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.8020626, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 20571\n",
+ "Discriminator Loss: tf.Tensor(0.9395496, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.4817142, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 20572\n",
+ "Discriminator Loss: tf.Tensor(1.2262435, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.10808732, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 20573\n",
+ "Discriminator Loss: tf.Tensor(0.69574815, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.3085233, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 20574\n",
+ "Discriminator Loss: tf.Tensor(0.85259026, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.2846913, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 20575\n",
+ "Discriminator Loss: tf.Tensor(1.0729707, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.8053098, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 20576\n",
+ "Discriminator Loss: tf.Tensor(1.2015222, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.17191641, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 20577\n",
+ "Discriminator Loss: tf.Tensor(0.88907653, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.79656655, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 20578\n",
+ "Discriminator Loss: tf.Tensor(0.6542539, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.691907, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 20579\n",
+ "Discriminator Loss: tf.Tensor(1.6115015, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.12160496, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 20580\n",
+ "Discriminator Loss: tf.Tensor(0.9366844, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.1416605, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 20581\n",
+ "Discriminator Loss: tf.Tensor(0.92859644, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.5998576, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 20582\n",
+ "Discriminator Loss: tf.Tensor(0.9656673, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.2361685, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 20583\n",
+ "Discriminator Loss: tf.Tensor(1.2707679, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.16008343, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 20584\n",
+ "Discriminator Loss: tf.Tensor(0.8804507, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.85323566, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 20585\n",
+ "Discriminator Loss: tf.Tensor(0.646046, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.1910542, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 20586\n",
+ "Discriminator Loss: tf.Tensor(1.0175375, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.4645733, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 20587\n",
+ "Discriminator Loss: tf.Tensor(1.6563907, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.289099, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 20588\n",
+ "Discriminator Loss: tf.Tensor(1.4489024, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.41113266, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 20589\n",
+ "Discriminator Loss: tf.Tensor(1.321368, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.8176159, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 20590\n",
+ "Discriminator Loss: tf.Tensor(0.6666294, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.6977752, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 20591\n",
+ "Discriminator Loss: tf.Tensor(1.2210181, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.2490963, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 20592\n",
+ "Discriminator Loss: tf.Tensor(1.3195978, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.22861618, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 20593\n",
+ "Discriminator Loss: tf.Tensor(0.9838769, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.1699618, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 20594\n",
+ "Discriminator Loss: tf.Tensor(0.8835009, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.6523728, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 20595\n",
+ "Discriminator Loss: tf.Tensor(1.0624909, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.1340526, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 20596\n",
+ "Discriminator Loss: tf.Tensor(1.1422572, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.08016106, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 20597\n",
+ "Discriminator Loss: tf.Tensor(0.86783487, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.2385079, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 20598\n",
+ "Discriminator Loss: tf.Tensor(1.3011733, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.22153115, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 20599\n",
+ "Discriminator Loss: tf.Tensor(0.76510215, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.2592213, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 20600\n",
+ "Discriminator Loss: tf.Tensor(1.0341645, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.16185318, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 20601\n",
+ "Discriminator Loss: tf.Tensor(1.4563596, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.2393066, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 20602\n",
+ "Discriminator Loss: tf.Tensor(0.7782806, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.36424145, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 20603\n",
+ "Discriminator Loss: tf.Tensor(1.1214039, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.4541875, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 20604\n",
+ "Discriminator Loss: tf.Tensor(0.6098424, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.55292934, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 20605\n",
+ "Discriminator Loss: tf.Tensor(0.6098272, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.6553739, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 20606\n",
+ "Discriminator Loss: tf.Tensor(1.2814653, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.01644963, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 20607\n",
+ "Discriminator Loss: tf.Tensor(1.2418313, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.5025364, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 20608\n",
+ "Discriminator Loss: tf.Tensor(1.0477786, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.003123143, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 20609\n",
+ "Discriminator Loss: tf.Tensor(1.0511998, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.0323664, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 20610\n",
+ "Discriminator Loss: tf.Tensor(1.2465615, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.023986831, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 20611\n",
+ "Discriminator Loss: tf.Tensor(1.2270774, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.65926695, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 20612\n",
+ "Discriminator Loss: tf.Tensor(0.8228909, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.0039266, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 20613\n",
+ "Discriminator Loss: tf.Tensor(0.5046909, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.87702966, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 20614\n",
+ "Discriminator Loss: tf.Tensor(0.77041966, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.2461413, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 20615\n",
+ "Discriminator Loss: tf.Tensor(1.0397084, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.10595549, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 20616\n",
+ "Discriminator Loss: tf.Tensor(1.5148833, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.4448904, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 20617\n",
+ "Discriminator Loss: tf.Tensor(1.201449, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.14990683, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 20618\n",
+ "Discriminator Loss: tf.Tensor(1.3451166, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.1857861, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 20619\n",
+ "Discriminator Loss: tf.Tensor(0.82265306, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.5533988, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 20620\n",
+ "Discriminator Loss: tf.Tensor(0.66092896, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.3776708, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 20621\n",
+ "Discriminator Loss: tf.Tensor(0.7412174, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.49405932, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 20622\n",
+ "Discriminator Loss: tf.Tensor(1.3240404, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.484292, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 20623\n",
+ "Discriminator Loss: tf.Tensor(1.2810421, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.03267371, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 20624\n",
+ "Discriminator Loss: tf.Tensor(1.296996, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.1951727, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 20625\n",
+ "Discriminator Loss: tf.Tensor(0.9156317, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.2545121, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 20626\n",
+ "Discriminator Loss: tf.Tensor(0.8654876, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.4115843, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 20627\n",
+ "Discriminator Loss: tf.Tensor(0.96691954, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.15483503, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 20628\n",
+ "Discriminator Loss: tf.Tensor(1.1615248, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.1706476, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 20629\n",
+ "Discriminator Loss: tf.Tensor(0.68521714, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.57286716, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 20630\n",
+ "Discriminator Loss: tf.Tensor(1.0789734, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.6238495, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 20631\n",
+ "Discriminator Loss: tf.Tensor(1.1901271, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.09333549, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 20632\n",
+ "Discriminator Loss: tf.Tensor(1.1753472, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.3913099, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 20633\n",
+ "Discriminator Loss: tf.Tensor(1.2280302, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.019764716, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 20634\n",
+ "Discriminator Loss: tf.Tensor(0.7937188, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.93013066, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 20635\n",
+ "Discriminator Loss: tf.Tensor(0.48527378, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.96328664, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 20636\n",
+ "Discriminator Loss: tf.Tensor(0.91189, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.0899957, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 20637\n",
+ "Discriminator Loss: tf.Tensor(0.78492355, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.56775653, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 20638\n",
+ "Discriminator Loss: tf.Tensor(1.2180692, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.3692907, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 20639\n",
+ "Discriminator Loss: tf.Tensor(0.7449309, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.50912327, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 20640\n",
+ "Discriminator Loss: tf.Tensor(1.0841154, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.265021, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 20641\n",
+ "Discriminator Loss: tf.Tensor(1.1161964, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.058258057, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 20642\n",
+ "Discriminator Loss: tf.Tensor(0.93374765, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.177182, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 20643\n",
+ "Discriminator Loss: tf.Tensor(1.6184934, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.17337996, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 20644\n",
+ "Discriminator Loss: tf.Tensor(0.91879255, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.685031, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 20645\n",
+ "Discriminator Loss: tf.Tensor(0.8524058, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.1762682, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 20646\n",
+ "Discriminator Loss: tf.Tensor(1.0661807, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.023895672, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 20647\n",
+ "Discriminator Loss: tf.Tensor(1.069294, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.5631725, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 20648\n",
+ "Discriminator Loss: tf.Tensor(0.86295354, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.17774485, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 20649\n",
+ "Discriminator Loss: tf.Tensor(1.2152185, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.3245505, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 20650\n",
+ "Discriminator Loss: tf.Tensor(0.74917036, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.32674375, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 20651\n",
+ "Discriminator Loss: tf.Tensor(1.3001403, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.433773, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 20652\n",
+ "Discriminator Loss: tf.Tensor(0.83301437, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.2836794, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 20653\n",
+ "Discriminator Loss: tf.Tensor(0.71813536, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.2257836, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 20654\n",
+ "Discriminator Loss: tf.Tensor(0.41255525, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.7503368, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 20655\n",
+ "Discriminator Loss: tf.Tensor(1.0252994, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.0752059, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 20656\n",
+ "Discriminator Loss: tf.Tensor(0.94372445, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.3259597, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 20657\n",
+ "Discriminator Loss: tf.Tensor(1.5473623, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.205204, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 20658\n",
+ "Discriminator Loss: tf.Tensor(1.0643884, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.06018139, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 20659\n",
+ "Discriminator Loss: tf.Tensor(0.9668907, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.1870813, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 20660\n",
+ "Discriminator Loss: tf.Tensor(0.70701313, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.7825999, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 20661\n",
+ "Discriminator Loss: tf.Tensor(0.7843007, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.98907334, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 20662\n",
+ "Discriminator Loss: tf.Tensor(0.47378725, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.851443, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 20663\n",
+ "Discriminator Loss: tf.Tensor(0.8258058, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.99734944, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 20664\n",
+ "Discriminator Loss: tf.Tensor(0.77897406, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.0007534, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 20665\n",
+ "Discriminator Loss: tf.Tensor(1.161162, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.7912219, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 20666\n",
+ "Discriminator Loss: tf.Tensor(0.9812017, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.031712, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 20667\n",
+ "Discriminator Loss: tf.Tensor(0.9703543, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.4874556, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 20668\n",
+ "Discriminator Loss: tf.Tensor(1.2223172, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.8113899, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 20669\n",
+ "Discriminator Loss: tf.Tensor(1.7488005, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.70331216, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 20670\n",
+ "Discriminator Loss: tf.Tensor(1.082562, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.7501288, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 20671\n",
+ "Discriminator Loss: tf.Tensor(0.61675406, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.7829054, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 20672\n",
+ "Discriminator Loss: tf.Tensor(1.39677, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.673357, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 20673\n",
+ "Discriminator Loss: tf.Tensor(1.2876272, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.00047311187, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 20674\n",
+ "Discriminator Loss: tf.Tensor(0.93293273, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.2718896, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 20675\n",
+ "Discriminator Loss: tf.Tensor(1.2248616, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.05429374, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 20676\n",
+ "Discriminator Loss: tf.Tensor(0.7575335, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.1576577, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 20677\n",
+ "Discriminator Loss: tf.Tensor(1.6336833, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.52712286, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 20678\n",
+ "Discriminator Loss: tf.Tensor(0.860031, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.8338778, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 20679\n",
+ "Discriminator Loss: tf.Tensor(0.95337397, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.34606507, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 20680\n",
+ "Discriminator Loss: tf.Tensor(1.1059874, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.4323338, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 20681\n",
+ "Discriminator Loss: tf.Tensor(0.6376695, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.6874177, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 20682\n",
+ "Discriminator Loss: tf.Tensor(0.8445046, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.4922752, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 20683\n",
+ "Discriminator Loss: tf.Tensor(0.8113979, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.5551235, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 20684\n",
+ "Discriminator Loss: tf.Tensor(0.7550522, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.3253531, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 20685\n",
+ "Discriminator Loss: tf.Tensor(1.1969821, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.152431, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 20686\n",
+ "Discriminator Loss: tf.Tensor(1.5190123, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.8067506, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 20687\n",
+ "Discriminator Loss: tf.Tensor(0.39718896, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.0883728, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 20688\n",
+ "Discriminator Loss: tf.Tensor(0.7429566, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.499013, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 20689\n",
+ "Discriminator Loss: tf.Tensor(0.873463, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.37274766, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 20690\n",
+ "Discriminator Loss: tf.Tensor(1.2285416, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.236694, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 20691\n",
+ "Discriminator Loss: tf.Tensor(1.077655, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.23526268, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 20692\n",
+ "Discriminator Loss: tf.Tensor(0.8272829, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.09026, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 20693\n",
+ "Discriminator Loss: tf.Tensor(0.4493976, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.0084298, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 20694\n",
+ "Discriminator Loss: tf.Tensor(0.9246285, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.9289301, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 20695\n",
+ "Discriminator Loss: tf.Tensor(0.7845117, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.96687484, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 20696\n",
+ "Discriminator Loss: tf.Tensor(0.8787194, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.89176255, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 20697\n",
+ "Discriminator Loss: tf.Tensor(0.852321, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.905886, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 20698\n",
+ "Discriminator Loss: tf.Tensor(0.77520275, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.68947345, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 20699\n",
+ "Discriminator Loss: tf.Tensor(1.0928159, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.4944474, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 20700\n",
+ "Discriminator Loss: tf.Tensor(1.4369966, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.37484685, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 20701\n",
+ "Discriminator Loss: tf.Tensor(1.1787553, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.9479855, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 20702\n",
+ "Discriminator Loss: tf.Tensor(0.5482473, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.93700475, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 20703\n",
+ "Discriminator Loss: tf.Tensor(1.5972217, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.33190235, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 20704\n",
+ "Discriminator Loss: tf.Tensor(1.1848774, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.3750998, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 20705\n",
+ "Discriminator Loss: tf.Tensor(1.1918912, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.030051671, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 20706\n",
+ "Discriminator Loss: tf.Tensor(1.1328138, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.6062323, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 20707\n",
+ "Discriminator Loss: tf.Tensor(1.1240808, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.07347111, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 20708\n",
+ "Discriminator Loss: tf.Tensor(0.5605611, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.266218, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 20709\n",
+ "Discriminator Loss: tf.Tensor(1.5005927, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.30039015, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 20710\n",
+ "Discriminator Loss: tf.Tensor(0.65728897, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.2049838, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 20711\n",
+ "Discriminator Loss: tf.Tensor(1.2661188, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.09708455, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 20712\n",
+ "Discriminator Loss: tf.Tensor(1.0076865, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.2104335, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 20713\n",
+ "Discriminator Loss: tf.Tensor(0.86568487, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.21274905, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 20714\n",
+ "Discriminator Loss: tf.Tensor(1.281203, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.9951072, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 20715\n",
+ "Discriminator Loss: tf.Tensor(0.65424395, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.6202823, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 20716\n",
+ "Discriminator Loss: tf.Tensor(1.1056654, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.1637754, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 20717\n",
+ "Discriminator Loss: tf.Tensor(0.77418137, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.3829297, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 20718\n",
+ "Discriminator Loss: tf.Tensor(0.71388495, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.3622197, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 20719\n",
+ "Discriminator Loss: tf.Tensor(1.0433385, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.19921488, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 20720\n",
+ "Discriminator Loss: tf.Tensor(1.0750673, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.1311811, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 20721\n",
+ "Discriminator Loss: tf.Tensor(0.63379186, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.9986717, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 20722\n",
+ "Discriminator Loss: tf.Tensor(1.1408635, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.021967515, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 20723\n",
+ "Discriminator Loss: tf.Tensor(1.4308511, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.8755542, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 20724\n",
+ "Discriminator Loss: tf.Tensor(1.0398066, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.14966859, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 20725\n",
+ "Discriminator Loss: tf.Tensor(0.87133396, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.044974, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 20726\n",
+ "Discriminator Loss: tf.Tensor(0.52620924, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.85172623, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 20727\n",
+ "Discriminator Loss: tf.Tensor(0.82984066, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.440821, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 20728\n",
+ "Discriminator Loss: tf.Tensor(1.2458155, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.11838003, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 20729\n",
+ "Discriminator Loss: tf.Tensor(1.158766, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.1583103, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 20730\n",
+ "Discriminator Loss: tf.Tensor(1.0604942, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.24772717, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 20731\n",
+ "Discriminator Loss: tf.Tensor(0.8157177, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.1477001, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 20732\n",
+ "Discriminator Loss: tf.Tensor(0.8469155, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.30314425, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 20733\n",
+ "Discriminator Loss: tf.Tensor(1.3357084, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.6996089, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 20734\n",
+ "Discriminator Loss: tf.Tensor(1.1826804, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.076012105, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 20735\n",
+ "Discriminator Loss: tf.Tensor(0.59484375, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.1980791, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 20736\n",
+ "Discriminator Loss: tf.Tensor(1.055132, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.28169724, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 20737\n",
+ "Discriminator Loss: tf.Tensor(0.7853485, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.4064139, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 20738\n",
+ "Discriminator Loss: tf.Tensor(0.95238423, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.14747712, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 20739\n",
+ "Discriminator Loss: tf.Tensor(0.8768059, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.78086, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 20740\n",
+ "Discriminator Loss: tf.Tensor(0.8932998, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.8720754, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 20741\n",
+ "Discriminator Loss: tf.Tensor(1.0531864, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.86303043, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 20742\n",
+ "Discriminator Loss: tf.Tensor(0.5302345, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.2483414, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 20743\n",
+ "Discriminator Loss: tf.Tensor(1.2039526, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.19716209, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 20744\n",
+ "Discriminator Loss: tf.Tensor(1.6172614, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.8772923, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 20745\n",
+ "Discriminator Loss: tf.Tensor(1.3489826, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.18025571, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 20746\n",
+ "Discriminator Loss: tf.Tensor(0.9350406, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.8342057, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 20747\n",
+ "Discriminator Loss: tf.Tensor(0.7197013, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.5175312, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 20748\n",
+ "Discriminator Loss: tf.Tensor(1.0454844, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.5323086, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 20749\n",
+ "Discriminator Loss: tf.Tensor(1.3090839, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.16767704, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 20750\n",
+ "Discriminator Loss: tf.Tensor(1.1356721, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.7270272, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 20751\n",
+ "Discriminator Loss: tf.Tensor(0.77019787, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.98269886, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 20752\n",
+ "Discriminator Loss: tf.Tensor(0.93425184, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.7518711, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 20753\n",
+ "Discriminator Loss: tf.Tensor(1.3616838, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.24980754, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 20754\n",
+ "Discriminator Loss: tf.Tensor(1.0935345, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.8680709, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 20755\n",
+ "Discriminator Loss: tf.Tensor(0.88067544, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.78266996, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 20756\n",
+ "Discriminator Loss: tf.Tensor(1.0163335, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.5532417, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 20757\n",
+ "Discriminator Loss: tf.Tensor(0.9432123, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.13748842, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 20758\n",
+ "Discriminator Loss: tf.Tensor(1.1420178, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.409739, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 20759\n",
+ "Discriminator Loss: tf.Tensor(0.9383507, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.19756703, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 20760\n",
+ "Discriminator Loss: tf.Tensor(0.89389277, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.9082492, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 20761\n",
+ "Discriminator Loss: tf.Tensor(0.5897671, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.0897661, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 20762\n",
+ "Discriminator Loss: tf.Tensor(0.7091397, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.6189829, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 20763\n",
+ "Discriminator Loss: tf.Tensor(1.2752184, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.20689349, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 20764\n",
+ "Discriminator Loss: tf.Tensor(0.9222982, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.4594866, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 20765\n",
+ "Discriminator Loss: tf.Tensor(1.1601596, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.014410682, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 20766\n",
+ "Discriminator Loss: tf.Tensor(0.58649206, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.1572067, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 20767\n",
+ "Discriminator Loss: tf.Tensor(0.7874963, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.54701144, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 20768\n",
+ "Discriminator Loss: tf.Tensor(0.8597201, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.4856502, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 20769\n",
+ "Discriminator Loss: tf.Tensor(0.7600335, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.43003702, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 20770\n",
+ "Discriminator Loss: tf.Tensor(1.0660928, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.0318809, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 20771\n",
+ "Discriminator Loss: tf.Tensor(0.8831285, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.35947943, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 20772\n",
+ "Discriminator Loss: tf.Tensor(0.6505114, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.3796711, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 20773\n",
+ "Discriminator Loss: tf.Tensor(1.0649315, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.02236551, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 20774\n",
+ "Discriminator Loss: tf.Tensor(1.0764134, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.5550942, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 20775\n",
+ "Discriminator Loss: tf.Tensor(1.1070967, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.059327886, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 20776\n",
+ "Discriminator Loss: tf.Tensor(0.7513685, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.1451753, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 20777\n",
+ "Discriminator Loss: tf.Tensor(1.1077843, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.55609983, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 20778\n",
+ "Discriminator Loss: tf.Tensor(0.70187616, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.162928, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 20779\n",
+ "Discriminator Loss: tf.Tensor(1.0024395, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.16949253, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 20780\n",
+ "Discriminator Loss: tf.Tensor(1.2855866, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.6832274, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 20781\n",
+ "Discriminator Loss: tf.Tensor(1.4141463, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.1734374, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 20782\n",
+ "Discriminator Loss: tf.Tensor(1.1176811, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.6186053, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 20783\n",
+ "Discriminator Loss: tf.Tensor(0.76865256, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.6626253, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 20784\n",
+ "Discriminator Loss: tf.Tensor(1.2626979, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.17057021, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 20785\n",
+ "Discriminator Loss: tf.Tensor(0.9926578, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.111519, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 20786\n",
+ "Discriminator Loss: tf.Tensor(0.7928647, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.48372403, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 20787\n",
+ "Discriminator Loss: tf.Tensor(0.5931635, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.2050837, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 20788\n",
+ "Discriminator Loss: tf.Tensor(0.6853484, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.4905846, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 20789\n",
+ "Discriminator Loss: tf.Tensor(0.95621735, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.746756, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 20790\n",
+ "Discriminator Loss: tf.Tensor(1.0017164, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.0505874, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 20791\n",
+ "Discriminator Loss: tf.Tensor(0.9387702, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.4225229, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 20792\n",
+ "Discriminator Loss: tf.Tensor(1.0046233, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.13101858, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 20793\n",
+ "Discriminator Loss: tf.Tensor(0.5966059, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.3847504, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 20794\n",
+ "Discriminator Loss: tf.Tensor(0.6440182, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.66648227, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 20795\n",
+ "Discriminator Loss: tf.Tensor(1.1610732, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.5889622, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 20796\n",
+ "Discriminator Loss: tf.Tensor(0.8899554, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.32877627, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 20797\n",
+ "Discriminator Loss: tf.Tensor(1.1889375, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.3179535, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 20798\n",
+ "Discriminator Loss: tf.Tensor(0.9079437, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.1651923, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 20799\n",
+ "Discriminator Loss: tf.Tensor(0.94443905, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.6082193, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 20800\n",
+ "Discriminator Loss: tf.Tensor(1.2128476, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.102329135, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 20801\n",
+ "Discriminator Loss: tf.Tensor(0.96698743, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.3213862, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 20802\n",
+ "Discriminator Loss: tf.Tensor(1.002408, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.04054187, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 20803\n",
+ "Discriminator Loss: tf.Tensor(0.9745656, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.5941111, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 20804\n",
+ "Discriminator Loss: tf.Tensor(1.0719488, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.15246041, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 20805\n",
+ "Discriminator Loss: tf.Tensor(0.90251255, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.222156, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 20806\n",
+ "Discriminator Loss: tf.Tensor(0.97008085, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.106984526, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 20807\n",
+ "Discriminator Loss: tf.Tensor(1.1674321, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.5554873, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 20808\n",
+ "Discriminator Loss: tf.Tensor(1.1162302, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.056854095, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 20809\n",
+ "Discriminator Loss: tf.Tensor(0.6511978, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.8659037, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 20810\n",
+ "Discriminator Loss: tf.Tensor(0.49219894, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.9522794, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 20811\n",
+ "Discriminator Loss: tf.Tensor(0.65344864, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.5864675, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 20812\n",
+ "Discriminator Loss: tf.Tensor(1.796078, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.661008, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 20813\n",
+ "Discriminator Loss: tf.Tensor(0.8498316, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.29225492, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 20814\n",
+ "Discriminator Loss: tf.Tensor(1.1456971, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.2610027, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 20815\n",
+ "Discriminator Loss: tf.Tensor(0.929654, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.19863713, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 20816\n",
+ "Discriminator Loss: tf.Tensor(0.9573678, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.6560268, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 20817\n",
+ "Discriminator Loss: tf.Tensor(1.0318148, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.04737018, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 20818\n",
+ "Discriminator Loss: tf.Tensor(0.8569181, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.6151549, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 20819\n",
+ "Discriminator Loss: tf.Tensor(0.679537, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.5945578, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 20820\n",
+ "Discriminator Loss: tf.Tensor(0.49387783, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.1864237, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 20821\n",
+ "Discriminator Loss: tf.Tensor(0.8170127, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.4767722, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 20822\n",
+ "Discriminator Loss: tf.Tensor(1.0522392, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.7404451, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 20823\n",
+ "Discriminator Loss: tf.Tensor(0.6454766, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.70098096, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 20824\n",
+ "Discriminator Loss: tf.Tensor(1.2855358, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.5815407, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 20825\n",
+ "Discriminator Loss: tf.Tensor(0.8768319, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.6754048, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 20826\n",
+ "Discriminator Loss: tf.Tensor(0.8831326, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.1442765, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 20827\n",
+ "Discriminator Loss: tf.Tensor(1.0919807, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.103100754, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 20828\n",
+ "Discriminator Loss: tf.Tensor(1.1272744, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.3106579, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 20829\n",
+ "Discriminator Loss: tf.Tensor(0.7626837, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.82884187, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 20830\n",
+ "Discriminator Loss: tf.Tensor(1.3454378, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.5219347, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 20831\n",
+ "Discriminator Loss: tf.Tensor(1.1056631, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.3490686, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 20832\n",
+ "Discriminator Loss: tf.Tensor(0.959341, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.28612062, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 20833\n",
+ "Discriminator Loss: tf.Tensor(1.1523676, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.6648332, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 20834\n",
+ "Discriminator Loss: tf.Tensor(0.93594116, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.3421036, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 20835\n",
+ "Discriminator Loss: tf.Tensor(0.98306155, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.1163982, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 20836\n",
+ "Discriminator Loss: tf.Tensor(1.0213714, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.21769942, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 20837\n",
+ "Discriminator Loss: tf.Tensor(1.3204954, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.5433494, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 20838\n",
+ "Discriminator Loss: tf.Tensor(0.7496236, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.41319153, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 20839\n",
+ "Discriminator Loss: tf.Tensor(0.99566925, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.3573915, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 20840\n",
+ "Discriminator Loss: tf.Tensor(0.7924727, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.6174211, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 20841\n",
+ "Discriminator Loss: tf.Tensor(1.0100628, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.8958405, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 20842\n",
+ "Discriminator Loss: tf.Tensor(1.2271671, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.13425167, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 20843\n",
+ "Discriminator Loss: tf.Tensor(0.68326706, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.1954994, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 20844\n",
+ "Discriminator Loss: tf.Tensor(1.2256728, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.14289351, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 20845\n",
+ "Discriminator Loss: tf.Tensor(1.2956853, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.1708405, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 20846\n",
+ "Discriminator Loss: tf.Tensor(0.770592, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.86961937, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 20847\n",
+ "Discriminator Loss: tf.Tensor(0.6284227, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.80988914, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 20848\n",
+ "Discriminator Loss: tf.Tensor(0.8460481, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.2943254, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 20849\n",
+ "Discriminator Loss: tf.Tensor(1.0483227, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.11765518, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 20850\n",
+ "Discriminator Loss: tf.Tensor(1.1257746, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.7949756, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 20851\n",
+ "Discriminator Loss: tf.Tensor(0.8245547, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.30212155, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 20852\n",
+ "Discriminator Loss: tf.Tensor(0.502753, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.5146312, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 20853\n",
+ "Discriminator Loss: tf.Tensor(1.3894345, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.29588908, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 20854\n",
+ "Discriminator Loss: tf.Tensor(1.5395839, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.8970094, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 20855\n",
+ "Discriminator Loss: tf.Tensor(1.9007893, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.35061893, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 20856\n",
+ "Discriminator Loss: tf.Tensor(1.2273247, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.802854, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 20857\n",
+ "Discriminator Loss: tf.Tensor(1.1341969, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.02387317, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 20858\n",
+ "Discriminator Loss: tf.Tensor(0.9396497, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.81228447, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 20859\n",
+ "Discriminator Loss: tf.Tensor(0.51787454, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.1630205, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 20860\n",
+ "Discriminator Loss: tf.Tensor(0.8688763, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.8030639, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 20861\n",
+ "Discriminator Loss: tf.Tensor(0.8334923, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.235397, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 20862\n",
+ "Discriminator Loss: tf.Tensor(0.950208, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.2539135, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 20863\n",
+ "Discriminator Loss: tf.Tensor(1.7377446, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.9877548, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 20864\n",
+ "Discriminator Loss: tf.Tensor(1.1736193, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.0076415674, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 20865\n",
+ "Discriminator Loss: tf.Tensor(0.9336951, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.9336372, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 20866\n",
+ "Discriminator Loss: tf.Tensor(0.5411956, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.75780606, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 20867\n",
+ "Discriminator Loss: tf.Tensor(1.0940773, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.4387447, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 20868\n",
+ "Discriminator Loss: tf.Tensor(1.0551282, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.077514194, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 20869\n",
+ "Discriminator Loss: tf.Tensor(0.7928666, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.9492819, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 20870\n",
+ "Discriminator Loss: tf.Tensor(0.5694606, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.66086644, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 20871\n",
+ "Discriminator Loss: tf.Tensor(1.3141971, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.3055024, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 20872\n",
+ "Discriminator Loss: tf.Tensor(0.8528712, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.3780942, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 20873\n",
+ "Discriminator Loss: tf.Tensor(1.0275252, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.4531679, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 20874\n",
+ "Discriminator Loss: tf.Tensor(0.89446735, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.27318186, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 20875\n",
+ "Discriminator Loss: tf.Tensor(1.0050361, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.4344921, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 20876\n",
+ "Discriminator Loss: tf.Tensor(0.5840546, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.5956922, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 20877\n",
+ "Discriminator Loss: tf.Tensor(1.3547441, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.1032784, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 20878\n",
+ "Discriminator Loss: tf.Tensor(1.250775, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.12411199, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 20879\n",
+ "Discriminator Loss: tf.Tensor(0.9029776, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.79685116, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 20880\n",
+ "Discriminator Loss: tf.Tensor(0.9940136, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.4181142, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 20881\n",
+ "Discriminator Loss: tf.Tensor(0.5655262, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.5195039, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 20882\n",
+ "Discriminator Loss: tf.Tensor(1.2504215, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.9908867, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 20883\n",
+ "Discriminator Loss: tf.Tensor(0.8377361, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.25378236, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 20884\n",
+ "Discriminator Loss: tf.Tensor(1.2420628, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.3588209, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 20885\n",
+ "Discriminator Loss: tf.Tensor(0.9113684, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.24074806, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 20886\n",
+ "Discriminator Loss: tf.Tensor(0.99552035, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.4687551, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 20887\n",
+ "Discriminator Loss: tf.Tensor(0.7314174, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.4721396, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 20888\n",
+ "Discriminator Loss: tf.Tensor(0.9997935, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.3837156, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 20889\n",
+ "Discriminator Loss: tf.Tensor(0.55495036, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.6770404, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 20890\n",
+ "Discriminator Loss: tf.Tensor(1.261212, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.0932024, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 20891\n",
+ "Discriminator Loss: tf.Tensor(1.1400193, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.30065238, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 20892\n",
+ "Discriminator Loss: tf.Tensor(0.8824709, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.1429323, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 20893\n",
+ "Discriminator Loss: tf.Tensor(0.6989906, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.70292574, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 20894\n",
+ "Discriminator Loss: tf.Tensor(0.6545019, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.3535728, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 20895\n",
+ "Discriminator Loss: tf.Tensor(1.0974516, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.032103878, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 20896\n",
+ "Discriminator Loss: tf.Tensor(0.95161164, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.0540648, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 20897\n",
+ "Discriminator Loss: tf.Tensor(0.83854055, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.84118223, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 20898\n",
+ "Discriminator Loss: tf.Tensor(1.0395408, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.0455368, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 20899\n",
+ "Discriminator Loss: tf.Tensor(0.6648496, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.0798517, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 20900\n",
+ "Discriminator Loss: tf.Tensor(0.871452, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.72845536, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 20901\n",
+ "Discriminator Loss: tf.Tensor(0.65538454, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.88748723, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 20902\n",
+ "Discriminator Loss: tf.Tensor(1.0816579, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.2226242, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 20903\n",
+ "Discriminator Loss: tf.Tensor(1.5871109, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.5343277, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 20904\n",
+ "Discriminator Loss: tf.Tensor(0.7622808, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.98382616, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 20905\n",
+ "Discriminator Loss: tf.Tensor(1.0647855, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.28238526, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 20906\n",
+ "Discriminator Loss: tf.Tensor(1.1226976, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.4510894, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 20907\n",
+ "Discriminator Loss: tf.Tensor(1.0353763, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.29564986, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 20908\n",
+ "Discriminator Loss: tf.Tensor(0.8250711, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.0870717, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 20909\n",
+ "Discriminator Loss: tf.Tensor(1.1077353, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.39705142, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 20910\n",
+ "Discriminator Loss: tf.Tensor(0.55159533, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.1640011, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 20911\n",
+ "Discriminator Loss: tf.Tensor(1.2376609, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.18711163, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 20912\n",
+ "Discriminator Loss: tf.Tensor(1.5603333, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.7649122, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 20913\n",
+ "Discriminator Loss: tf.Tensor(1.188599, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.047275588, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 20914\n",
+ "Discriminator Loss: tf.Tensor(0.91950285, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.0668391, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 20915\n",
+ "Discriminator Loss: tf.Tensor(0.71026504, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.6760928, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 20916\n",
+ "Discriminator Loss: tf.Tensor(1.054386, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.4643297, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 20917\n",
+ "Discriminator Loss: tf.Tensor(1.1514895, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.049186807, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 20918\n",
+ "Discriminator Loss: tf.Tensor(1.1460178, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.9490711, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 20919\n",
+ "Discriminator Loss: tf.Tensor(1.0370057, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.6471583, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 20920\n",
+ "Discriminator Loss: tf.Tensor(0.682341, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.99163884, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 20921\n",
+ "Discriminator Loss: tf.Tensor(0.7299211, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.88694024, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 20922\n",
+ "Discriminator Loss: tf.Tensor(1.0342802, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.7708993, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 20923\n",
+ "Discriminator Loss: tf.Tensor(1.1611645, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.3643528, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 20924\n",
+ "Discriminator Loss: tf.Tensor(0.5013784, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.83259565, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 20925\n",
+ "Discriminator Loss: tf.Tensor(1.22096, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.8561157, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 20926\n",
+ "Discriminator Loss: tf.Tensor(1.3279058, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.21765165, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 20927\n",
+ "Discriminator Loss: tf.Tensor(0.9361674, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.0545629, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 20928\n",
+ "Discriminator Loss: tf.Tensor(1.0547, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.24030654, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 20929\n",
+ "Discriminator Loss: tf.Tensor(0.60521317, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.2987119, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 20930\n",
+ "Discriminator Loss: tf.Tensor(0.5528784, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.79432756, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 20931\n",
+ "Discriminator Loss: tf.Tensor(1.3829076, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.091911, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 20932\n",
+ "Discriminator Loss: tf.Tensor(0.96373373, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.27499017, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 20933\n",
+ "Discriminator Loss: tf.Tensor(0.98435307, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.1857725, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 20934\n",
+ "Discriminator Loss: tf.Tensor(1.3790406, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.30922922, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 20935\n",
+ "Discriminator Loss: tf.Tensor(0.76223683, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.1693069, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 20936\n",
+ "Discriminator Loss: tf.Tensor(1.0334898, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.23759145, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 20937\n",
+ "Discriminator Loss: tf.Tensor(1.0353491, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.102475, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 20938\n",
+ "Discriminator Loss: tf.Tensor(0.7721197, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.5027229, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 20939\n",
+ "Discriminator Loss: tf.Tensor(1.0976852, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.9287384, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 20940\n",
+ "Discriminator Loss: tf.Tensor(0.9225348, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.21432887, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 20941\n",
+ "Discriminator Loss: tf.Tensor(1.2352184, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.594667, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 20942\n",
+ "Discriminator Loss: tf.Tensor(0.93039024, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.13495427, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 20943\n",
+ "Discriminator Loss: tf.Tensor(1.0037656, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.07365, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 20944\n",
+ "Discriminator Loss: tf.Tensor(0.6811525, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.72392243, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 20945\n",
+ "Discriminator Loss: tf.Tensor(0.74303526, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.61928993, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 20946\n",
+ "Discriminator Loss: tf.Tensor(0.9846828, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.8794013, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 20947\n",
+ "Discriminator Loss: tf.Tensor(1.1068134, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.15708815, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 20948\n",
+ "Discriminator Loss: tf.Tensor(0.9956317, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.1653117, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 20949\n",
+ "Discriminator Loss: tf.Tensor(0.93960184, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.92090225, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 20950\n",
+ "Discriminator Loss: tf.Tensor(0.9635694, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.27904582, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 20951\n",
+ "Discriminator Loss: tf.Tensor(0.94591826, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.3822876, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 20952\n",
+ "Discriminator Loss: tf.Tensor(1.0021487, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.3863469, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 20953\n",
+ "Discriminator Loss: tf.Tensor(1.4238051, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.2053125, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 20954\n",
+ "Discriminator Loss: tf.Tensor(1.3336463, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.0647754, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 20955\n",
+ "Discriminator Loss: tf.Tensor(0.56029147, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.93226165, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 20956\n",
+ "Discriminator Loss: tf.Tensor(0.5746752, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.9273208, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 20957\n",
+ "Discriminator Loss: tf.Tensor(1.0973293, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.4177214, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 20958\n",
+ "Discriminator Loss: tf.Tensor(1.0153627, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.19117482, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 20959\n",
+ "Discriminator Loss: tf.Tensor(1.1445955, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.6846367, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 20960\n",
+ "Discriminator Loss: tf.Tensor(1.0135736, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.1667612, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 20961\n",
+ "Discriminator Loss: tf.Tensor(0.9735733, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.1533526, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 20962\n",
+ "Discriminator Loss: tf.Tensor(0.8275131, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.41686204, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 20963\n",
+ "Discriminator Loss: tf.Tensor(0.3971408, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.5791225, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 20964\n",
+ "Discriminator Loss: tf.Tensor(0.40168273, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.0490896, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 20965\n",
+ "Discriminator Loss: tf.Tensor(0.2795247, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.3504537, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 20966\n",
+ "Discriminator Loss: tf.Tensor(1.1378549, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.7045243, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 20967\n",
+ "Discriminator Loss: tf.Tensor(1.1706992, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.6521167, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 20968\n",
+ "Discriminator Loss: tf.Tensor(1.6751056, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.37164092, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 20969\n",
+ "Discriminator Loss: tf.Tensor(1.0722176, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.7572002, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 20970\n",
+ "Discriminator Loss: tf.Tensor(1.0149828, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.7691057, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 20971\n",
+ "Discriminator Loss: tf.Tensor(0.9621634, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.6345629, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 20972\n",
+ "Discriminator Loss: tf.Tensor(1.17223, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.7187456, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 20973\n",
+ "Discriminator Loss: tf.Tensor(1.6460575, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.46548024, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 20974\n",
+ "Discriminator Loss: tf.Tensor(0.66507864, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.166945, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 20975\n",
+ "Discriminator Loss: tf.Tensor(1.3119329, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.07875633, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 20976\n",
+ "Discriminator Loss: tf.Tensor(1.28866, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.5339757, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 20977\n",
+ "Discriminator Loss: tf.Tensor(1.1112957, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.090270825, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 20978\n",
+ "Discriminator Loss: tf.Tensor(1.0761117, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.9528265, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 20979\n",
+ "Discriminator Loss: tf.Tensor(0.9802223, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.19042177, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 20980\n",
+ "Discriminator Loss: tf.Tensor(0.9732689, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.83212996, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 20981\n",
+ "Discriminator Loss: tf.Tensor(1.0727059, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.1021248, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 20982\n",
+ "Discriminator Loss: tf.Tensor(0.9305283, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.37115708, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 20983\n",
+ "Discriminator Loss: tf.Tensor(1.6091751, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.1853733, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 20984\n",
+ "Discriminator Loss: tf.Tensor(1.454358, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.22291291, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 20985\n",
+ "Discriminator Loss: tf.Tensor(0.89443207, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.77474785, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 20986\n",
+ "Discriminator Loss: tf.Tensor(0.93927366, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.1282905, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 20987\n",
+ "Discriminator Loss: tf.Tensor(0.86452186, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.3883052, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 20988\n",
+ "Discriminator Loss: tf.Tensor(1.4991562, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.0620954, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 20989\n",
+ "Discriminator Loss: tf.Tensor(1.2265885, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.0071793622, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 20990\n",
+ "Discriminator Loss: tf.Tensor(0.87411046, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.7239179, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 20991\n",
+ "Discriminator Loss: tf.Tensor(0.6276661, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.0950912, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 20992\n",
+ "Discriminator Loss: tf.Tensor(0.6110403, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.5479128, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 20993\n",
+ "Discriminator Loss: tf.Tensor(1.8379531, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.9900967, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 20994\n",
+ "Discriminator Loss: tf.Tensor(1.0080804, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.13571663, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 20995\n",
+ "Discriminator Loss: tf.Tensor(0.96933675, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.1200482, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 20996\n",
+ "Discriminator Loss: tf.Tensor(1.2856123, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.12778653, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 20997\n",
+ "Discriminator Loss: tf.Tensor(0.83027893, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.4530611, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 20998\n",
+ "Discriminator Loss: tf.Tensor(0.9795385, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.13719192, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 20999\n",
+ "Discriminator Loss: tf.Tensor(0.8234822, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.1676153, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 21000\n",
+ "Discriminator Loss: tf.Tensor(0.9119706, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.73407334, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 21001\n",
+ "Discriminator Loss: tf.Tensor(1.0727661, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.1080984, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 21002\n",
+ "Discriminator Loss: tf.Tensor(1.0926162, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.12676518, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 21003\n",
+ "Discriminator Loss: tf.Tensor(1.3396719, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.5511742, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 21004\n",
+ "Discriminator Loss: tf.Tensor(1.0211903, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.17951994, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 21005\n",
+ "Discriminator Loss: tf.Tensor(1.0140333, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.1179425, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 21006\n",
+ "Discriminator Loss: tf.Tensor(1.1800396, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.06833522, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 21007\n",
+ "Discriminator Loss: tf.Tensor(0.88174355, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.4460263, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 21008\n",
+ "Discriminator Loss: tf.Tensor(1.1549218, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.11642429, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 21009\n",
+ "Discriminator Loss: tf.Tensor(0.94092417, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.0776472, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 21010\n",
+ "Discriminator Loss: tf.Tensor(0.616364, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.4814374, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 21011\n",
+ "Discriminator Loss: tf.Tensor(1.2545944, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.7269497, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 21012\n",
+ "Discriminator Loss: tf.Tensor(0.9116219, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.31703043, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 21013\n",
+ "Discriminator Loss: tf.Tensor(0.47674638, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.2326642, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 21014\n",
+ "Discriminator Loss: tf.Tensor(0.9066088, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.62872475, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 21015\n",
+ "Discriminator Loss: tf.Tensor(1.2087581, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.3162639, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 21016\n",
+ "Discriminator Loss: tf.Tensor(1.658526, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.6277955, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 21017\n",
+ "Discriminator Loss: tf.Tensor(0.8877196, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.91942006, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 21018\n",
+ "Discriminator Loss: tf.Tensor(0.71970415, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.47508883, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 21019\n",
+ "Discriminator Loss: tf.Tensor(1.0504214, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.7076193, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 21020\n",
+ "Discriminator Loss: tf.Tensor(1.1614628, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.008002247, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 21021\n",
+ "Discriminator Loss: tf.Tensor(0.86828685, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.9962201, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 21022\n",
+ "Discriminator Loss: tf.Tensor(0.78812075, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.72559994, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 21023\n",
+ "Discriminator Loss: tf.Tensor(0.9412912, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.9762786, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 21024\n",
+ "Discriminator Loss: tf.Tensor(0.7951759, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.88113594, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 21025\n",
+ "Discriminator Loss: tf.Tensor(1.3593209, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.5810562, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 21026\n",
+ "Discriminator Loss: tf.Tensor(0.99979126, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.07506184, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 21027\n",
+ "Discriminator Loss: tf.Tensor(0.7221878, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.3503222, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 21028\n",
+ "Discriminator Loss: tf.Tensor(0.9022261, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.36065236, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 21029\n",
+ "Discriminator Loss: tf.Tensor(0.833678, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.2648889, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 21030\n",
+ "Discriminator Loss: tf.Tensor(1.1016843, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.03146917, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 21031\n",
+ "Discriminator Loss: tf.Tensor(0.61270773, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.3223555, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 21032\n",
+ "Discriminator Loss: tf.Tensor(1.0447869, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.20290326, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 21033\n",
+ "Discriminator Loss: tf.Tensor(0.68675745, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.6474982, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 21034\n",
+ "Discriminator Loss: tf.Tensor(1.4628769, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.6980377, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 21035\n",
+ "Discriminator Loss: tf.Tensor(1.3672581, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.2819371, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 21036\n",
+ "Discriminator Loss: tf.Tensor(1.010493, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.1320499, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 21037\n",
+ "Discriminator Loss: tf.Tensor(0.8700905, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.21872263, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 21038\n",
+ "Discriminator Loss: tf.Tensor(1.0369742, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.3709604, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 21039\n",
+ "Discriminator Loss: tf.Tensor(0.8734818, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.4782637, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 21040\n",
+ "Discriminator Loss: tf.Tensor(0.5479443, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.3193856, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 21041\n",
+ "Discriminator Loss: tf.Tensor(0.92795384, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.1533644, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 21042\n",
+ "Discriminator Loss: tf.Tensor(1.172738, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.5118389, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 21043\n",
+ "Discriminator Loss: tf.Tensor(0.907194, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.20597334, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 21044\n",
+ "Discriminator Loss: tf.Tensor(1.0189897, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.3908978, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 21045\n",
+ "Discriminator Loss: tf.Tensor(1.1682843, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.02588891, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 21046\n",
+ "Discriminator Loss: tf.Tensor(1.3626043, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.3131579, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 21047\n",
+ "Discriminator Loss: tf.Tensor(0.84172636, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.42625657, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 21048\n",
+ "Discriminator Loss: tf.Tensor(1.0974046, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.0047544, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 21049\n",
+ "Discriminator Loss: tf.Tensor(0.7309226, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.7003606, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 21050\n",
+ "Discriminator Loss: tf.Tensor(0.8775019, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.1973933, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 21051\n",
+ "Discriminator Loss: tf.Tensor(0.54433954, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.726052, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 21052\n",
+ "Discriminator Loss: tf.Tensor(1.1683015, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.7666731, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 21053\n",
+ "Discriminator Loss: tf.Tensor(1.0568966, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.08919055, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 21054\n",
+ "Discriminator Loss: tf.Tensor(0.66568255, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.93532366, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 21055\n",
+ "Discriminator Loss: tf.Tensor(1.0707129, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.3405119, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 21056\n",
+ "Discriminator Loss: tf.Tensor(1.3612522, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.28018454, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 21057\n",
+ "Discriminator Loss: tf.Tensor(0.8084325, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.136925, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 21058\n",
+ "Discriminator Loss: tf.Tensor(0.65199023, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.7342982, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 21059\n",
+ "Discriminator Loss: tf.Tensor(0.6762662, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.4067575, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 21060\n",
+ "Discriminator Loss: tf.Tensor(0.78930664, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.3276497, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 21061\n",
+ "Discriminator Loss: tf.Tensor(0.7315748, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.3387208, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 21062\n",
+ "Discriminator Loss: tf.Tensor(0.87467897, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.2963748, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 21063\n",
+ "Discriminator Loss: tf.Tensor(0.88236403, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.3228384, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 21064\n",
+ "Discriminator Loss: tf.Tensor(1.1074615, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.052378654, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 21065\n",
+ "Discriminator Loss: tf.Tensor(0.8619149, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.9393626, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 21066\n",
+ "Discriminator Loss: tf.Tensor(0.8407185, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.5600268, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 21067\n",
+ "Discriminator Loss: tf.Tensor(1.0306814, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.4052278, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 21068\n",
+ "Discriminator Loss: tf.Tensor(1.3779066, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.15538926, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 21069\n",
+ "Discriminator Loss: tf.Tensor(0.80839115, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.309939, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 21070\n",
+ "Discriminator Loss: tf.Tensor(1.1730552, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.062275175, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 21071\n",
+ "Discriminator Loss: tf.Tensor(1.3227278, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.2968283, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 21072\n",
+ "Discriminator Loss: tf.Tensor(0.73805255, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.33941302, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 21073\n",
+ "Discriminator Loss: tf.Tensor(0.97346044, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.6787324, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 21074\n",
+ "Discriminator Loss: tf.Tensor(0.8888135, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.24722719, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 21075\n",
+ "Discriminator Loss: tf.Tensor(1.0165486, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.2390311, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 21076\n",
+ "Discriminator Loss: tf.Tensor(0.89350796, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.3131617, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 21077\n",
+ "Discriminator Loss: tf.Tensor(0.90224284, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.32641417, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 21078\n",
+ "Discriminator Loss: tf.Tensor(1.1098878, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.8319359, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 21079\n",
+ "Discriminator Loss: tf.Tensor(1.0224712, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.12215962, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 21080\n",
+ "Discriminator Loss: tf.Tensor(0.72897947, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.2537959, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 21081\n",
+ "Discriminator Loss: tf.Tensor(1.1503174, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.019446433, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 21082\n",
+ "Discriminator Loss: tf.Tensor(0.7992383, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.3532375, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 21083\n",
+ "Discriminator Loss: tf.Tensor(0.8670447, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.2454559, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 21084\n",
+ "Discriminator Loss: tf.Tensor(0.78406394, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.2132219, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 21085\n",
+ "Discriminator Loss: tf.Tensor(0.78926927, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.5793689, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 21086\n",
+ "Discriminator Loss: tf.Tensor(0.45130262, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.3570528, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 21087\n",
+ "Discriminator Loss: tf.Tensor(0.844556, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.23971932, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 21088\n",
+ "Discriminator Loss: tf.Tensor(1.051015, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.7974986, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 21089\n",
+ "Discriminator Loss: tf.Tensor(0.47224796, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.7812026, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 21090\n",
+ "Discriminator Loss: tf.Tensor(0.6149384, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.3060437, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 21091\n",
+ "Discriminator Loss: tf.Tensor(0.5473708, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.7860096, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 21092\n",
+ "Discriminator Loss: tf.Tensor(1.1077535, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.697012, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 21093\n",
+ "Discriminator Loss: tf.Tensor(1.0522345, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.12927793, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 21094\n",
+ "Discriminator Loss: tf.Tensor(1.654418, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.8359811, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 21095\n",
+ "Discriminator Loss: tf.Tensor(0.585906, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.9148795, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 21096\n",
+ "Discriminator Loss: tf.Tensor(0.8499404, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.45650283, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 21097\n",
+ "Discriminator Loss: tf.Tensor(1.8597637, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.2740152, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 21098\n",
+ "Discriminator Loss: tf.Tensor(1.5666313, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.118929714, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 21099\n",
+ "Discriminator Loss: tf.Tensor(0.85054576, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.69368726, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 21100\n",
+ "Discriminator Loss: tf.Tensor(0.89129084, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.180867, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 21101\n",
+ "Discriminator Loss: tf.Tensor(1.2632235, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.01873443, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 21102\n",
+ "Discriminator Loss: tf.Tensor(1.0019785, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.2741891, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 21103\n",
+ "Discriminator Loss: tf.Tensor(0.8858811, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.5624675, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 21104\n",
+ "Discriminator Loss: tf.Tensor(0.5284054, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.058597, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 21105\n",
+ "Discriminator Loss: tf.Tensor(0.99358356, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.56100345, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 21106\n",
+ "Discriminator Loss: tf.Tensor(1.2740483, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.5202063, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 21107\n",
+ "Discriminator Loss: tf.Tensor(1.1574731, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.10006812, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 21108\n",
+ "Discriminator Loss: tf.Tensor(1.3205343, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.4830894, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 21109\n",
+ "Discriminator Loss: tf.Tensor(0.59352255, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.52395403, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 21110\n",
+ "Discriminator Loss: tf.Tensor(0.85510963, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.4437757, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 21111\n",
+ "Discriminator Loss: tf.Tensor(1.1441513, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.114744425, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 21112\n",
+ "Discriminator Loss: tf.Tensor(1.151355, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.6547352, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 21113\n",
+ "Discriminator Loss: tf.Tensor(1.0519354, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.10577863, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 21114\n",
+ "Discriminator Loss: tf.Tensor(1.2709903, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.94994926, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 21115\n",
+ "Discriminator Loss: tf.Tensor(0.57919645, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.76434845, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 21116\n",
+ "Discriminator Loss: tf.Tensor(0.6119722, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.5895418, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 21117\n",
+ "Discriminator Loss: tf.Tensor(0.58528376, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.8057134, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 21118\n",
+ "Discriminator Loss: tf.Tensor(0.77307093, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.1811992, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 21119\n",
+ "Discriminator Loss: tf.Tensor(0.6321155, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.0599259, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 21120\n",
+ "Discriminator Loss: tf.Tensor(1.1142442, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.498093, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 21121\n",
+ "Discriminator Loss: tf.Tensor(1.4327142, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.9423095, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 21122\n",
+ "Discriminator Loss: tf.Tensor(1.3623276, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.25782892, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 21123\n",
+ "Discriminator Loss: tf.Tensor(0.7933072, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.0477268, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 21124\n",
+ "Discriminator Loss: tf.Tensor(0.8056602, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.4690709, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 21125\n",
+ "Discriminator Loss: tf.Tensor(1.0535097, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.1837816, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 21126\n",
+ "Discriminator Loss: tf.Tensor(0.77476424, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.7058387, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 21127\n",
+ "Discriminator Loss: tf.Tensor(0.96218574, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.81401396, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 21128\n",
+ "Discriminator Loss: tf.Tensor(0.8098757, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.84858483, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 21129\n",
+ "Discriminator Loss: tf.Tensor(0.83975375, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.2430319, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 21130\n",
+ "Discriminator Loss: tf.Tensor(1.1607244, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.3031042, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 21131\n",
+ "Discriminator Loss: tf.Tensor(0.98565274, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.11939781, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 21132\n",
+ "Discriminator Loss: tf.Tensor(1.0251801, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.8958693, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 21133\n",
+ "Discriminator Loss: tf.Tensor(0.8412721, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.5586744, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 21134\n",
+ "Discriminator Loss: tf.Tensor(0.52272725, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.3955336, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 21135\n",
+ "Discriminator Loss: tf.Tensor(0.67734087, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.6431089, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 21136\n",
+ "Discriminator Loss: tf.Tensor(1.6692274, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.1775906, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 21137\n",
+ "Discriminator Loss: tf.Tensor(0.89221513, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.27744848, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 21138\n",
+ "Discriminator Loss: tf.Tensor(1.1485339, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.2242972, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 21139\n",
+ "Discriminator Loss: tf.Tensor(1.0382471, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.21901943, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 21140\n",
+ "Discriminator Loss: tf.Tensor(1.0161889, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.3099732, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 21141\n",
+ "Discriminator Loss: tf.Tensor(0.7746008, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.34962702, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 21142\n",
+ "Discriminator Loss: tf.Tensor(1.4860547, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.8217787, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 21143\n",
+ "Discriminator Loss: tf.Tensor(0.7897898, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.38524976, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 21144\n",
+ "Discriminator Loss: tf.Tensor(1.1594949, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.9923602, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 21145\n",
+ "Discriminator Loss: tf.Tensor(0.7709999, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.38736677, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 21146\n",
+ "Discriminator Loss: tf.Tensor(1.2669309, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.9399475, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 21147\n",
+ "Discriminator Loss: tf.Tensor(1.3603668, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.048824076, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 21148\n",
+ "Discriminator Loss: tf.Tensor(0.77291346, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.9961562, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 21149\n",
+ "Discriminator Loss: tf.Tensor(1.3710774, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.21110944, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 21150\n",
+ "Discriminator Loss: tf.Tensor(1.0466928, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.466001, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 21151\n",
+ "Discriminator Loss: tf.Tensor(0.84344494, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.32639208, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 21152\n",
+ "Discriminator Loss: tf.Tensor(0.4824152, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.9665701, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 21153\n",
+ "Discriminator Loss: tf.Tensor(0.9446361, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.2298456, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 21154\n",
+ "Discriminator Loss: tf.Tensor(0.6634926, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.594776, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 21155\n",
+ "Discriminator Loss: tf.Tensor(1.3895282, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.7258759, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 21156\n",
+ "Discriminator Loss: tf.Tensor(1.195684, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.019509211, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 21157\n",
+ "Discriminator Loss: tf.Tensor(0.7797363, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.3471266, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 21158\n",
+ "Discriminator Loss: tf.Tensor(0.5466199, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.72956926, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 21159\n",
+ "Discriminator Loss: tf.Tensor(0.79041624, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.5661653, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 21160\n",
+ "Discriminator Loss: tf.Tensor(1.2880613, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.11934637, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 21161\n",
+ "Discriminator Loss: tf.Tensor(0.84271973, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.1447548, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 21162\n",
+ "Discriminator Loss: tf.Tensor(1.0251396, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.27094367, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 21163\n",
+ "Discriminator Loss: tf.Tensor(1.1567461, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.6633066, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 21164\n",
+ "Discriminator Loss: tf.Tensor(1.0219702, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.14851125, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 21165\n",
+ "Discriminator Loss: tf.Tensor(0.6598593, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.3437132, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 21166\n",
+ "Discriminator Loss: tf.Tensor(0.5149234, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.7068139, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 21167\n",
+ "Discriminator Loss: tf.Tensor(1.0205061, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.4500166, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 21168\n",
+ "Discriminator Loss: tf.Tensor(1.080772, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.27055824, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 21169\n",
+ "Discriminator Loss: tf.Tensor(1.2068634, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.1625383, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 21170\n",
+ "Discriminator Loss: tf.Tensor(1.3283157, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.028459825, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 21171\n",
+ "Discriminator Loss: tf.Tensor(0.6740669, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.5221539, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 21172\n",
+ "Discriminator Loss: tf.Tensor(1.0339432, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.060832784, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 21173\n",
+ "Discriminator Loss: tf.Tensor(0.95393705, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.2896508, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 21174\n",
+ "Discriminator Loss: tf.Tensor(0.6610008, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.7210286, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 21175\n",
+ "Discriminator Loss: tf.Tensor(0.8118254, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.3656803, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 21176\n",
+ "Discriminator Loss: tf.Tensor(1.812038, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.6907925, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 21177\n",
+ "Discriminator Loss: tf.Tensor(0.86096317, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.4900632, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 21178\n",
+ "Discriminator Loss: tf.Tensor(1.2383815, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.026259491, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 21179\n",
+ "Discriminator Loss: tf.Tensor(0.47525916, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.1050204, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 21180\n",
+ "Discriminator Loss: tf.Tensor(0.74835193, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.82461166, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 21181\n",
+ "Discriminator Loss: tf.Tensor(0.9257934, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.1277019, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 21182\n",
+ "Discriminator Loss: tf.Tensor(0.4441234, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.86822814, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 21183\n",
+ "Discriminator Loss: tf.Tensor(0.9539585, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.7284378, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 21184\n",
+ "Discriminator Loss: tf.Tensor(1.4221507, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.02286926, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 21185\n",
+ "Discriminator Loss: tf.Tensor(1.0643932, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.3173717, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 21186\n",
+ "Discriminator Loss: tf.Tensor(0.5453987, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.66212493, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 21187\n",
+ "Discriminator Loss: tf.Tensor(0.9951985, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.514234, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 21188\n",
+ "Discriminator Loss: tf.Tensor(0.4007826, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.69766635, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 21189\n",
+ "Discriminator Loss: tf.Tensor(0.60922974, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.2979484, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 21190\n",
+ "Discriminator Loss: tf.Tensor(0.73137635, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.279372, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 21191\n",
+ "Discriminator Loss: tf.Tensor(0.82082105, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.6653046, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 21192\n",
+ "Discriminator Loss: tf.Tensor(0.75210977, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.7146974, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 21193\n",
+ "Discriminator Loss: tf.Tensor(1.2013153, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.010732755, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 21194\n",
+ "Discriminator Loss: tf.Tensor(1.0236694, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.2391905, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 21195\n",
+ "Discriminator Loss: tf.Tensor(0.84623873, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.7620225, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 21196\n",
+ "Discriminator Loss: tf.Tensor(0.7802457, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.665789, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 21197\n",
+ "Discriminator Loss: tf.Tensor(1.0788977, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.15931964, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 21198\n",
+ "Discriminator Loss: tf.Tensor(0.8773159, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.0706745, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 21199\n",
+ "Discriminator Loss: tf.Tensor(0.6922418, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.5268694, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 21200\n",
+ "Discriminator Loss: tf.Tensor(1.7785558, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.6155167, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 21201\n",
+ "Discriminator Loss: tf.Tensor(0.7648546, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.4860988, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 21202\n",
+ "Discriminator Loss: tf.Tensor(1.0999395, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.4493815, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 21203\n",
+ "Discriminator Loss: tf.Tensor(1.1183889, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.05362453, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 21204\n",
+ "Discriminator Loss: tf.Tensor(1.1427108, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.4160541, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 21205\n",
+ "Discriminator Loss: tf.Tensor(1.0211021, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.17598887, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 21206\n",
+ "Discriminator Loss: tf.Tensor(1.0982199, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.4491509, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 21207\n",
+ "Discriminator Loss: tf.Tensor(1.2664936, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.19239749, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 21208\n",
+ "Discriminator Loss: tf.Tensor(0.77733076, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.3593678, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 21209\n",
+ "Discriminator Loss: tf.Tensor(1.0567694, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.36507162, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 21210\n",
+ "Discriminator Loss: tf.Tensor(0.91240984, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.688762, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 21211\n",
+ "Discriminator Loss: tf.Tensor(0.9750544, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.6600081, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 21212\n",
+ "Discriminator Loss: tf.Tensor(1.3810612, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.194993, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 21213\n",
+ "Discriminator Loss: tf.Tensor(1.0553714, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.97646, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 21214\n",
+ "Discriminator Loss: tf.Tensor(0.716429, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.942723, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 21215\n",
+ "Discriminator Loss: tf.Tensor(0.5256242, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.1544489, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 21216\n",
+ "Discriminator Loss: tf.Tensor(0.5958211, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.9598326, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 21217\n",
+ "Discriminator Loss: tf.Tensor(0.57466424, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.8902238, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 21218\n",
+ "Discriminator Loss: tf.Tensor(0.5621184, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.5838727, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 21219\n",
+ "Discriminator Loss: tf.Tensor(0.9027338, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.3143635, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 21220\n",
+ "Discriminator Loss: tf.Tensor(1.8679833, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.1947567, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 21221\n",
+ "Discriminator Loss: tf.Tensor(1.2883174, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.06192102, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 21222\n",
+ "Discriminator Loss: tf.Tensor(1.4008652, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.0630922, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 21223\n",
+ "Discriminator Loss: tf.Tensor(0.805737, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.42580223, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 21224\n",
+ "Discriminator Loss: tf.Tensor(1.0964531, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.5675188, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 21225\n",
+ "Discriminator Loss: tf.Tensor(0.926576, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.18391706, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 21226\n",
+ "Discriminator Loss: tf.Tensor(0.5008368, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.9940203, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 21227\n",
+ "Discriminator Loss: tf.Tensor(1.3796691, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.4391574, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 21228\n",
+ "Discriminator Loss: tf.Tensor(0.9987187, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.027576657, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 21229\n",
+ "Discriminator Loss: tf.Tensor(0.9891057, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.2016158, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 21230\n",
+ "Discriminator Loss: tf.Tensor(0.6358482, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.8187459, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 21231\n",
+ "Discriminator Loss: tf.Tensor(1.2394522, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.6911256, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 21232\n",
+ "Discriminator Loss: tf.Tensor(0.7666479, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.2278146, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 21233\n",
+ "Discriminator Loss: tf.Tensor(1.1969436, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.40053234, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 21234\n",
+ "Discriminator Loss: tf.Tensor(0.6830426, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.2849143, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 21235\n",
+ "Discriminator Loss: tf.Tensor(0.61260176, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.66920453, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 21236\n",
+ "Discriminator Loss: tf.Tensor(1.9775207, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.2059553, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 21237\n",
+ "Discriminator Loss: tf.Tensor(1.1844673, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.23220582, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 21238\n",
+ "Discriminator Loss: tf.Tensor(1.0763627, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.1528715, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 21239\n",
+ "Discriminator Loss: tf.Tensor(0.84339035, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.47146082, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 21240\n",
+ "Discriminator Loss: tf.Tensor(1.3952314, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.7316917, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 21241\n",
+ "Discriminator Loss: tf.Tensor(0.8898921, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.17437641, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 21242\n",
+ "Discriminator Loss: tf.Tensor(0.6748953, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.452582, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 21243\n",
+ "Discriminator Loss: tf.Tensor(0.66500616, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.39123854, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 21244\n",
+ "Discriminator Loss: tf.Tensor(1.0434217, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.11913, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 21245\n",
+ "Discriminator Loss: tf.Tensor(1.1300421, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.35134003, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 21246\n",
+ "Discriminator Loss: tf.Tensor(0.80631125, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.1324962, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 21247\n",
+ "Discriminator Loss: tf.Tensor(0.9011693, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.47057962, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 21248\n",
+ "Discriminator Loss: tf.Tensor(0.9116646, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.8434553, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 21249\n",
+ "Discriminator Loss: tf.Tensor(0.73855776, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.38107994, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 21250\n",
+ "Discriminator Loss: tf.Tensor(1.0502698, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.3401011, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 21251\n",
+ "Discriminator Loss: tf.Tensor(1.0665876, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.2377089, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 21252\n",
+ "Discriminator Loss: tf.Tensor(1.0709635, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.13036755, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 21253\n",
+ "Discriminator Loss: tf.Tensor(1.1596761, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.3178145, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 21254\n",
+ "Discriminator Loss: tf.Tensor(1.2392924, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.31692785, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 21255\n",
+ "Discriminator Loss: tf.Tensor(1.1449634, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.99536544, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 21256\n",
+ "Discriminator Loss: tf.Tensor(0.85849994, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.39929512, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 21257\n",
+ "Discriminator Loss: tf.Tensor(1.0859649, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.4313264, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 21258\n",
+ "Discriminator Loss: tf.Tensor(1.3015739, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.22909383, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 21259\n",
+ "Discriminator Loss: tf.Tensor(0.88227665, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.0474263, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 21260\n",
+ "Discriminator Loss: tf.Tensor(1.0573455, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.18769717, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 21261\n",
+ "Discriminator Loss: tf.Tensor(1.2516549, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.2275919, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 21262\n",
+ "Discriminator Loss: tf.Tensor(1.4472318, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.28075823, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 21263\n",
+ "Discriminator Loss: tf.Tensor(0.953277, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.4559255, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 21264\n",
+ "Discriminator Loss: tf.Tensor(0.56895316, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.6303836, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 21265\n",
+ "Discriminator Loss: tf.Tensor(1.1021225, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.0031164, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 21266\n",
+ "Discriminator Loss: tf.Tensor(1.2241197, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.05075012, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 21267\n",
+ "Discriminator Loss: tf.Tensor(0.79201555, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.3313503, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 21268\n",
+ "Discriminator Loss: tf.Tensor(0.9460334, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.13200101, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 21269\n",
+ "Discriminator Loss: tf.Tensor(0.98543143, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.8182297, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 21270\n",
+ "Discriminator Loss: tf.Tensor(1.3500705, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.06311936, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 21271\n",
+ "Discriminator Loss: tf.Tensor(0.79185444, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.8045961, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 21272\n",
+ "Discriminator Loss: tf.Tensor(0.48277012, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.0413694, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 21273\n",
+ "Discriminator Loss: tf.Tensor(0.72287196, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.96864086, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 21274\n",
+ "Discriminator Loss: tf.Tensor(0.6736215, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.5234983, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 21275\n",
+ "Discriminator Loss: tf.Tensor(1.5589142, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.134659, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 21276\n",
+ "Discriminator Loss: tf.Tensor(1.4764812, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.24076594, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 21277\n",
+ "Discriminator Loss: tf.Tensor(0.80037147, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.2698079, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 21278\n",
+ "Discriminator Loss: tf.Tensor(1.1348926, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.08165904, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 21279\n",
+ "Discriminator Loss: tf.Tensor(0.8395814, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.7821183, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 21280\n",
+ "Discriminator Loss: tf.Tensor(0.8973448, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.5631815, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 21281\n",
+ "Discriminator Loss: tf.Tensor(0.773914, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.35427228, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 21282\n",
+ "Discriminator Loss: tf.Tensor(0.55594003, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.7199091, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 21283\n",
+ "Discriminator Loss: tf.Tensor(1.4242359, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.9309783, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 21284\n",
+ "Discriminator Loss: tf.Tensor(0.95231736, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.90735984, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 21285\n",
+ "Discriminator Loss: tf.Tensor(0.49301612, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.0114958, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 21286\n",
+ "Discriminator Loss: tf.Tensor(0.9020536, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.61947995, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 21287\n",
+ "Discriminator Loss: tf.Tensor(1.3647786, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.385697, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 21288\n",
+ "Discriminator Loss: tf.Tensor(1.5106637, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.2586225, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 21289\n",
+ "Discriminator Loss: tf.Tensor(0.8018328, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.96107596, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 21290\n",
+ "Discriminator Loss: tf.Tensor(0.98798716, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.694547, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 21291\n",
+ "Discriminator Loss: tf.Tensor(0.81627315, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.8868177, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 21292\n",
+ "Discriminator Loss: tf.Tensor(0.8643751, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.77108437, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 21293\n",
+ "Discriminator Loss: tf.Tensor(0.6380931, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.5610662, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 21294\n",
+ "Discriminator Loss: tf.Tensor(1.0986875, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.236193, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 21295\n",
+ "Discriminator Loss: tf.Tensor(1.0255549, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.2523251, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 21296\n",
+ "Discriminator Loss: tf.Tensor(1.1710466, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.622241, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 21297\n",
+ "Discriminator Loss: tf.Tensor(1.0020579, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.063813195, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 21298\n",
+ "Discriminator Loss: tf.Tensor(1.3056562, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.9847463, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 21299\n",
+ "Discriminator Loss: tf.Tensor(0.7727544, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.61622286, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 21300\n",
+ "Discriminator Loss: tf.Tensor(1.4939691, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.7200845, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 21301\n",
+ "Discriminator Loss: tf.Tensor(0.96542716, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.5262136, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 21302\n",
+ "Discriminator Loss: tf.Tensor(1.2243439, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.695489, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 21303\n",
+ "Discriminator Loss: tf.Tensor(1.0326529, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.4854139, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 21304\n",
+ "Discriminator Loss: tf.Tensor(0.6973817, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.37167916, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 21305\n",
+ "Discriminator Loss: tf.Tensor(1.1596055, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.3864655, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 21306\n",
+ "Discriminator Loss: tf.Tensor(0.7762145, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.29993275, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 21307\n",
+ "Discriminator Loss: tf.Tensor(0.7658234, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.6373714, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 21308\n",
+ "Discriminator Loss: tf.Tensor(0.9409505, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.26205453, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 21309\n",
+ "Discriminator Loss: tf.Tensor(1.0672042, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.4677043, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 21310\n",
+ "Discriminator Loss: tf.Tensor(0.952958, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.2761227, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 21311\n",
+ "Discriminator Loss: tf.Tensor(0.9310784, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.6697448, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 21312\n",
+ "Discriminator Loss: tf.Tensor(0.9393496, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.14632402, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 21313\n",
+ "Discriminator Loss: tf.Tensor(1.159672, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.2755728, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 21314\n",
+ "Discriminator Loss: tf.Tensor(0.71847945, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.35052526, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 21315\n",
+ "Discriminator Loss: tf.Tensor(1.4597669, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.7665137, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 21316\n",
+ "Discriminator Loss: tf.Tensor(1.1395264, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.004719729, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 21317\n",
+ "Discriminator Loss: tf.Tensor(0.5334725, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.1988797, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 21318\n",
+ "Discriminator Loss: tf.Tensor(0.79557043, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.25030717, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 21319\n",
+ "Discriminator Loss: tf.Tensor(1.140221, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.6636477, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 21320\n",
+ "Discriminator Loss: tf.Tensor(0.7695189, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.43411624, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 21321\n",
+ "Discriminator Loss: tf.Tensor(0.9026251, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.4049453, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 21322\n",
+ "Discriminator Loss: tf.Tensor(0.9930336, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.41181263, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 21323\n",
+ "Discriminator Loss: tf.Tensor(0.8938838, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.718742, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 21324\n",
+ "Discriminator Loss: tf.Tensor(0.8551798, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.42606154, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 21325\n",
+ "Discriminator Loss: tf.Tensor(1.0754111, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.6123437, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 21326\n",
+ "Discriminator Loss: tf.Tensor(0.9916873, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.32177964, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 21327\n",
+ "Discriminator Loss: tf.Tensor(0.8863067, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.97210187, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 21328\n",
+ "Discriminator Loss: tf.Tensor(0.39169687, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.95754004, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 21329\n",
+ "Discriminator Loss: tf.Tensor(0.6343801, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.3057722, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 21330\n",
+ "Discriminator Loss: tf.Tensor(0.54997534, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.711229, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 21331\n",
+ "Discriminator Loss: tf.Tensor(2.079249, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.0417044, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 21332\n",
+ "Discriminator Loss: tf.Tensor(0.87819767, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.2891377, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 21333\n",
+ "Discriminator Loss: tf.Tensor(1.1806624, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.1205351, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 21334\n",
+ "Discriminator Loss: tf.Tensor(0.6887722, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.38962635, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 21335\n",
+ "Discriminator Loss: tf.Tensor(0.8131865, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.701518, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 21336\n",
+ "Discriminator Loss: tf.Tensor(1.3113074, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.017820945, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 21337\n",
+ "Discriminator Loss: tf.Tensor(1.0848882, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.2995256, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 21338\n",
+ "Discriminator Loss: tf.Tensor(1.0563589, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.14138319, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 21339\n",
+ "Discriminator Loss: tf.Tensor(0.719754, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.7834921, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 21340\n",
+ "Discriminator Loss: tf.Tensor(0.9031488, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.8531446, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 21341\n",
+ "Discriminator Loss: tf.Tensor(1.011526, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.25078294, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 21342\n",
+ "Discriminator Loss: tf.Tensor(0.74210453, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.3979887, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 21343\n",
+ "Discriminator Loss: tf.Tensor(0.93149614, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.24097626, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 21344\n",
+ "Discriminator Loss: tf.Tensor(0.8754214, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.3142132, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 21345\n",
+ "Discriminator Loss: tf.Tensor(1.3431667, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.21178819, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 21346\n",
+ "Discriminator Loss: tf.Tensor(0.91120946, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.2074739, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 21347\n",
+ "Discriminator Loss: tf.Tensor(0.91560876, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.1381008, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 21348\n",
+ "Discriminator Loss: tf.Tensor(1.0204198, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.5804209, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 21349\n",
+ "Discriminator Loss: tf.Tensor(0.87077266, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.43167773, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 21350\n",
+ "Discriminator Loss: tf.Tensor(0.9205954, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.3155731, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 21351\n",
+ "Discriminator Loss: tf.Tensor(0.7676417, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.44840935, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 21352\n",
+ "Discriminator Loss: tf.Tensor(1.3255041, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.1072252, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 21353\n",
+ "Discriminator Loss: tf.Tensor(1.1800977, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.052044123, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 21354\n",
+ "Discriminator Loss: tf.Tensor(0.6389122, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.1841308, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 21355\n",
+ "Discriminator Loss: tf.Tensor(0.53916055, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.3552927, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 21356\n",
+ "Discriminator Loss: tf.Tensor(1.427985, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.36184406, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 21357\n",
+ "Discriminator Loss: tf.Tensor(0.49594003, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.5891961, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 21358\n",
+ "Discriminator Loss: tf.Tensor(0.9642109, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.26108438, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 21359\n",
+ "Discriminator Loss: tf.Tensor(0.5273621, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.4352795, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 21360\n",
+ "Discriminator Loss: tf.Tensor(0.6986248, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.4774239, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 21361\n",
+ "Discriminator Loss: tf.Tensor(1.1980538, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.8002616, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 21362\n",
+ "Discriminator Loss: tf.Tensor(1.3711493, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.07673956, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 21363\n",
+ "Discriminator Loss: tf.Tensor(0.743453, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.4958822, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 21364\n",
+ "Discriminator Loss: tf.Tensor(1.0569423, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.15460181, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 21365\n",
+ "Discriminator Loss: tf.Tensor(1.1268202, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.4875202, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 21366\n",
+ "Discriminator Loss: tf.Tensor(1.6241273, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.41009435, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 21367\n",
+ "Discriminator Loss: tf.Tensor(0.6318144, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.8315897, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 21368\n",
+ "Discriminator Loss: tf.Tensor(0.7150924, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.1968657, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 21369\n",
+ "Discriminator Loss: tf.Tensor(1.2862817, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.23312657, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 21370\n",
+ "Discriminator Loss: tf.Tensor(0.4457314, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.92254514, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 21371\n",
+ "Discriminator Loss: tf.Tensor(0.75137734, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.2314341, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 21372\n",
+ "Discriminator Loss: tf.Tensor(0.76501936, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.74901557, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 21373\n",
+ "Discriminator Loss: tf.Tensor(0.65864974, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.7995843, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 21374\n",
+ "Discriminator Loss: tf.Tensor(1.158411, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.16649741, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 21375\n",
+ "Discriminator Loss: tf.Tensor(1.0215312, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.2614194, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 21376\n",
+ "Discriminator Loss: tf.Tensor(0.96270984, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.29793814, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 21377\n",
+ "Discriminator Loss: tf.Tensor(1.2916778, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.6179, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 21378\n",
+ "Discriminator Loss: tf.Tensor(1.1348057, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.0053020716, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 21379\n",
+ "Discriminator Loss: tf.Tensor(1.1244525, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.227076, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 21380\n",
+ "Discriminator Loss: tf.Tensor(1.0795493, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.32595772, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 21381\n",
+ "Discriminator Loss: tf.Tensor(0.9030385, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.2749497, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 21382\n",
+ "Discriminator Loss: tf.Tensor(1.0246922, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.1116511, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 21383\n",
+ "Discriminator Loss: tf.Tensor(1.0067954, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.6056894, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 21384\n",
+ "Discriminator Loss: tf.Tensor(0.95783997, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.41405156, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 21385\n",
+ "Discriminator Loss: tf.Tensor(1.4378726, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.0093921, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 21386\n",
+ "Discriminator Loss: tf.Tensor(0.9302815, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.4103321, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 21387\n",
+ "Discriminator Loss: tf.Tensor(0.71356857, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.5764652, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 21388\n",
+ "Discriminator Loss: tf.Tensor(0.7557848, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.6431356, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 21389\n",
+ "Discriminator Loss: tf.Tensor(1.1647553, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.1773425, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 21390\n",
+ "Discriminator Loss: tf.Tensor(0.5525199, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.60795337, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 21391\n",
+ "Discriminator Loss: tf.Tensor(1.0106114, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.3322548, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 21392\n",
+ "Discriminator Loss: tf.Tensor(1.1679437, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.10756597, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 21393\n",
+ "Discriminator Loss: tf.Tensor(1.2625337, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.6610049, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 21394\n",
+ "Discriminator Loss: tf.Tensor(1.0920064, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.056672007, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 21395\n",
+ "Discriminator Loss: tf.Tensor(1.3226436, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.0112886, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 21396\n",
+ "Discriminator Loss: tf.Tensor(0.7216962, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.5820336, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 21397\n",
+ "Discriminator Loss: tf.Tensor(0.86493695, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.5629665, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 21398\n",
+ "Discriminator Loss: tf.Tensor(0.6381277, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.256138, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 21399\n",
+ "Discriminator Loss: tf.Tensor(0.79877543, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.30767894, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 21400\n",
+ "Discriminator Loss: tf.Tensor(1.816641, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.2476962, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 21401\n",
+ "Discriminator Loss: tf.Tensor(0.7647749, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.37086916, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 21402\n",
+ "Discriminator Loss: tf.Tensor(0.76467544, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.0109016, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 21403\n",
+ "Discriminator Loss: tf.Tensor(0.6125821, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.6744707, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 21404\n",
+ "Discriminator Loss: tf.Tensor(1.4300082, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.9514245, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 21405\n",
+ "Discriminator Loss: tf.Tensor(1.00111, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.17277257, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 21406\n",
+ "Discriminator Loss: tf.Tensor(0.7588757, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.2520794, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 21407\n",
+ "Discriminator Loss: tf.Tensor(0.77540445, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.73736304, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 21408\n",
+ "Discriminator Loss: tf.Tensor(0.5962174, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.4481682, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 21409\n",
+ "Discriminator Loss: tf.Tensor(0.5602185, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.5558496, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 21410\n",
+ "Discriminator Loss: tf.Tensor(1.0600833, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.228248, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 21411\n",
+ "Discriminator Loss: tf.Tensor(1.535933, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.071443744, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 21412\n",
+ "Discriminator Loss: tf.Tensor(0.7116279, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.8495202, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 21413\n",
+ "Discriminator Loss: tf.Tensor(1.118474, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.64477915, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 21414\n",
+ "Discriminator Loss: tf.Tensor(0.5195979, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.86282635, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 21415\n",
+ "Discriminator Loss: tf.Tensor(1.1299068, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.7174817, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 21416\n",
+ "Discriminator Loss: tf.Tensor(1.1193054, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.011681721, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 21417\n",
+ "Discriminator Loss: tf.Tensor(0.9757271, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.0961007, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 21418\n",
+ "Discriminator Loss: tf.Tensor(0.7497187, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.43453678, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 21419\n",
+ "Discriminator Loss: tf.Tensor(0.9951863, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.263721, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 21420\n",
+ "Discriminator Loss: tf.Tensor(0.971207, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.36927924, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 21421\n",
+ "Discriminator Loss: tf.Tensor(1.2169906, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.6464969, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 21422\n",
+ "Discriminator Loss: tf.Tensor(1.3359181, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.2742701, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 21423\n",
+ "Discriminator Loss: tf.Tensor(0.8554661, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.0228333, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 21424\n",
+ "Discriminator Loss: tf.Tensor(0.46304303, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.263976, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 21425\n",
+ "Discriminator Loss: tf.Tensor(0.9245337, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.32955158, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 21426\n",
+ "Discriminator Loss: tf.Tensor(1.1355376, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.3450315, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 21427\n",
+ "Discriminator Loss: tf.Tensor(0.707857, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.5176255, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 21428\n",
+ "Discriminator Loss: tf.Tensor(1.0341363, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.2836016, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 21429\n",
+ "Discriminator Loss: tf.Tensor(0.6476636, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.47679615, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 21430\n",
+ "Discriminator Loss: tf.Tensor(1.2132249, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.7040852, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 21431\n",
+ "Discriminator Loss: tf.Tensor(0.79386204, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.36804065, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 21432\n",
+ "Discriminator Loss: tf.Tensor(1.1895363, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.2322161, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 21433\n",
+ "Discriminator Loss: tf.Tensor(0.6786044, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.52970046, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 21434\n",
+ "Discriminator Loss: tf.Tensor(0.9872979, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.8940086, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 21435\n",
+ "Discriminator Loss: tf.Tensor(0.98946005, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.15723619, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 21436\n",
+ "Discriminator Loss: tf.Tensor(0.70719194, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.2312502, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 21437\n",
+ "Discriminator Loss: tf.Tensor(0.62834716, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.2225293, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 21438\n",
+ "Discriminator Loss: tf.Tensor(0.6644207, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.6360509, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 21439\n",
+ "Discriminator Loss: tf.Tensor(1.1761298, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.000592, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 21440\n",
+ "Discriminator Loss: tf.Tensor(1.2299469, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.004148858, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 21441\n",
+ "Discriminator Loss: tf.Tensor(0.6873888, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.1835933, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 21442\n",
+ "Discriminator Loss: tf.Tensor(0.7349263, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.47624564, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 21443\n",
+ "Discriminator Loss: tf.Tensor(0.8138668, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.7150131, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 21444\n",
+ "Discriminator Loss: tf.Tensor(0.92608845, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.32458606, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 21445\n",
+ "Discriminator Loss: tf.Tensor(0.7808045, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.0123421, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 21446\n",
+ "Discriminator Loss: tf.Tensor(0.6436711, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.5991779, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 21447\n",
+ "Discriminator Loss: tf.Tensor(1.1868798, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.0591943, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 21448\n",
+ "Discriminator Loss: tf.Tensor(0.6274892, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.7698908, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 21449\n",
+ "Discriminator Loss: tf.Tensor(0.48087817, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.263842, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 21450\n",
+ "Discriminator Loss: tf.Tensor(0.7981781, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.78942746, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 21451\n",
+ "Discriminator Loss: tf.Tensor(0.37862414, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.9486936, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 21452\n",
+ "Discriminator Loss: tf.Tensor(0.83868587, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.5272726, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 21453\n",
+ "Discriminator Loss: tf.Tensor(1.2918899, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.07724223, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 21454\n",
+ "Discriminator Loss: tf.Tensor(1.4046762, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.9113031, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 21455\n",
+ "Discriminator Loss: tf.Tensor(1.0867543, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.6514247, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 21456\n",
+ "Discriminator Loss: tf.Tensor(0.65921664, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.6998609, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 21457\n",
+ "Discriminator Loss: tf.Tensor(1.1485617, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.9731126, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 21458\n",
+ "Discriminator Loss: tf.Tensor(1.382752, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.11185942, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 21459\n",
+ "Discriminator Loss: tf.Tensor(1.1426973, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.88705, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 21460\n",
+ "Discriminator Loss: tf.Tensor(1.1803347, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.06979298, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 21461\n",
+ "Discriminator Loss: tf.Tensor(1.177478, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.5317322, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 21462\n",
+ "Discriminator Loss: tf.Tensor(1.0988425, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.006009867, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 21463\n",
+ "Discriminator Loss: tf.Tensor(1.3531172, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.5420995, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 21464\n",
+ "Discriminator Loss: tf.Tensor(0.86598444, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.30775404, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 21465\n",
+ "Discriminator Loss: tf.Tensor(0.6707082, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.91910267, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 21466\n",
+ "Discriminator Loss: tf.Tensor(0.8064803, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.8200471, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 21467\n",
+ "Discriminator Loss: tf.Tensor(1.1201081, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.9558144, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 21468\n",
+ "Discriminator Loss: tf.Tensor(1.3544531, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.21336393, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 21469\n",
+ "Discriminator Loss: tf.Tensor(1.0184486, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.2007035, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 21470\n",
+ "Discriminator Loss: tf.Tensor(1.2105868, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.14634643, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 21471\n",
+ "Discriminator Loss: tf.Tensor(1.0005317, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.2035093, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 21472\n",
+ "Discriminator Loss: tf.Tensor(0.9027759, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.23295711, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 21473\n",
+ "Discriminator Loss: tf.Tensor(0.5860456, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.1898848, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 21474\n",
+ "Discriminator Loss: tf.Tensor(0.7342548, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.57212347, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 21475\n",
+ "Discriminator Loss: tf.Tensor(0.8747847, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.4408313, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 21476\n",
+ "Discriminator Loss: tf.Tensor(1.0921812, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.091581024, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 21477\n",
+ "Discriminator Loss: tf.Tensor(1.0641788, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.2352566, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 21478\n",
+ "Discriminator Loss: tf.Tensor(0.9481522, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.22777261, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 21479\n",
+ "Discriminator Loss: tf.Tensor(1.1126164, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.97760105, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 21480\n",
+ "Discriminator Loss: tf.Tensor(0.6994557, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.0384616, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 21481\n",
+ "Discriminator Loss: tf.Tensor(0.59139425, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.059043, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 21482\n",
+ "Discriminator Loss: tf.Tensor(0.7274687, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.8869505, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 21483\n",
+ "Discriminator Loss: tf.Tensor(0.77609587, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.7915227, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 21484\n",
+ "Discriminator Loss: tf.Tensor(1.1928773, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.305961, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 21485\n",
+ "Discriminator Loss: tf.Tensor(0.94997483, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.107836924, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 21486\n",
+ "Discriminator Loss: tf.Tensor(1.2195722, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.1114731, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 21487\n",
+ "Discriminator Loss: tf.Tensor(0.71177983, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.4839071, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 21488\n",
+ "Discriminator Loss: tf.Tensor(1.049296, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.5867057, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 21489\n",
+ "Discriminator Loss: tf.Tensor(1.0992471, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.03420975, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 21490\n",
+ "Discriminator Loss: tf.Tensor(1.0626283, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.3443004, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 21491\n",
+ "Discriminator Loss: tf.Tensor(1.0007945, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.21825516, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 21492\n",
+ "Discriminator Loss: tf.Tensor(0.83168465, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.2157252, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 21493\n",
+ "Discriminator Loss: tf.Tensor(1.1866472, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.10892097, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 21494\n",
+ "Discriminator Loss: tf.Tensor(0.92822456, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.7680993, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 21495\n",
+ "Discriminator Loss: tf.Tensor(1.2715019, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.008158718, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 21496\n",
+ "Discriminator Loss: tf.Tensor(1.0680275, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.92762023, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 21497\n",
+ "Discriminator Loss: tf.Tensor(0.9004762, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.31090137, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 21498\n",
+ "Discriminator Loss: tf.Tensor(1.1670775, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.2395724, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 21499\n",
+ "Discriminator Loss: tf.Tensor(1.1273507, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.030235907, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 21500\n",
+ "Discriminator Loss: tf.Tensor(1.2845178, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.9353399, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 21501\n",
+ "Discriminator Loss: tf.Tensor(1.0179584, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.32746065, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 21502\n",
+ "Discriminator Loss: tf.Tensor(0.71464854, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.8495136, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 21503\n",
+ "Discriminator Loss: tf.Tensor(0.71778977, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.4095966, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 21504\n",
+ "Discriminator Loss: tf.Tensor(0.93361896, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.29399052, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 21505\n",
+ "Discriminator Loss: tf.Tensor(0.6349891, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.5888432, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 21506\n",
+ "Discriminator Loss: tf.Tensor(0.9633507, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.283646, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 21507\n",
+ "Discriminator Loss: tf.Tensor(0.763643, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.3798212, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 21508\n",
+ "Discriminator Loss: tf.Tensor(1.0910578, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.30911168, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 21509\n",
+ "Discriminator Loss: tf.Tensor(0.7948262, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.496973, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 21510\n",
+ "Discriminator Loss: tf.Tensor(1.0671797, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.23027007, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 21511\n",
+ "Discriminator Loss: tf.Tensor(0.96191865, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.5902869, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 21512\n",
+ "Discriminator Loss: tf.Tensor(1.0428545, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.09779736, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 21513\n",
+ "Discriminator Loss: tf.Tensor(1.0067754, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.0088314, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 21514\n",
+ "Discriminator Loss: tf.Tensor(0.8199901, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.0846161, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 21515\n",
+ "Discriminator Loss: tf.Tensor(0.58878624, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.3763629, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 21516\n",
+ "Discriminator Loss: tf.Tensor(1.0444121, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.104950845, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 21517\n",
+ "Discriminator Loss: tf.Tensor(1.0063703, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.3633097, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 21518\n",
+ "Discriminator Loss: tf.Tensor(0.3795106, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.8092324, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 21519\n",
+ "Discriminator Loss: tf.Tensor(1.4001598, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.7861456, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 21520\n",
+ "Discriminator Loss: tf.Tensor(0.8583003, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.4949286, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 21521\n",
+ "Discriminator Loss: tf.Tensor(0.77717066, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.4421158, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 21522\n",
+ "Discriminator Loss: tf.Tensor(0.9526304, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.1045571, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 21523\n",
+ "Discriminator Loss: tf.Tensor(1.1790609, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.9529604, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 21524\n",
+ "Discriminator Loss: tf.Tensor(0.5493994, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.8508193, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 21525\n",
+ "Discriminator Loss: tf.Tensor(0.58818185, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.4530975, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 21526\n",
+ "Discriminator Loss: tf.Tensor(0.9405153, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.3879987, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 21527\n",
+ "Discriminator Loss: tf.Tensor(1.3577075, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.9763864, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 21528\n",
+ "Discriminator Loss: tf.Tensor(0.73309296, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.38624775, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 21529\n",
+ "Discriminator Loss: tf.Tensor(1.1097717, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.6818355, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 21530\n",
+ "Discriminator Loss: tf.Tensor(0.73027724, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.5238707, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 21531\n",
+ "Discriminator Loss: tf.Tensor(1.1699922, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.1936121, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 21532\n",
+ "Discriminator Loss: tf.Tensor(1.1032741, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.09088588, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 21533\n",
+ "Discriminator Loss: tf.Tensor(0.8713212, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.270765, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 21534\n",
+ "Discriminator Loss: tf.Tensor(1.0502464, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.34791878, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 21535\n",
+ "Discriminator Loss: tf.Tensor(1.1574125, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.9633709, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 21536\n",
+ "Discriminator Loss: tf.Tensor(0.9106695, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.1755719, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 21537\n",
+ "Discriminator Loss: tf.Tensor(1.0055757, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.6761092, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 21538\n",
+ "Discriminator Loss: tf.Tensor(1.2276813, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.08995973, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 21539\n",
+ "Discriminator Loss: tf.Tensor(0.96610004, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.1844953, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 21540\n",
+ "Discriminator Loss: tf.Tensor(0.9947506, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.25813004, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 21541\n",
+ "Discriminator Loss: tf.Tensor(0.72489613, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.189283, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 21542\n",
+ "Discriminator Loss: tf.Tensor(0.90176916, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.2057258, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 21543\n",
+ "Discriminator Loss: tf.Tensor(0.98368365, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.119122595, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 21544\n",
+ "Discriminator Loss: tf.Tensor(0.48356003, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.2016824, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 21545\n",
+ "Discriminator Loss: tf.Tensor(0.9800205, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.5009924, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 21546\n",
+ "Discriminator Loss: tf.Tensor(0.86981547, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.7455902, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 21547\n",
+ "Discriminator Loss: tf.Tensor(0.8498212, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.7443531, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 21548\n",
+ "Discriminator Loss: tf.Tensor(0.86170864, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.9651045, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 21549\n",
+ "Discriminator Loss: tf.Tensor(0.85342467, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.8571305, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 21550\n",
+ "Discriminator Loss: tf.Tensor(1.0860109, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.9922295, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 21551\n",
+ "Discriminator Loss: tf.Tensor(1.1466482, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.011134602, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 21552\n",
+ "Discriminator Loss: tf.Tensor(0.6484841, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.132945, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 21553\n",
+ "Discriminator Loss: tf.Tensor(0.96598446, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.1194696, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 21554\n",
+ "Discriminator Loss: tf.Tensor(0.84641284, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.22015463, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 21555\n",
+ "Discriminator Loss: tf.Tensor(1.2871256, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.089178, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 21556\n",
+ "Discriminator Loss: tf.Tensor(1.3284588, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.02694934, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 21557\n",
+ "Discriminator Loss: tf.Tensor(0.95091814, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.5384609, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 21558\n",
+ "Discriminator Loss: tf.Tensor(1.2367759, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.5910679, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 21559\n",
+ "Discriminator Loss: tf.Tensor(1.3293343, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.11554628, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 21560\n",
+ "Discriminator Loss: tf.Tensor(0.91887546, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.1481675, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 21561\n",
+ "Discriminator Loss: tf.Tensor(0.86587137, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.2818788, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 21562\n",
+ "Discriminator Loss: tf.Tensor(1.3663261, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.6759886, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 21563\n",
+ "Discriminator Loss: tf.Tensor(0.82073975, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.25420722, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 21564\n",
+ "Discriminator Loss: tf.Tensor(0.8224125, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.0644015, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 21565\n",
+ "Discriminator Loss: tf.Tensor(0.72494024, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.66400355, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 21566\n",
+ "Discriminator Loss: tf.Tensor(0.6446892, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.2697569, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 21567\n",
+ "Discriminator Loss: tf.Tensor(0.8830526, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.37300977, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 21568\n",
+ "Discriminator Loss: tf.Tensor(1.3081024, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.0764322, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 21569\n",
+ "Discriminator Loss: tf.Tensor(0.63815814, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.47638392, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 21570\n",
+ "Discriminator Loss: tf.Tensor(0.9994956, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.2178074, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 21571\n",
+ "Discriminator Loss: tf.Tensor(0.6384124, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.49100137, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 21572\n",
+ "Discriminator Loss: tf.Tensor(1.1759313, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.690227, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 21573\n",
+ "Discriminator Loss: tf.Tensor(0.5475943, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.5554263, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 21574\n",
+ "Discriminator Loss: tf.Tensor(0.9249035, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.1454759, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 21575\n",
+ "Discriminator Loss: tf.Tensor(0.4451695, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.2982775, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 21576\n",
+ "Discriminator Loss: tf.Tensor(1.0000749, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.32235643, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 21577\n",
+ "Discriminator Loss: tf.Tensor(1.8848767, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.4745512, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 21578\n",
+ "Discriminator Loss: tf.Tensor(0.9720106, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.32893053, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 21579\n",
+ "Discriminator Loss: tf.Tensor(0.9827849, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.1837846, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 21580\n",
+ "Discriminator Loss: tf.Tensor(0.71354014, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.51390034, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 21581\n",
+ "Discriminator Loss: tf.Tensor(0.59051335, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.2589868, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 21582\n",
+ "Discriminator Loss: tf.Tensor(0.9616593, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.44027114, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 21583\n",
+ "Discriminator Loss: tf.Tensor(1.2852813, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.3504175, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 21584\n",
+ "Discriminator Loss: tf.Tensor(0.8761121, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.40344748, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 21585\n",
+ "Discriminator Loss: tf.Tensor(0.76004833, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.4462266, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 21586\n",
+ "Discriminator Loss: tf.Tensor(0.98965824, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.26237687, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 21587\n",
+ "Discriminator Loss: tf.Tensor(0.743497, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.2324806, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 21588\n",
+ "Discriminator Loss: tf.Tensor(0.8249269, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.44154802, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 21589\n",
+ "Discriminator Loss: tf.Tensor(1.6165568, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.4953011, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 21590\n",
+ "Discriminator Loss: tf.Tensor(1.2606835, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.09323355, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 21591\n",
+ "Discriminator Loss: tf.Tensor(1.047099, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.8016217, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 21592\n",
+ "Discriminator Loss: tf.Tensor(1.0209321, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.47019538, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 21593\n",
+ "Discriminator Loss: tf.Tensor(1.178514, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.1570748, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 21594\n",
+ "Discriminator Loss: tf.Tensor(1.4672102, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.16707663, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 21595\n",
+ "Discriminator Loss: tf.Tensor(1.032324, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.6163836, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 21596\n",
+ "Discriminator Loss: tf.Tensor(1.0094931, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.30957854, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 21597\n",
+ "Discriminator Loss: tf.Tensor(0.5610454, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.0878515, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 21598\n",
+ "Discriminator Loss: tf.Tensor(0.9132159, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.6005606, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 21599\n",
+ "Discriminator Loss: tf.Tensor(1.2671808, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.5806146, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 21600\n",
+ "Discriminator Loss: tf.Tensor(0.7363134, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.62553746, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 21601\n",
+ "Discriminator Loss: tf.Tensor(0.8761414, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.6558357, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 21602\n",
+ "Discriminator Loss: tf.Tensor(0.8735295, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.34496203, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 21603\n",
+ "Discriminator Loss: tf.Tensor(0.9798071, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.9315286, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 21604\n",
+ "Discriminator Loss: tf.Tensor(1.0057659, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.83955985, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 21605\n",
+ "Discriminator Loss: tf.Tensor(0.6459053, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.2468613, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 21606\n",
+ "Discriminator Loss: tf.Tensor(1.2049644, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.4714283, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 21607\n",
+ "Discriminator Loss: tf.Tensor(1.3213096, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.13621812, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 21608\n",
+ "Discriminator Loss: tf.Tensor(0.9156127, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.4915895, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 21609\n",
+ "Discriminator Loss: tf.Tensor(1.1700238, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.12931418, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 21610\n",
+ "Discriminator Loss: tf.Tensor(0.7679158, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.9050999, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 21611\n",
+ "Discriminator Loss: tf.Tensor(1.2902519, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.6478662, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 21612\n",
+ "Discriminator Loss: tf.Tensor(1.1344905, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.026347997, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 21613\n",
+ "Discriminator Loss: tf.Tensor(1.0631573, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.7930081, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 21614\n",
+ "Discriminator Loss: tf.Tensor(0.5566422, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.7055382, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 21615\n",
+ "Discriminator Loss: tf.Tensor(1.375553, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.9856839, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 21616\n",
+ "Discriminator Loss: tf.Tensor(1.051191, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.07807278, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 21617\n",
+ "Discriminator Loss: tf.Tensor(1.0696437, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.433834, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 21618\n",
+ "Discriminator Loss: tf.Tensor(0.9365503, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.22126965, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 21619\n",
+ "Discriminator Loss: tf.Tensor(0.9822688, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.4502212, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 21620\n",
+ "Discriminator Loss: tf.Tensor(1.1086413, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.02601813, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 21621\n",
+ "Discriminator Loss: tf.Tensor(0.9641709, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.2433611, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 21622\n",
+ "Discriminator Loss: tf.Tensor(0.6337304, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.77548677, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 21623\n",
+ "Discriminator Loss: tf.Tensor(0.69630724, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.6344434, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 21624\n",
+ "Discriminator Loss: tf.Tensor(1.0519433, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.18004811, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 21625\n",
+ "Discriminator Loss: tf.Tensor(0.8134147, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.4150562, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 21626\n",
+ "Discriminator Loss: tf.Tensor(0.8126037, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.0682617, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 21627\n",
+ "Discriminator Loss: tf.Tensor(0.6742853, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.3452233, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 21628\n",
+ "Discriminator Loss: tf.Tensor(1.0882695, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.210981, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 21629\n",
+ "Discriminator Loss: tf.Tensor(1.0425832, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.2454499, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 21630\n",
+ "Discriminator Loss: tf.Tensor(0.6406899, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.9707961, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 21631\n",
+ "Discriminator Loss: tf.Tensor(0.70389795, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.1021777, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 21632\n",
+ "Discriminator Loss: tf.Tensor(1.0466492, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.5078841, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 21633\n",
+ "Discriminator Loss: tf.Tensor(0.9266777, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.1050502, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 21634\n",
+ "Discriminator Loss: tf.Tensor(0.7115715, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.6167287, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 21635\n",
+ "Discriminator Loss: tf.Tensor(1.6042476, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.7760735, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 21636\n",
+ "Discriminator Loss: tf.Tensor(1.0938888, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.23392534, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 21637\n",
+ "Discriminator Loss: tf.Tensor(0.757835, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.84556454, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 21638\n",
+ "Discriminator Loss: tf.Tensor(1.005337, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.5685205, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 21639\n",
+ "Discriminator Loss: tf.Tensor(0.69504815, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.3440695, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 21640\n",
+ "Discriminator Loss: tf.Tensor(1.3195794, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.6898102, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 21641\n",
+ "Discriminator Loss: tf.Tensor(1.0102105, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.07194189, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 21642\n",
+ "Discriminator Loss: tf.Tensor(1.1196256, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.89012575, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 21643\n",
+ "Discriminator Loss: tf.Tensor(0.62169987, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.9145381, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 21644\n",
+ "Discriminator Loss: tf.Tensor(0.36585304, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.3348937, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 21645\n",
+ "Discriminator Loss: tf.Tensor(0.872916, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.45778164, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 21646\n",
+ "Discriminator Loss: tf.Tensor(0.84846413, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.4118029, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 21647\n",
+ "Discriminator Loss: tf.Tensor(0.8976698, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.3278191, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 21648\n",
+ "Discriminator Loss: tf.Tensor(0.79394084, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.6780447, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 21649\n",
+ "Discriminator Loss: tf.Tensor(0.8258614, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.56443745, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 21650\n",
+ "Discriminator Loss: tf.Tensor(0.73333603, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.2506227, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 21651\n",
+ "Discriminator Loss: tf.Tensor(0.55443764, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.1973907, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 21652\n",
+ "Discriminator Loss: tf.Tensor(0.82812035, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.79824036, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 21653\n",
+ "Discriminator Loss: tf.Tensor(1.0575848, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.2257957, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 21654\n",
+ "Discriminator Loss: tf.Tensor(1.7331452, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.6023914, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 21655\n",
+ "Discriminator Loss: tf.Tensor(0.9878042, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.0189022, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 21656\n",
+ "Discriminator Loss: tf.Tensor(1.001018, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.3439007, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 21657\n",
+ "Discriminator Loss: tf.Tensor(1.1394874, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.3541441, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 21658\n",
+ "Discriminator Loss: tf.Tensor(1.1615249, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.00020274271, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 21659\n",
+ "Discriminator Loss: tf.Tensor(1.2021879, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.4272352, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 21660\n",
+ "Discriminator Loss: tf.Tensor(1.3202467, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.12866853, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 21661\n",
+ "Discriminator Loss: tf.Tensor(1.0883906, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.3174688, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 21662\n",
+ "Discriminator Loss: tf.Tensor(0.9364116, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.6702209, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 21663\n",
+ "Discriminator Loss: tf.Tensor(0.94453156, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.71447617, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 21664\n",
+ "Discriminator Loss: tf.Tensor(1.2246493, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.7231754, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 21665\n",
+ "Discriminator Loss: tf.Tensor(1.2155861, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.110884905, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 21666\n",
+ "Discriminator Loss: tf.Tensor(0.9672066, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.2818514, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 21667\n",
+ "Discriminator Loss: tf.Tensor(0.9379529, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.23351657, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 21668\n",
+ "Discriminator Loss: tf.Tensor(0.8853954, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.6893553, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 21669\n",
+ "Discriminator Loss: tf.Tensor(0.75302154, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.33442494, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 21670\n",
+ "Discriminator Loss: tf.Tensor(0.67842174, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.4786752, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 21671\n",
+ "Discriminator Loss: tf.Tensor(0.77012306, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.77285147, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 21672\n",
+ "Discriminator Loss: tf.Tensor(0.9226911, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.3094431, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 21673\n",
+ "Discriminator Loss: tf.Tensor(0.94688964, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.38759628, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 21674\n",
+ "Discriminator Loss: tf.Tensor(0.7978065, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.3809303, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 21675\n",
+ "Discriminator Loss: tf.Tensor(1.1466128, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.08332408, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 21676\n",
+ "Discriminator Loss: tf.Tensor(0.8834789, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.95781404, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 21677\n",
+ "Discriminator Loss: tf.Tensor(0.92211473, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.79984707, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 21678\n",
+ "Discriminator Loss: tf.Tensor(1.1244848, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.43959704, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 21679\n",
+ "Discriminator Loss: tf.Tensor(1.1916828, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.882392, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 21680\n",
+ "Discriminator Loss: tf.Tensor(1.6277877, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.5180315, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 21681\n",
+ "Discriminator Loss: tf.Tensor(1.1365407, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.035632, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 21682\n",
+ "Discriminator Loss: tf.Tensor(0.9324342, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.27758563, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 21683\n",
+ "Discriminator Loss: tf.Tensor(0.92272604, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.0615941, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 21684\n",
+ "Discriminator Loss: tf.Tensor(0.31680277, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.8484413, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 21685\n",
+ "Discriminator Loss: tf.Tensor(1.5399961, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.446229, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 21686\n",
+ "Discriminator Loss: tf.Tensor(1.1973368, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.058638502, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 21687\n",
+ "Discriminator Loss: tf.Tensor(1.0596397, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.0726922, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 21688\n",
+ "Discriminator Loss: tf.Tensor(0.7425524, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.57744175, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 21689\n",
+ "Discriminator Loss: tf.Tensor(1.0071732, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.7318004, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 21690\n",
+ "Discriminator Loss: tf.Tensor(1.1964382, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.08984055, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 21691\n",
+ "Discriminator Loss: tf.Tensor(0.91200775, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.9853626, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 21692\n",
+ "Discriminator Loss: tf.Tensor(0.7294725, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.8983306, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 21693\n",
+ "Discriminator Loss: tf.Tensor(0.7306415, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.1074897, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 21694\n",
+ "Discriminator Loss: tf.Tensor(0.40710384, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.0686582, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 21695\n",
+ "Discriminator Loss: tf.Tensor(0.60139066, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.6516114, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 21696\n",
+ "Discriminator Loss: tf.Tensor(1.6396098, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.0952537, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 21697\n",
+ "Discriminator Loss: tf.Tensor(0.61391044, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.45545462, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 21698\n",
+ "Discriminator Loss: tf.Tensor(0.9924859, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.1145228, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 21699\n",
+ "Discriminator Loss: tf.Tensor(1.0403186, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.19633906, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 21700\n",
+ "Discriminator Loss: tf.Tensor(0.88266265, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.3994188, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 21701\n",
+ "Discriminator Loss: tf.Tensor(0.7839784, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.57586217, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 21702\n",
+ "Discriminator Loss: tf.Tensor(1.445382, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.9301813, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 21703\n",
+ "Discriminator Loss: tf.Tensor(0.90503144, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.1444588, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 21704\n",
+ "Discriminator Loss: tf.Tensor(0.8611143, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.63769054, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 21705\n",
+ "Discriminator Loss: tf.Tensor(0.70863366, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.2529584, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 21706\n",
+ "Discriminator Loss: tf.Tensor(0.36592823, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.9764063, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 21707\n",
+ "Discriminator Loss: tf.Tensor(0.81655204, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.4182167, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 21708\n",
+ "Discriminator Loss: tf.Tensor(1.0450354, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.084270895, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 21709\n",
+ "Discriminator Loss: tf.Tensor(1.194405, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.59563065, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 21710\n",
+ "Discriminator Loss: tf.Tensor(0.8195126, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.2706927, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 21711\n",
+ "Discriminator Loss: tf.Tensor(1.1850363, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.07729589, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 21712\n",
+ "Discriminator Loss: tf.Tensor(1.0593069, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.5229555, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 21713\n",
+ "Discriminator Loss: tf.Tensor(1.1715649, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.058988553, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 21714\n",
+ "Discriminator Loss: tf.Tensor(1.1490152, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.784097, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 21715\n",
+ "Discriminator Loss: tf.Tensor(0.5444727, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.0315169, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 21716\n",
+ "Discriminator Loss: tf.Tensor(0.4726618, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.0012231, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 21717\n",
+ "Discriminator Loss: tf.Tensor(1.2859287, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.496297, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 21718\n",
+ "Discriminator Loss: tf.Tensor(1.7468436, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.62916964, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 21719\n",
+ "Discriminator Loss: tf.Tensor(1.2148364, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.8277807, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 21720\n",
+ "Discriminator Loss: tf.Tensor(0.67269677, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.628327, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 21721\n",
+ "Discriminator Loss: tf.Tensor(1.145568, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.946117, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 21722\n",
+ "Discriminator Loss: tf.Tensor(1.3158689, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.01704535, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 21723\n",
+ "Discriminator Loss: tf.Tensor(0.786399, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.0435337, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 21724\n",
+ "Discriminator Loss: tf.Tensor(0.44349274, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.69484264, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 21725\n",
+ "Discriminator Loss: tf.Tensor(1.1114638, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.684096, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 21726\n",
+ "Discriminator Loss: tf.Tensor(1.0080233, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.1767584, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 21727\n",
+ "Discriminator Loss: tf.Tensor(0.53033423, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.1921479, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 21728\n",
+ "Discriminator Loss: tf.Tensor(0.77924407, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.26196125, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 21729\n",
+ "Discriminator Loss: tf.Tensor(1.3032417, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.838089, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 21730\n",
+ "Discriminator Loss: tf.Tensor(1.0941402, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.148072, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 21731\n",
+ "Discriminator Loss: tf.Tensor(0.44673842, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.89727974, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 21732\n",
+ "Discriminator Loss: tf.Tensor(1.2581658, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.8522034, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 21733\n",
+ "Discriminator Loss: tf.Tensor(1.0614293, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.17005883, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 21734\n",
+ "Discriminator Loss: tf.Tensor(1.031892, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.2031016, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 21735\n",
+ "Discriminator Loss: tf.Tensor(0.8865165, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.3327279, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 21736\n",
+ "Discriminator Loss: tf.Tensor(1.0481172, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.5237207, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 21737\n",
+ "Discriminator Loss: tf.Tensor(0.8165107, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.44227442, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 21738\n",
+ "Discriminator Loss: tf.Tensor(0.46182197, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.2431176, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 21739\n",
+ "Discriminator Loss: tf.Tensor(0.7961196, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.40988818, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 21740\n",
+ "Discriminator Loss: tf.Tensor(0.72078365, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.4627395, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 21741\n",
+ "Discriminator Loss: tf.Tensor(1.0385147, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.07730394, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 21742\n",
+ "Discriminator Loss: tf.Tensor(1.0091715, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.4920803, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 21743\n",
+ "Discriminator Loss: tf.Tensor(0.83523613, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.42063263, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 21744\n",
+ "Discriminator Loss: tf.Tensor(0.7377214, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.3256239, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 21745\n",
+ "Discriminator Loss: tf.Tensor(0.75756395, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.62466645, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 21746\n",
+ "Discriminator Loss: tf.Tensor(1.2914624, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.2705245, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 21747\n",
+ "Discriminator Loss: tf.Tensor(0.90245086, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.33405697, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 21748\n",
+ "Discriminator Loss: tf.Tensor(0.86546934, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.32474, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 21749\n",
+ "Discriminator Loss: tf.Tensor(0.89086545, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.38283816, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 21750\n",
+ "Discriminator Loss: tf.Tensor(1.1844114, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.4866686, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 21751\n",
+ "Discriminator Loss: tf.Tensor(0.9639264, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.13193531, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 21752\n",
+ "Discriminator Loss: tf.Tensor(0.92545295, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.2822865, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 21753\n",
+ "Discriminator Loss: tf.Tensor(0.7471103, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.43011823, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 21754\n",
+ "Discriminator Loss: tf.Tensor(0.96519697, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.753862, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 21755\n",
+ "Discriminator Loss: tf.Tensor(0.8652443, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.18904716, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 21756\n",
+ "Discriminator Loss: tf.Tensor(0.9504343, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.101219, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 21757\n",
+ "Discriminator Loss: tf.Tensor(0.5994128, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.75725317, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 21758\n",
+ "Discriminator Loss: tf.Tensor(1.1640629, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.0988272, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 21759\n",
+ "Discriminator Loss: tf.Tensor(1.303508, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.1909954, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 21760\n",
+ "Discriminator Loss: tf.Tensor(1.257739, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.0953372, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 21761\n",
+ "Discriminator Loss: tf.Tensor(0.6303146, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.46988901, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 21762\n",
+ "Discriminator Loss: tf.Tensor(1.2181895, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.5916119, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 21763\n",
+ "Discriminator Loss: tf.Tensor(1.0949565, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.11604589, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 21764\n",
+ "Discriminator Loss: tf.Tensor(0.839185, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.1250476, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 21765\n",
+ "Discriminator Loss: tf.Tensor(0.46084574, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.7955, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 21766\n",
+ "Discriminator Loss: tf.Tensor(1.1238549, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.7684523, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 21767\n",
+ "Discriminator Loss: tf.Tensor(1.3177692, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.16614348, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 21768\n",
+ "Discriminator Loss: tf.Tensor(0.76121324, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.3183941, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 21769\n",
+ "Discriminator Loss: tf.Tensor(0.7063688, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.44586682, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 21770\n",
+ "Discriminator Loss: tf.Tensor(1.2613748, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.0921988, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 21771\n",
+ "Discriminator Loss: tf.Tensor(1.0258181, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.09145018, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 21772\n",
+ "Discriminator Loss: tf.Tensor(0.9442513, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.4300245, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 21773\n",
+ "Discriminator Loss: tf.Tensor(1.1252155, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.04219657, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 21774\n",
+ "Discriminator Loss: tf.Tensor(1.0372679, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.0583514, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 21775\n",
+ "Discriminator Loss: tf.Tensor(0.7267571, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.36196175, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 21776\n",
+ "Discriminator Loss: tf.Tensor(1.149395, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.8253204, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 21777\n",
+ "Discriminator Loss: tf.Tensor(0.7974403, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.27313504, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 21778\n",
+ "Discriminator Loss: tf.Tensor(1.1189318, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.0916325, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 21779\n",
+ "Discriminator Loss: tf.Tensor(0.6889369, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.8629761, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 21780\n",
+ "Discriminator Loss: tf.Tensor(1.2430722, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.6465187, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 21781\n",
+ "Discriminator Loss: tf.Tensor(0.8688235, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.4060434, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 21782\n",
+ "Discriminator Loss: tf.Tensor(0.9412141, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.52465564, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 21783\n",
+ "Discriminator Loss: tf.Tensor(1.1898679, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.8436704, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 21784\n",
+ "Discriminator Loss: tf.Tensor(1.0955594, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.010850091, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 21785\n",
+ "Discriminator Loss: tf.Tensor(0.60545, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.107364, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 21786\n",
+ "Discriminator Loss: tf.Tensor(0.72220665, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.2446941, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 21787\n",
+ "Discriminator Loss: tf.Tensor(0.7112909, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.5734765, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 21788\n",
+ "Discriminator Loss: tf.Tensor(1.0798604, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.0961643, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 21789\n",
+ "Discriminator Loss: tf.Tensor(0.23199455, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.9632385, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 21790\n",
+ "Discriminator Loss: tf.Tensor(1.131778, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.4175676, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 21791\n",
+ "Discriminator Loss: tf.Tensor(1.0540929, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.08670163, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 21792\n",
+ "Discriminator Loss: tf.Tensor(1.3374743, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.02787, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 21793\n",
+ "Discriminator Loss: tf.Tensor(1.3291528, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.18342204, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 21794\n",
+ "Discriminator Loss: tf.Tensor(0.91860914, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.8146586, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 21795\n",
+ "Discriminator Loss: tf.Tensor(0.53391707, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.7164643, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 21796\n",
+ "Discriminator Loss: tf.Tensor(1.3368797, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.7008299, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 21797\n",
+ "Discriminator Loss: tf.Tensor(0.89001715, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.2747221, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 21798\n",
+ "Discriminator Loss: tf.Tensor(0.7040231, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.0581124, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 21799\n",
+ "Discriminator Loss: tf.Tensor(1.2178243, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.12227329, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 21800\n",
+ "Discriminator Loss: tf.Tensor(0.5883454, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.2355021, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 21801\n",
+ "Discriminator Loss: tf.Tensor(0.6609845, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.61566633, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 21802\n",
+ "Discriminator Loss: tf.Tensor(1.2567905, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.5671902, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 21803\n",
+ "Discriminator Loss: tf.Tensor(1.2300992, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.2004296, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 21804\n",
+ "Discriminator Loss: tf.Tensor(0.904891, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.1987125, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 21805\n",
+ "Discriminator Loss: tf.Tensor(0.7533774, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.3648491, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 21806\n",
+ "Discriminator Loss: tf.Tensor(1.3358623, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.6673034, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 21807\n",
+ "Discriminator Loss: tf.Tensor(0.68678904, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.49782655, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 21808\n",
+ "Discriminator Loss: tf.Tensor(1.257784, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.1115377, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 21809\n",
+ "Discriminator Loss: tf.Tensor(0.94168574, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.2655454, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 21810\n",
+ "Discriminator Loss: tf.Tensor(1.1283259, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.3787056, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 21811\n",
+ "Discriminator Loss: tf.Tensor(0.8452759, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.30764076, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 21812\n",
+ "Discriminator Loss: tf.Tensor(0.76669306, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.1402045, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 21813\n",
+ "Discriminator Loss: tf.Tensor(0.72064865, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.53653264, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 21814\n",
+ "Discriminator Loss: tf.Tensor(1.2164477, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.9308721, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 21815\n",
+ "Discriminator Loss: tf.Tensor(0.7985732, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.32011148, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 21816\n",
+ "Discriminator Loss: tf.Tensor(0.9930876, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.0631226, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 21817\n",
+ "Discriminator Loss: tf.Tensor(0.47052425, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.97353315, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 21818\n",
+ "Discriminator Loss: tf.Tensor(0.7387433, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.0565289, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 21819\n",
+ "Discriminator Loss: tf.Tensor(0.81898373, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.29437843, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 21820\n",
+ "Discriminator Loss: tf.Tensor(1.4992125, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.2443752, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 21821\n",
+ "Discriminator Loss: tf.Tensor(0.7441477, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.40531048, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 21822\n",
+ "Discriminator Loss: tf.Tensor(1.1657039, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.6369429, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 21823\n",
+ "Discriminator Loss: tf.Tensor(0.7509313, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.2311012, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 21824\n",
+ "Discriminator Loss: tf.Tensor(0.9698831, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.4141955, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 21825\n",
+ "Discriminator Loss: tf.Tensor(0.91446006, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.159711, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 21826\n",
+ "Discriminator Loss: tf.Tensor(0.6767316, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.5093021, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 21827\n",
+ "Discriminator Loss: tf.Tensor(1.1742042, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.7849102, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 21828\n",
+ "Discriminator Loss: tf.Tensor(0.94250697, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.17439556, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 21829\n",
+ "Discriminator Loss: tf.Tensor(0.91493654, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.4194789, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 21830\n",
+ "Discriminator Loss: tf.Tensor(0.86347145, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.35979447, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 21831\n",
+ "Discriminator Loss: tf.Tensor(1.0038435, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.5982652, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 21832\n",
+ "Discriminator Loss: tf.Tensor(1.073286, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.038048174, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 21833\n",
+ "Discriminator Loss: tf.Tensor(0.6890882, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.1284904, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 21834\n",
+ "Discriminator Loss: tf.Tensor(0.94644654, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.23598747, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 21835\n",
+ "Discriminator Loss: tf.Tensor(0.82548857, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.3174028, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 21836\n",
+ "Discriminator Loss: tf.Tensor(1.0077723, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.1208603, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 21837\n",
+ "Discriminator Loss: tf.Tensor(0.9515462, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.7307816, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 21838\n",
+ "Discriminator Loss: tf.Tensor(0.9995848, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.7729799, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 21839\n",
+ "Discriminator Loss: tf.Tensor(0.8253797, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.1655039, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 21840\n",
+ "Discriminator Loss: tf.Tensor(0.87752736, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.28150362, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 21841\n",
+ "Discriminator Loss: tf.Tensor(0.80875075, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.8151522, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 21842\n",
+ "Discriminator Loss: tf.Tensor(0.94706845, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.36299682, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 21843\n",
+ "Discriminator Loss: tf.Tensor(1.1164703, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.0302843, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 21844\n",
+ "Discriminator Loss: tf.Tensor(0.5539695, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.3021308, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 21845\n",
+ "Discriminator Loss: tf.Tensor(0.8633444, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.4817628, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 21846\n",
+ "Discriminator Loss: tf.Tensor(1.3583097, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.6507835, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 21847\n",
+ "Discriminator Loss: tf.Tensor(1.2858506, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.20061791, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 21848\n",
+ "Discriminator Loss: tf.Tensor(0.8152927, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.0352511, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 21849\n",
+ "Discriminator Loss: tf.Tensor(1.2390091, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.03479434, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 21850\n",
+ "Discriminator Loss: tf.Tensor(0.9516834, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.2842618, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 21851\n",
+ "Discriminator Loss: tf.Tensor(0.8796376, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.230871, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 21852\n",
+ "Discriminator Loss: tf.Tensor(1.1817443, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.3623343, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 21853\n",
+ "Discriminator Loss: tf.Tensor(0.81958425, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.178243, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 21854\n",
+ "Discriminator Loss: tf.Tensor(0.8438338, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.39003596, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 21855\n",
+ "Discriminator Loss: tf.Tensor(0.66865355, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.5420362, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 21856\n",
+ "Discriminator Loss: tf.Tensor(1.155387, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.128754, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 21857\n",
+ "Discriminator Loss: tf.Tensor(0.78412056, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.6839532, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 21858\n",
+ "Discriminator Loss: tf.Tensor(0.74531746, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.3511459, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 21859\n",
+ "Discriminator Loss: tf.Tensor(1.3821564, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.4936472, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 21860\n",
+ "Discriminator Loss: tf.Tensor(0.6764589, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.6065216, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 21861\n",
+ "Discriminator Loss: tf.Tensor(0.8113146, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.8551155, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 21862\n",
+ "Discriminator Loss: tf.Tensor(0.397718, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.97802025, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 21863\n",
+ "Discriminator Loss: tf.Tensor(0.41506684, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.3340157, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 21864\n",
+ "Discriminator Loss: tf.Tensor(1.1633595, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.6753594, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 21865\n",
+ "Discriminator Loss: tf.Tensor(1.3291522, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.2549083, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 21866\n",
+ "Discriminator Loss: tf.Tensor(0.78234357, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.1936563, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 21867\n",
+ "Discriminator Loss: tf.Tensor(0.88837457, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.20092408, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 21868\n",
+ "Discriminator Loss: tf.Tensor(1.0677204, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.2964628, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 21869\n",
+ "Discriminator Loss: tf.Tensor(1.0508865, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.28466436, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 21870\n",
+ "Discriminator Loss: tf.Tensor(0.5400685, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.1752911, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 21871\n",
+ "Discriminator Loss: tf.Tensor(0.8618853, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.43985257, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 21872\n",
+ "Discriminator Loss: tf.Tensor(1.2449715, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.4877037, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 21873\n",
+ "Discriminator Loss: tf.Tensor(1.2344707, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.04721734, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 21874\n",
+ "Discriminator Loss: tf.Tensor(0.8707988, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.0643387, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 21875\n",
+ "Discriminator Loss: tf.Tensor(0.7510793, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.82288784, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 21876\n",
+ "Discriminator Loss: tf.Tensor(0.68362993, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.6510282, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 21877\n",
+ "Discriminator Loss: tf.Tensor(1.4631195, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.8889593, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 21878\n",
+ "Discriminator Loss: tf.Tensor(0.99147713, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.11040258, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 21879\n",
+ "Discriminator Loss: tf.Tensor(0.8879895, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.1762546, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 21880\n",
+ "Discriminator Loss: tf.Tensor(0.92354155, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.3404845, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 21881\n",
+ "Discriminator Loss: tf.Tensor(0.5014124, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.3448024, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 21882\n",
+ "Discriminator Loss: tf.Tensor(0.73050535, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.61306983, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 21883\n",
+ "Discriminator Loss: tf.Tensor(1.3066736, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.8112092, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 21884\n",
+ "Discriminator Loss: tf.Tensor(0.7528885, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.3713796, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 21885\n",
+ "Discriminator Loss: tf.Tensor(1.1292746, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.7715393, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 21886\n",
+ "Discriminator Loss: tf.Tensor(1.0743449, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.17689747, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 21887\n",
+ "Discriminator Loss: tf.Tensor(0.9559199, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.1235617, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 21888\n",
+ "Discriminator Loss: tf.Tensor(0.9488045, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.45296693, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 21889\n",
+ "Discriminator Loss: tf.Tensor(0.73256534, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.7589434, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 21890\n",
+ "Discriminator Loss: tf.Tensor(1.1564496, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.08944452, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 21891\n",
+ "Discriminator Loss: tf.Tensor(1.2159387, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.7708836, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 21892\n",
+ "Discriminator Loss: tf.Tensor(0.9225093, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.16082104, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 21893\n",
+ "Discriminator Loss: tf.Tensor(0.7908219, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.3372507, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 21894\n",
+ "Discriminator Loss: tf.Tensor(1.0040338, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.28040528, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 21895\n",
+ "Discriminator Loss: tf.Tensor(0.49392158, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.1027206, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 21896\n",
+ "Discriminator Loss: tf.Tensor(0.56756383, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.1899604, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 21897\n",
+ "Discriminator Loss: tf.Tensor(1.0170963, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.32393062, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 21898\n",
+ "Discriminator Loss: tf.Tensor(1.040367, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.7159295, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 21899\n",
+ "Discriminator Loss: tf.Tensor(1.0065975, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.085722856, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 21900\n",
+ "Discriminator Loss: tf.Tensor(0.9215926, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.3360376, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 21901\n",
+ "Discriminator Loss: tf.Tensor(1.2425538, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.02197661, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 21902\n",
+ "Discriminator Loss: tf.Tensor(0.7039091, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.99601597, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 21903\n",
+ "Discriminator Loss: tf.Tensor(0.79877955, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.540041, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 21904\n",
+ "Discriminator Loss: tf.Tensor(1.061729, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.7057859, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 21905\n",
+ "Discriminator Loss: tf.Tensor(0.91064584, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.14004248, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 21906\n",
+ "Discriminator Loss: tf.Tensor(0.7057252, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.3554373, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 21907\n",
+ "Discriminator Loss: tf.Tensor(0.9145393, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.26305148, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 21908\n",
+ "Discriminator Loss: tf.Tensor(0.83449924, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.31958, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 21909\n",
+ "Discriminator Loss: tf.Tensor(0.7187127, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.44499156, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 21910\n",
+ "Discriminator Loss: tf.Tensor(0.81591713, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.9861349, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 21911\n",
+ "Discriminator Loss: tf.Tensor(0.6859369, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.41414666, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 21912\n",
+ "Discriminator Loss: tf.Tensor(0.92706984, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.5451741, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 21913\n",
+ "Discriminator Loss: tf.Tensor(1.2159355, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.007167963, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 21914\n",
+ "Discriminator Loss: tf.Tensor(0.9481615, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.235783, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 21915\n",
+ "Discriminator Loss: tf.Tensor(0.72593486, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.33513165, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 21916\n",
+ "Discriminator Loss: tf.Tensor(1.2493335, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.7805672, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 21917\n",
+ "Discriminator Loss: tf.Tensor(1.2024374, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.33245155, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 21918\n",
+ "Discriminator Loss: tf.Tensor(0.56322676, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.0234596, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 21919\n",
+ "Discriminator Loss: tf.Tensor(0.7694254, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.1984967, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 21920\n",
+ "Discriminator Loss: tf.Tensor(0.8021492, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.7483037, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 21921\n",
+ "Discriminator Loss: tf.Tensor(1.1193892, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.2070979, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 21922\n",
+ "Discriminator Loss: tf.Tensor(0.7271976, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.6770144, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 21923\n",
+ "Discriminator Loss: tf.Tensor(0.93681765, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.2389135, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 21924\n",
+ "Discriminator Loss: tf.Tensor(0.79717743, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.34358367, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 21925\n",
+ "Discriminator Loss: tf.Tensor(0.8728125, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.6114029, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 21926\n",
+ "Discriminator Loss: tf.Tensor(1.0927587, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.1388124, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 21927\n",
+ "Discriminator Loss: tf.Tensor(0.7052127, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.6263561, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 21928\n",
+ "Discriminator Loss: tf.Tensor(0.6309137, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.55273193, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 21929\n",
+ "Discriminator Loss: tf.Tensor(0.59645146, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.5369258, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 21930\n",
+ "Discriminator Loss: tf.Tensor(0.64577144, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.46488568, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 21931\n",
+ "Discriminator Loss: tf.Tensor(1.1425197, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.7352992, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 21932\n",
+ "Discriminator Loss: tf.Tensor(0.78799814, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.5560946, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 21933\n",
+ "Discriminator Loss: tf.Tensor(1.0319961, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.3637632, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 21934\n",
+ "Discriminator Loss: tf.Tensor(0.9121723, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.25726512, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 21935\n",
+ "Discriminator Loss: tf.Tensor(0.82513297, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.4892944, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 21936\n",
+ "Discriminator Loss: tf.Tensor(0.850356, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.3349894, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 21937\n",
+ "Discriminator Loss: tf.Tensor(1.1516238, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.8954479, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 21938\n",
+ "Discriminator Loss: tf.Tensor(0.618617, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.72416204, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 21939\n",
+ "Discriminator Loss: tf.Tensor(1.2485158, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.6217064, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 21940\n",
+ "Discriminator Loss: tf.Tensor(0.6338328, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.6323018, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 21941\n",
+ "Discriminator Loss: tf.Tensor(1.0165567, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.709258, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 21942\n",
+ "Discriminator Loss: tf.Tensor(0.9868715, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.13314699, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 21943\n",
+ "Discriminator Loss: tf.Tensor(0.77388513, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.2752025, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 21944\n",
+ "Discriminator Loss: tf.Tensor(1.1045223, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.13005276, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 21945\n",
+ "Discriminator Loss: tf.Tensor(0.8295429, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.6985149, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 21946\n",
+ "Discriminator Loss: tf.Tensor(0.49020416, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.7141978, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 21947\n",
+ "Discriminator Loss: tf.Tensor(1.11237, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.6197642, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 21948\n",
+ "Discriminator Loss: tf.Tensor(1.0198293, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.52275866, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 21949\n",
+ "Discriminator Loss: tf.Tensor(0.76173913, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.0532753, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 21950\n",
+ "Discriminator Loss: tf.Tensor(0.9893864, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.7097793, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 21951\n",
+ "Discriminator Loss: tf.Tensor(0.7663151, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.0399085, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 21952\n",
+ "Discriminator Loss: tf.Tensor(0.71040404, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.0055376, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 21953\n",
+ "Discriminator Loss: tf.Tensor(0.8934261, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.1206822, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 21954\n",
+ "Discriminator Loss: tf.Tensor(0.9189681, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.52901196, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 21955\n",
+ "Discriminator Loss: tf.Tensor(1.3064485, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.8364598, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 21956\n",
+ "Discriminator Loss: tf.Tensor(1.2449619, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.1444789, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 21957\n",
+ "Discriminator Loss: tf.Tensor(0.80834883, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.7748194, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 21958\n",
+ "Discriminator Loss: tf.Tensor(1.1075007, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.8106885, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 21959\n",
+ "Discriminator Loss: tf.Tensor(1.1162559, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.004365305, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 21960\n",
+ "Discriminator Loss: tf.Tensor(0.8255127, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.254942, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 21961\n",
+ "Discriminator Loss: tf.Tensor(0.77008724, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.5229458, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 21962\n",
+ "Discriminator Loss: tf.Tensor(0.77754736, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.7362217, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 21963\n",
+ "Discriminator Loss: tf.Tensor(1.2077544, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.3552991, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 21964\n",
+ "Discriminator Loss: tf.Tensor(0.75945497, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.2173826, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 21965\n",
+ "Discriminator Loss: tf.Tensor(0.7609612, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.48918104, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 21966\n",
+ "Discriminator Loss: tf.Tensor(1.5793997, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.0555298, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 21967\n",
+ "Discriminator Loss: tf.Tensor(0.9296319, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.20606893, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 21968\n",
+ "Discriminator Loss: tf.Tensor(0.80299985, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.0039682, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 21969\n",
+ "Discriminator Loss: tf.Tensor(1.0795814, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.9085286, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 21970\n",
+ "Discriminator Loss: tf.Tensor(1.0259932, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.39615893, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 21971\n",
+ "Discriminator Loss: tf.Tensor(1.1102991, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.0470295, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 21972\n",
+ "Discriminator Loss: tf.Tensor(0.8768786, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.32990026, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 21973\n",
+ "Discriminator Loss: tf.Tensor(0.61594486, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.3564196, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 21974\n",
+ "Discriminator Loss: tf.Tensor(0.7260645, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.51659924, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 21975\n",
+ "Discriminator Loss: tf.Tensor(1.3496339, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.8608303, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 21976\n",
+ "Discriminator Loss: tf.Tensor(0.62128735, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.4938437, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 21977\n",
+ "Discriminator Loss: tf.Tensor(0.9131522, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.24628453, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 21978\n",
+ "Discriminator Loss: tf.Tensor(0.6300018, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.2802101, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 21979\n",
+ "Discriminator Loss: tf.Tensor(0.94733363, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.43164888, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 21980\n",
+ "Discriminator Loss: tf.Tensor(1.3622012, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.8911486, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 21981\n",
+ "Discriminator Loss: tf.Tensor(1.1554413, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.023247575, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 21982\n",
+ "Discriminator Loss: tf.Tensor(0.95125216, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.1356167, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 21983\n",
+ "Discriminator Loss: tf.Tensor(0.5889605, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.58628637, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 21984\n",
+ "Discriminator Loss: tf.Tensor(1.3340374, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.7171698, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 21985\n",
+ "Discriminator Loss: tf.Tensor(1.0275152, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.0054464093, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 21986\n",
+ "Discriminator Loss: tf.Tensor(0.8670924, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.4602433, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 21987\n",
+ "Discriminator Loss: tf.Tensor(1.2202343, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.033527594, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 21988\n",
+ "Discriminator Loss: tf.Tensor(0.8017893, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.0090631, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 21989\n",
+ "Discriminator Loss: tf.Tensor(0.59750843, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.7822276, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 21990\n",
+ "Discriminator Loss: tf.Tensor(0.7211783, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.6325661, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 21991\n",
+ "Discriminator Loss: tf.Tensor(1.4848692, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.32572824, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 21992\n",
+ "Discriminator Loss: tf.Tensor(1.060934, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.1431495, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 21993\n",
+ "Discriminator Loss: tf.Tensor(1.1599137, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.3556192, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 21994\n",
+ "Discriminator Loss: tf.Tensor(0.8639363, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.92131907, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 21995\n",
+ "Discriminator Loss: tf.Tensor(0.63792366, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.3021885, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 21996\n",
+ "Discriminator Loss: tf.Tensor(0.90239525, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.27971748, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 21997\n",
+ "Discriminator Loss: tf.Tensor(0.8262953, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.2882396, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 21998\n",
+ "Discriminator Loss: tf.Tensor(2.005885, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.8288172, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 21999\n",
+ "Discriminator Loss: tf.Tensor(0.47019604, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.2085418, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 22000\n",
+ "Discriminator Loss: tf.Tensor(1.0564095, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.0039374568, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 22001\n",
+ "Discriminator Loss: tf.Tensor(0.4937098, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.6139704, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 22002\n",
+ "Discriminator Loss: tf.Tensor(0.500841, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.66922385, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 22003\n",
+ "Discriminator Loss: tf.Tensor(1.0672386, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.7719246, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 22004\n",
+ "Discriminator Loss: tf.Tensor(0.8783315, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.514461, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 22005\n",
+ "Discriminator Loss: tf.Tensor(0.83217347, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.0493425, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 22006\n",
+ "Discriminator Loss: tf.Tensor(0.39213145, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.92718035, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 22007\n",
+ "Discriminator Loss: tf.Tensor(0.7065532, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.137669, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 22008\n",
+ "Discriminator Loss: tf.Tensor(0.6148485, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.83158845, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 22009\n",
+ "Discriminator Loss: tf.Tensor(1.529784, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.7061127, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 22010\n",
+ "Discriminator Loss: tf.Tensor(0.71134096, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.40508175, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 22011\n",
+ "Discriminator Loss: tf.Tensor(0.90441906, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.5950526, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 22012\n",
+ "Discriminator Loss: tf.Tensor(0.76527184, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.29523778, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 22013\n",
+ "Discriminator Loss: tf.Tensor(0.9279311, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.1216245, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 22014\n",
+ "Discriminator Loss: tf.Tensor(0.6491446, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.5953817, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 22015\n",
+ "Discriminator Loss: tf.Tensor(1.4483595, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.8344952, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 22016\n",
+ "Discriminator Loss: tf.Tensor(1.2389355, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.03266299, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 22017\n",
+ "Discriminator Loss: tf.Tensor(0.8669331, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.2135098, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 22018\n",
+ "Discriminator Loss: tf.Tensor(0.5928261, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.73837703, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 22019\n",
+ "Discriminator Loss: tf.Tensor(0.99430287, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.5398422, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 22020\n",
+ "Discriminator Loss: tf.Tensor(1.2873219, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.093112, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 22021\n",
+ "Discriminator Loss: tf.Tensor(1.1199065, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.0684886, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 22022\n",
+ "Discriminator Loss: tf.Tensor(0.79769385, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.39563164, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 22023\n",
+ "Discriminator Loss: tf.Tensor(0.9778024, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.8689712, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 22024\n",
+ "Discriminator Loss: tf.Tensor(0.7047751, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.3435545, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 22025\n",
+ "Discriminator Loss: tf.Tensor(0.93215144, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.1843272, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 22026\n",
+ "Discriminator Loss: tf.Tensor(0.4734644, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.0658501, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 22027\n",
+ "Discriminator Loss: tf.Tensor(0.5095008, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.92123157, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 22028\n",
+ "Discriminator Loss: tf.Tensor(0.75569916, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.1807395, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 22029\n",
+ "Discriminator Loss: tf.Tensor(0.49733177, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.61610746, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 22030\n",
+ "Discriminator Loss: tf.Tensor(1.9601471, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.3555415, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 22031\n",
+ "Discriminator Loss: tf.Tensor(0.8133526, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.4236808, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 22032\n",
+ "Discriminator Loss: tf.Tensor(0.8483317, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.0735894, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 22033\n",
+ "Discriminator Loss: tf.Tensor(0.6703135, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.46280935, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 22034\n",
+ "Discriminator Loss: tf.Tensor(1.2305019, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.5118519, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 22035\n",
+ "Discriminator Loss: tf.Tensor(0.6422373, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.5012849, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 22036\n",
+ "Discriminator Loss: tf.Tensor(1.0240725, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.8078018, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 22037\n",
+ "Discriminator Loss: tf.Tensor(1.0195802, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.107786946, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 22038\n",
+ "Discriminator Loss: tf.Tensor(1.1857177, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.1703297, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 22039\n",
+ "Discriminator Loss: tf.Tensor(0.98840016, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.33455124, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 22040\n",
+ "Discriminator Loss: tf.Tensor(0.7216706, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.9629678, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 22041\n",
+ "Discriminator Loss: tf.Tensor(0.6221816, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.512086, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 22042\n",
+ "Discriminator Loss: tf.Tensor(0.4742642, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.0708789, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 22043\n",
+ "Discriminator Loss: tf.Tensor(0.5212105, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.0684925, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 22044\n",
+ "Discriminator Loss: tf.Tensor(0.78412884, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.0318402, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 22045\n",
+ "Discriminator Loss: tf.Tensor(0.9230708, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.8215764, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 22046\n",
+ "Discriminator Loss: tf.Tensor(0.6402466, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.464542, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 22047\n",
+ "Discriminator Loss: tf.Tensor(1.2861793, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.06785794, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 22048\n",
+ "Discriminator Loss: tf.Tensor(1.1053487, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.4293776, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 22049\n",
+ "Discriminator Loss: tf.Tensor(1.224688, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.091703616, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 22050\n",
+ "Discriminator Loss: tf.Tensor(0.84299135, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.2331897, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 22051\n",
+ "Discriminator Loss: tf.Tensor(0.73098713, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.5581159, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 22052\n",
+ "Discriminator Loss: tf.Tensor(0.54861134, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.3325988, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 22053\n",
+ "Discriminator Loss: tf.Tensor(0.6918017, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.7863872, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 22054\n",
+ "Discriminator Loss: tf.Tensor(1.0526928, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.5226072, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 22055\n",
+ "Discriminator Loss: tf.Tensor(1.3415895, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.22278635, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 22056\n",
+ "Discriminator Loss: tf.Tensor(1.1864527, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.1212342, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 22057\n",
+ "Discriminator Loss: tf.Tensor(1.3444546, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.02420144, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 22058\n",
+ "Discriminator Loss: tf.Tensor(0.73022866, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.3067966, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 22059\n",
+ "Discriminator Loss: tf.Tensor(0.7561136, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.43992233, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 22060\n",
+ "Discriminator Loss: tf.Tensor(1.4268454, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.7510546, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 22061\n",
+ "Discriminator Loss: tf.Tensor(0.7866902, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.2802057, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 22062\n",
+ "Discriminator Loss: tf.Tensor(0.9449616, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.2626027, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 22063\n",
+ "Discriminator Loss: tf.Tensor(0.96709365, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.13797787, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 22064\n",
+ "Discriminator Loss: tf.Tensor(0.85198545, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.1131006, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 22065\n",
+ "Discriminator Loss: tf.Tensor(0.6436797, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.77411205, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 22066\n",
+ "Discriminator Loss: tf.Tensor(1.4579184, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.5589536, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 22067\n",
+ "Discriminator Loss: tf.Tensor(0.75088805, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.33033672, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 22068\n",
+ "Discriminator Loss: tf.Tensor(1.2634175, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.7961178, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 22069\n",
+ "Discriminator Loss: tf.Tensor(1.0798985, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.25833616, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 22070\n",
+ "Discriminator Loss: tf.Tensor(0.99694896, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.9249196, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 22071\n",
+ "Discriminator Loss: tf.Tensor(0.35544157, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.9895002, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 22072\n",
+ "Discriminator Loss: tf.Tensor(0.90899277, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.4644226, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 22073\n",
+ "Discriminator Loss: tf.Tensor(1.1601621, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.11794019, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 22074\n",
+ "Discriminator Loss: tf.Tensor(0.73300314, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.1927943, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 22075\n",
+ "Discriminator Loss: tf.Tensor(0.49979272, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.64049965, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 22076\n",
+ "Discriminator Loss: tf.Tensor(1.3244914, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.6941671, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 22077\n",
+ "Discriminator Loss: tf.Tensor(1.0696508, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.13681804, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 22078\n",
+ "Discriminator Loss: tf.Tensor(1.1831936, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.180074, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 22079\n",
+ "Discriminator Loss: tf.Tensor(0.78201425, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.51943415, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 22080\n",
+ "Discriminator Loss: tf.Tensor(0.94729936, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.5543786, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 22081\n",
+ "Discriminator Loss: tf.Tensor(0.73539984, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.72271377, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 22082\n",
+ "Discriminator Loss: tf.Tensor(0.58529055, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.951387, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 22083\n",
+ "Discriminator Loss: tf.Tensor(0.8701681, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.2595137, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 22084\n",
+ "Discriminator Loss: tf.Tensor(1.0803977, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.11690817, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 22085\n",
+ "Discriminator Loss: tf.Tensor(1.2041926, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.6959547, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 22086\n",
+ "Discriminator Loss: tf.Tensor(0.764439, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.48589566, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 22087\n",
+ "Discriminator Loss: tf.Tensor(1.0814713, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.7103142, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 22088\n",
+ "Discriminator Loss: tf.Tensor(1.0174196, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.18308227, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 22089\n",
+ "Discriminator Loss: tf.Tensor(0.7925265, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.3928591, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 22090\n",
+ "Discriminator Loss: tf.Tensor(0.81558466, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.26723608, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 22091\n",
+ "Discriminator Loss: tf.Tensor(1.0145911, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.3262253, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 22092\n",
+ "Discriminator Loss: tf.Tensor(0.68207157, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.75684875, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 22093\n",
+ "Discriminator Loss: tf.Tensor(1.0434848, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.6927496, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 22094\n",
+ "Discriminator Loss: tf.Tensor(0.64633787, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.47277713, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 22095\n",
+ "Discriminator Loss: tf.Tensor(0.8349296, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.9863539, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 22096\n",
+ "Discriminator Loss: tf.Tensor(0.6279726, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.4469242, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 22097\n",
+ "Discriminator Loss: tf.Tensor(0.94269085, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.0407522, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 22098\n",
+ "Discriminator Loss: tf.Tensor(0.99100876, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.03923973, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 22099\n",
+ "Discriminator Loss: tf.Tensor(0.9959945, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.5796696, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 22100\n",
+ "Discriminator Loss: tf.Tensor(0.7789918, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.31156108, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 22101\n",
+ "Discriminator Loss: tf.Tensor(0.77035594, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.4057174, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 22102\n",
+ "Discriminator Loss: tf.Tensor(0.9440263, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.25083563, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 22103\n",
+ "Discriminator Loss: tf.Tensor(0.8050567, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.6507057, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 22104\n",
+ "Discriminator Loss: tf.Tensor(0.95117855, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.12946929, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 22105\n",
+ "Discriminator Loss: tf.Tensor(0.93238884, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.4455771, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 22106\n",
+ "Discriminator Loss: tf.Tensor(0.6023587, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.5887515, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 22107\n",
+ "Discriminator Loss: tf.Tensor(1.1916956, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.8206438, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 22108\n",
+ "Discriminator Loss: tf.Tensor(0.82141924, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.3206713, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 22109\n",
+ "Discriminator Loss: tf.Tensor(0.5899378, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.0859816, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 22110\n",
+ "Discriminator Loss: tf.Tensor(0.34626073, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.7943541, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 22111\n",
+ "Discriminator Loss: tf.Tensor(0.7303137, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.38284293, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 22112\n",
+ "Discriminator Loss: tf.Tensor(1.3713448, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.9739712, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 22113\n",
+ "Discriminator Loss: tf.Tensor(0.6414526, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.4737033, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 22114\n",
+ "Discriminator Loss: tf.Tensor(0.94057703, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.7455968, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 22115\n",
+ "Discriminator Loss: tf.Tensor(0.87342554, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.5972894, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 22116\n",
+ "Discriminator Loss: tf.Tensor(1.101171, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.2807863, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 22117\n",
+ "Discriminator Loss: tf.Tensor(0.8374933, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.60398436, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 22118\n",
+ "Discriminator Loss: tf.Tensor(0.42972946, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.8666081, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 22119\n",
+ "Discriminator Loss: tf.Tensor(0.80773723, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.8537895, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 22120\n",
+ "Discriminator Loss: tf.Tensor(0.5612091, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.2596318, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 22121\n",
+ "Discriminator Loss: tf.Tensor(0.59990156, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.73847204, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 22122\n",
+ "Discriminator Loss: tf.Tensor(1.2879301, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.5953919, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 22123\n",
+ "Discriminator Loss: tf.Tensor(0.91354525, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.4359931, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 22124\n",
+ "Discriminator Loss: tf.Tensor(0.9421786, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.5655714, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 22125\n",
+ "Discriminator Loss: tf.Tensor(0.9192302, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.3733932, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 22126\n",
+ "Discriminator Loss: tf.Tensor(1.005655, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.22659, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 22127\n",
+ "Discriminator Loss: tf.Tensor(0.9813606, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.37536636, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 22128\n",
+ "Discriminator Loss: tf.Tensor(1.0775514, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.6390611, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 22129\n",
+ "Discriminator Loss: tf.Tensor(0.6392788, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.4062408, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 22130\n",
+ "Discriminator Loss: tf.Tensor(1.1898661, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.7738129, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 22131\n",
+ "Discriminator Loss: tf.Tensor(0.89933777, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.17958218, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 22132\n",
+ "Discriminator Loss: tf.Tensor(0.8987548, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.3918695, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 22133\n",
+ "Discriminator Loss: tf.Tensor(0.7510775, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.45992374, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 22134\n",
+ "Discriminator Loss: tf.Tensor(0.8178643, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.0207272, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 22135\n",
+ "Discriminator Loss: tf.Tensor(0.79378784, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.0894, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 22136\n",
+ "Discriminator Loss: tf.Tensor(0.59619534, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.0153339, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 22137\n",
+ "Discriminator Loss: tf.Tensor(0.6521945, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.1834836, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 22138\n",
+ "Discriminator Loss: tf.Tensor(1.0317967, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.3872112, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 22139\n",
+ "Discriminator Loss: tf.Tensor(0.88149905, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.22915883, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 22140\n",
+ "Discriminator Loss: tf.Tensor(1.4215009, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.0031286, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 22141\n",
+ "Discriminator Loss: tf.Tensor(0.64424765, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.93203586, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 22142\n",
+ "Discriminator Loss: tf.Tensor(0.9899588, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.8375042, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 22143\n",
+ "Discriminator Loss: tf.Tensor(0.4941674, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.1077853, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 22144\n",
+ "Discriminator Loss: tf.Tensor(0.7139269, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.3977859, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 22145\n",
+ "Discriminator Loss: tf.Tensor(2.0494654, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.218127, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 22146\n",
+ "Discriminator Loss: tf.Tensor(0.8015044, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.43252632, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 22147\n",
+ "Discriminator Loss: tf.Tensor(0.9636204, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.9390602, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 22148\n",
+ "Discriminator Loss: tf.Tensor(0.5670289, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.86732155, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 22149\n",
+ "Discriminator Loss: tf.Tensor(0.7641313, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.3614053, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 22150\n",
+ "Discriminator Loss: tf.Tensor(1.0059965, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.4442346, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 22151\n",
+ "Discriminator Loss: tf.Tensor(0.7845401, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.2703046, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 22152\n",
+ "Discriminator Loss: tf.Tensor(1.1584136, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.04742204, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 22153\n",
+ "Discriminator Loss: tf.Tensor(1.2408681, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.7702585, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 22154\n",
+ "Discriminator Loss: tf.Tensor(0.95765704, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.17372273, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 22155\n",
+ "Discriminator Loss: tf.Tensor(0.93030494, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.3377842, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 22156\n",
+ "Discriminator Loss: tf.Tensor(0.8318872, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.23108111, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 22157\n",
+ "Discriminator Loss: tf.Tensor(1.1090667, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.0925288, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 22158\n",
+ "Discriminator Loss: tf.Tensor(0.7661182, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.5281238, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 22159\n",
+ "Discriminator Loss: tf.Tensor(1.1059366, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.6047608, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 22160\n",
+ "Discriminator Loss: tf.Tensor(1.2251022, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.0040263482, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 22161\n",
+ "Discriminator Loss: tf.Tensor(0.67715484, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.1806153, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 22162\n",
+ "Discriminator Loss: tf.Tensor(0.7989568, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.35549054, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 22163\n",
+ "Discriminator Loss: tf.Tensor(1.0938805, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.1996465, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 22164\n",
+ "Discriminator Loss: tf.Tensor(0.3010612, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.0464668, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 22165\n",
+ "Discriminator Loss: tf.Tensor(0.61622226, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.6754859, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 22166\n",
+ "Discriminator Loss: tf.Tensor(1.3559802, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.1257725, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 22167\n",
+ "Discriminator Loss: tf.Tensor(0.8933718, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.19387782, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 22168\n",
+ "Discriminator Loss: tf.Tensor(1.1367643, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.3280298, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 22169\n",
+ "Discriminator Loss: tf.Tensor(0.7488687, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.35443664, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 22170\n",
+ "Discriminator Loss: tf.Tensor(0.93209565, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.839583, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 22171\n",
+ "Discriminator Loss: tf.Tensor(0.6468111, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.5681029, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 22172\n",
+ "Discriminator Loss: tf.Tensor(0.9917854, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.96305054, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 22173\n",
+ "Discriminator Loss: tf.Tensor(0.3302557, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.1561629, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 22174\n",
+ "Discriminator Loss: tf.Tensor(0.66079986, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.0162424, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 22175\n",
+ "Discriminator Loss: tf.Tensor(0.7419096, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.57891303, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 22176\n",
+ "Discriminator Loss: tf.Tensor(1.1911919, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.2877538, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 22177\n",
+ "Discriminator Loss: tf.Tensor(0.86889267, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.35743955, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 22178\n",
+ "Discriminator Loss: tf.Tensor(1.1838818, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.4521033, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 22179\n",
+ "Discriminator Loss: tf.Tensor(1.1143333, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.3449513, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 22180\n",
+ "Discriminator Loss: tf.Tensor(0.7896886, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.165688, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 22181\n",
+ "Discriminator Loss: tf.Tensor(1.1253322, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.72589785, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 22182\n",
+ "Discriminator Loss: tf.Tensor(0.97807324, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.93332785, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 22183\n",
+ "Discriminator Loss: tf.Tensor(1.0430472, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.58096606, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 22184\n",
+ "Discriminator Loss: tf.Tensor(0.98379666, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.5272455, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 22185\n",
+ "Discriminator Loss: tf.Tensor(1.415879, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.26249167, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 22186\n",
+ "Discriminator Loss: tf.Tensor(1.1765656, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.0937752, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 22187\n",
+ "Discriminator Loss: tf.Tensor(0.85527784, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.29158637, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 22188\n",
+ "Discriminator Loss: tf.Tensor(1.0145552, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.7352977, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 22189\n",
+ "Discriminator Loss: tf.Tensor(0.9239978, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.400916, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 22190\n",
+ "Discriminator Loss: tf.Tensor(0.6100384, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.1893332, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 22191\n",
+ "Discriminator Loss: tf.Tensor(0.91204625, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.30036768, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 22192\n",
+ "Discriminator Loss: tf.Tensor(1.026674, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.96701306, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 22193\n",
+ "Discriminator Loss: tf.Tensor(0.9192791, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.9852914, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 22194\n",
+ "Discriminator Loss: tf.Tensor(0.62643003, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.223941, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 22195\n",
+ "Discriminator Loss: tf.Tensor(0.5071654, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.7790548, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 22196\n",
+ "Discriminator Loss: tf.Tensor(1.0369725, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.4833509, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 22197\n",
+ "Discriminator Loss: tf.Tensor(0.96487325, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.18202682, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 22198\n",
+ "Discriminator Loss: tf.Tensor(0.76467115, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.6977043, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 22199\n",
+ "Discriminator Loss: tf.Tensor(0.74123377, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.42470765, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 22200\n",
+ "Discriminator Loss: tf.Tensor(1.5051906, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.9005442, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 22201\n",
+ "Discriminator Loss: tf.Tensor(0.7101487, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.3842106, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 22202\n",
+ "Discriminator Loss: tf.Tensor(1.1966186, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.4662971, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 22203\n",
+ "Discriminator Loss: tf.Tensor(0.7138722, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.63959223, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 22204\n",
+ "Discriminator Loss: tf.Tensor(0.7980436, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.4332643, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 22205\n",
+ "Discriminator Loss: tf.Tensor(0.9452126, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.16667074, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 22206\n",
+ "Discriminator Loss: tf.Tensor(0.8805307, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.4438168, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 22207\n",
+ "Discriminator Loss: tf.Tensor(0.99249446, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.090213664, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 22208\n",
+ "Discriminator Loss: tf.Tensor(0.7927504, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.496281, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 22209\n",
+ "Discriminator Loss: tf.Tensor(0.6775111, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.46762624, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 22210\n",
+ "Discriminator Loss: tf.Tensor(0.851406, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.3740193, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 22211\n",
+ "Discriminator Loss: tf.Tensor(0.83756167, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.3941207, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 22212\n",
+ "Discriminator Loss: tf.Tensor(1.1085744, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.4326965, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 22213\n",
+ "Discriminator Loss: tf.Tensor(0.76976985, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.393932, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 22214\n",
+ "Discriminator Loss: tf.Tensor(1.2056721, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.0094641, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 22215\n",
+ "Discriminator Loss: tf.Tensor(0.40694386, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.235983, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 22216\n",
+ "Discriminator Loss: tf.Tensor(0.5850224, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.0160886, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 22217\n",
+ "Discriminator Loss: tf.Tensor(0.93086684, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.8221443, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 22218\n",
+ "Discriminator Loss: tf.Tensor(0.7739631, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.2404866, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 22219\n",
+ "Discriminator Loss: tf.Tensor(0.81328434, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.32226363, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 22220\n",
+ "Discriminator Loss: tf.Tensor(1.7218738, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.1776855, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 22221\n",
+ "Discriminator Loss: tf.Tensor(1.0809733, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.22499059, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 22222\n",
+ "Discriminator Loss: tf.Tensor(1.3527682, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.74636674, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 22223\n",
+ "Discriminator Loss: tf.Tensor(0.6864147, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.7057888, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 22224\n",
+ "Discriminator Loss: tf.Tensor(0.533962, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.1163031, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 22225\n",
+ "Discriminator Loss: tf.Tensor(0.7781224, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.76154214, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 22226\n",
+ "Discriminator Loss: tf.Tensor(1.3549721, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.5708475, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 22227\n",
+ "Discriminator Loss: tf.Tensor(0.7959307, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.33758417, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 22228\n",
+ "Discriminator Loss: tf.Tensor(0.8625486, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.311406, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 22229\n",
+ "Discriminator Loss: tf.Tensor(0.5669323, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.0295948, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 22230\n",
+ "Discriminator Loss: tf.Tensor(0.8766836, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.2612873, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 22231\n",
+ "Discriminator Loss: tf.Tensor(1.2614387, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.21461798, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 22232\n",
+ "Discriminator Loss: tf.Tensor(0.9482534, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.008165, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 22233\n",
+ "Discriminator Loss: tf.Tensor(0.64997846, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.72839755, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 22234\n",
+ "Discriminator Loss: tf.Tensor(1.0001637, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.3711739, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 22235\n",
+ "Discriminator Loss: tf.Tensor(0.8094548, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.30228356, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 22236\n",
+ "Discriminator Loss: tf.Tensor(1.0398155, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.5830294, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 22237\n",
+ "Discriminator Loss: tf.Tensor(1.183166, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.43565872, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 22238\n",
+ "Discriminator Loss: tf.Tensor(0.7844799, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.0001591, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 22239\n",
+ "Discriminator Loss: tf.Tensor(0.8630624, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.7497563, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 22240\n",
+ "Discriminator Loss: tf.Tensor(0.68044764, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.183436, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 22241\n",
+ "Discriminator Loss: tf.Tensor(0.6756132, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.83323306, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 22242\n",
+ "Discriminator Loss: tf.Tensor(0.80508316, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.4912902, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 22243\n",
+ "Discriminator Loss: tf.Tensor(1.2635266, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.21651916, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 22244\n",
+ "Discriminator Loss: tf.Tensor(0.9464545, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.0920092, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 22245\n",
+ "Discriminator Loss: tf.Tensor(1.0909592, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.21945786, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 22246\n",
+ "Discriminator Loss: tf.Tensor(0.9496076, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.5282116, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 22247\n",
+ "Discriminator Loss: tf.Tensor(0.72202206, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.4102117, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 22248\n",
+ "Discriminator Loss: tf.Tensor(1.3003106, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.5739545, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 22249\n",
+ "Discriminator Loss: tf.Tensor(0.9634305, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.17502725, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 22250\n",
+ "Discriminator Loss: tf.Tensor(0.8814198, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.417252, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 22251\n",
+ "Discriminator Loss: tf.Tensor(1.2589585, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.0972177, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 22252\n",
+ "Discriminator Loss: tf.Tensor(0.7333199, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.0902009, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 22253\n",
+ "Discriminator Loss: tf.Tensor(0.5511884, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.88718146, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 22254\n",
+ "Discriminator Loss: tf.Tensor(0.76648057, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.8777047, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 22255\n",
+ "Discriminator Loss: tf.Tensor(0.99483776, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.7955416, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 22256\n",
+ "Discriminator Loss: tf.Tensor(0.9865679, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.4850167, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 22257\n",
+ "Discriminator Loss: tf.Tensor(1.4557613, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.33247077, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 22258\n",
+ "Discriminator Loss: tf.Tensor(0.92783093, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.8261879, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 22259\n",
+ "Discriminator Loss: tf.Tensor(0.93132836, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.51828146, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 22260\n",
+ "Discriminator Loss: tf.Tensor(1.4017513, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.6106395, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 22261\n",
+ "Discriminator Loss: tf.Tensor(1.1349927, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.11374072, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 22262\n",
+ "Discriminator Loss: tf.Tensor(0.6417222, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.395411, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 22263\n",
+ "Discriminator Loss: tf.Tensor(0.95625615, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.56725204, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 22264\n",
+ "Discriminator Loss: tf.Tensor(0.6634375, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.64347506, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 22265\n",
+ "Discriminator Loss: tf.Tensor(1.3029705, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.6502435, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 22266\n",
+ "Discriminator Loss: tf.Tensor(0.77467245, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.4034114, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 22267\n",
+ "Discriminator Loss: tf.Tensor(1.4421439, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.9521638, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 22268\n",
+ "Discriminator Loss: tf.Tensor(0.5840918, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.4781178, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 22269\n",
+ "Discriminator Loss: tf.Tensor(0.7909496, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.8342155, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 22270\n",
+ "Discriminator Loss: tf.Tensor(1.0314978, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.32714322, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 22271\n",
+ "Discriminator Loss: tf.Tensor(1.0962938, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.683935, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 22272\n",
+ "Discriminator Loss: tf.Tensor(1.0505359, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.029160216, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 22273\n",
+ "Discriminator Loss: tf.Tensor(0.76667726, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.225713, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 22274\n",
+ "Discriminator Loss: tf.Tensor(0.6314072, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.46156874, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 22275\n",
+ "Discriminator Loss: tf.Tensor(0.89938223, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.2640959, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 22276\n",
+ "Discriminator Loss: tf.Tensor(0.72706145, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.6194281, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 22277\n",
+ "Discriminator Loss: tf.Tensor(0.9844514, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.3069022, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 22278\n",
+ "Discriminator Loss: tf.Tensor(0.7650751, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.2934722, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 22279\n",
+ "Discriminator Loss: tf.Tensor(0.6079987, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.96168584, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 22280\n",
+ "Discriminator Loss: tf.Tensor(1.2523992, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.9679903, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 22281\n",
+ "Discriminator Loss: tf.Tensor(0.73772585, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.4594848, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 22282\n",
+ "Discriminator Loss: tf.Tensor(0.5071305, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.5559363, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 22283\n",
+ "Discriminator Loss: tf.Tensor(0.8527243, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.40522265, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 22284\n",
+ "Discriminator Loss: tf.Tensor(1.2690213, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.6425066, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 22285\n",
+ "Discriminator Loss: tf.Tensor(1.0465753, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.023153087, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 22286\n",
+ "Discriminator Loss: tf.Tensor(0.7428897, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.0831879, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 22287\n",
+ "Discriminator Loss: tf.Tensor(0.49044752, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.7892286, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 22288\n",
+ "Discriminator Loss: tf.Tensor(1.1923883, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.6797022, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 22289\n",
+ "Discriminator Loss: tf.Tensor(1.1689501, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.06801149, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 22290\n",
+ "Discriminator Loss: tf.Tensor(0.9610164, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.4293762, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 22291\n",
+ "Discriminator Loss: tf.Tensor(0.90850145, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.17121053, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 22292\n",
+ "Discriminator Loss: tf.Tensor(0.8156426, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.237202, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 22293\n",
+ "Discriminator Loss: tf.Tensor(0.30833602, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.2171799, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 22294\n",
+ "Discriminator Loss: tf.Tensor(0.6812703, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.74478275, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 22295\n",
+ "Discriminator Loss: tf.Tensor(0.7291028, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.3475866, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 22296\n",
+ "Discriminator Loss: tf.Tensor(1.2069799, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.11495125, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 22297\n",
+ "Discriminator Loss: tf.Tensor(0.7176856, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.3478855, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 22298\n",
+ "Discriminator Loss: tf.Tensor(0.9409345, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.26152956, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 22299\n",
+ "Discriminator Loss: tf.Tensor(1.094261, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.5630156, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 22300\n",
+ "Discriminator Loss: tf.Tensor(0.984735, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.35246778, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 22301\n",
+ "Discriminator Loss: tf.Tensor(0.91111505, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.7417779, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 22302\n",
+ "Discriminator Loss: tf.Tensor(0.9891385, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.8624506, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 22303\n",
+ "Discriminator Loss: tf.Tensor(1.0273147, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.038790405, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 22304\n",
+ "Discriminator Loss: tf.Tensor(0.5973571, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.39392, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 22305\n",
+ "Discriminator Loss: tf.Tensor(0.7111971, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.8601082, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 22306\n",
+ "Discriminator Loss: tf.Tensor(0.842132, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.5176506, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 22307\n",
+ "Discriminator Loss: tf.Tensor(1.8570032, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.1716006, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 22308\n",
+ "Discriminator Loss: tf.Tensor(1.3110237, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.1651658, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 22309\n",
+ "Discriminator Loss: tf.Tensor(1.4010566, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.40777406, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 22310\n",
+ "Discriminator Loss: tf.Tensor(0.846483, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.8804696, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 22311\n",
+ "Discriminator Loss: tf.Tensor(0.23400435, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.9589035, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 22312\n",
+ "Discriminator Loss: tf.Tensor(1.2939562, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.5666766, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 22313\n",
+ "Discriminator Loss: tf.Tensor(1.3331478, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.22622667, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 22314\n",
+ "Discriminator Loss: tf.Tensor(1.0040199, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.94734305, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 22315\n",
+ "Discriminator Loss: tf.Tensor(0.77302057, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.5362222, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 22316\n",
+ "Discriminator Loss: tf.Tensor(1.1528581, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.4180177, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 22317\n",
+ "Discriminator Loss: tf.Tensor(1.0198869, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.26904234, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 22318\n",
+ "Discriminator Loss: tf.Tensor(0.5245498, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.1906853, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 22319\n",
+ "Discriminator Loss: tf.Tensor(0.7691842, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.5947801, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 22320\n",
+ "Discriminator Loss: tf.Tensor(1.0386112, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.16846132, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 22321\n",
+ "Discriminator Loss: tf.Tensor(0.8343837, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.1786188, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 22322\n",
+ "Discriminator Loss: tf.Tensor(0.8052259, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.4701284, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 22323\n",
+ "Discriminator Loss: tf.Tensor(0.93871, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.0066514, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 22324\n",
+ "Discriminator Loss: tf.Tensor(0.75497955, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.40401268, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 22325\n",
+ "Discriminator Loss: tf.Tensor(0.9127052, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.5157188, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 22326\n",
+ "Discriminator Loss: tf.Tensor(1.3352185, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.07950493, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 22327\n",
+ "Discriminator Loss: tf.Tensor(1.0428298, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.4117002, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 22328\n",
+ "Discriminator Loss: tf.Tensor(0.8928075, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.23307557, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 22329\n",
+ "Discriminator Loss: tf.Tensor(0.82910407, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.8445128, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 22330\n",
+ "Discriminator Loss: tf.Tensor(0.59950924, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.5143438, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 22331\n",
+ "Discriminator Loss: tf.Tensor(0.87982035, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.8176607, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 22332\n",
+ "Discriminator Loss: tf.Tensor(0.4434328, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.8416519, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 22333\n",
+ "Discriminator Loss: tf.Tensor(0.5627316, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.9368265, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 22334\n",
+ "Discriminator Loss: tf.Tensor(0.61917627, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.1796502, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 22335\n",
+ "Discriminator Loss: tf.Tensor(0.8093599, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.98100024, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 22336\n",
+ "Discriminator Loss: tf.Tensor(0.83416915, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.63826483, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 22337\n",
+ "Discriminator Loss: tf.Tensor(1.2220957, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.8456402, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 22338\n",
+ "Discriminator Loss: tf.Tensor(1.394044, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.14367612, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 22339\n",
+ "Discriminator Loss: tf.Tensor(0.8904468, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.8786676, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 22340\n",
+ "Discriminator Loss: tf.Tensor(0.6286624, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.60886186, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 22341\n",
+ "Discriminator Loss: tf.Tensor(1.3331845, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.4448063, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 22342\n",
+ "Discriminator Loss: tf.Tensor(1.004181, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.17715149, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 22343\n",
+ "Discriminator Loss: tf.Tensor(0.6481729, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.2473611, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 22344\n",
+ "Discriminator Loss: tf.Tensor(0.8689151, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.48171338, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 22345\n",
+ "Discriminator Loss: tf.Tensor(0.83767563, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.2957927, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 22346\n",
+ "Discriminator Loss: tf.Tensor(0.71546566, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.31929848, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 22347\n",
+ "Discriminator Loss: tf.Tensor(1.0864174, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.7331117, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 22348\n",
+ "Discriminator Loss: tf.Tensor(0.8299716, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.5064439, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 22349\n",
+ "Discriminator Loss: tf.Tensor(1.1516582, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.35292855, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 22350\n",
+ "Discriminator Loss: tf.Tensor(0.917541, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.8915227, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 22351\n",
+ "Discriminator Loss: tf.Tensor(0.8061095, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.7347873, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 22352\n",
+ "Discriminator Loss: tf.Tensor(0.83802235, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.0071201, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 22353\n",
+ "Discriminator Loss: tf.Tensor(0.5115919, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.6640673, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 22354\n",
+ "Discriminator Loss: tf.Tensor(1.2794505, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.142239, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 22355\n",
+ "Discriminator Loss: tf.Tensor(1.0200254, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.10093904, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 22356\n",
+ "Discriminator Loss: tf.Tensor(1.1483095, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.8861823, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 22357\n",
+ "Discriminator Loss: tf.Tensor(0.9407314, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.40990403, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 22358\n",
+ "Discriminator Loss: tf.Tensor(0.85458404, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.5441805, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 22359\n",
+ "Discriminator Loss: tf.Tensor(1.0367298, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.13669114, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 22360\n",
+ "Discriminator Loss: tf.Tensor(1.1288081, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.1204106, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 22361\n",
+ "Discriminator Loss: tf.Tensor(0.76814145, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.40457383, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 22362\n",
+ "Discriminator Loss: tf.Tensor(0.92721915, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.7815405, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 22363\n",
+ "Discriminator Loss: tf.Tensor(0.78744906, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.5342418, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 22364\n",
+ "Discriminator Loss: tf.Tensor(0.71275544, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.4687238, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 22365\n",
+ "Discriminator Loss: tf.Tensor(0.73024184, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.36840215, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 22366\n",
+ "Discriminator Loss: tf.Tensor(0.90018487, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.5264829, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 22367\n",
+ "Discriminator Loss: tf.Tensor(0.6903091, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.77898866, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 22368\n",
+ "Discriminator Loss: tf.Tensor(0.4081104, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.8458874, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 22369\n",
+ "Discriminator Loss: tf.Tensor(0.77710205, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.3224753, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 22370\n",
+ "Discriminator Loss: tf.Tensor(1.1550249, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.07667678, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 22371\n",
+ "Discriminator Loss: tf.Tensor(0.8971413, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.4242188, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 22372\n",
+ "Discriminator Loss: tf.Tensor(0.733318, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.526758, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 22373\n",
+ "Discriminator Loss: tf.Tensor(0.8545511, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.4313666, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 22374\n",
+ "Discriminator Loss: tf.Tensor(0.8015074, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.4917316, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 22375\n",
+ "Discriminator Loss: tf.Tensor(1.5589545, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.0988963, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 22376\n",
+ "Discriminator Loss: tf.Tensor(1.142513, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.17503458, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 22377\n",
+ "Discriminator Loss: tf.Tensor(0.68105966, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.253499, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 22378\n",
+ "Discriminator Loss: tf.Tensor(0.82679415, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.31953207, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 22379\n",
+ "Discriminator Loss: tf.Tensor(1.1290461, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.5675653, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 22380\n",
+ "Discriminator Loss: tf.Tensor(0.94721353, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.29658708, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 22381\n",
+ "Discriminator Loss: tf.Tensor(0.719484, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.3473705, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 22382\n",
+ "Discriminator Loss: tf.Tensor(1.3968434, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.28164017, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 22383\n",
+ "Discriminator Loss: tf.Tensor(0.54416263, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.4650158, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 22384\n",
+ "Discriminator Loss: tf.Tensor(0.7650291, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.33973494, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 22385\n",
+ "Discriminator Loss: tf.Tensor(0.9990815, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.5186552, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 22386\n",
+ "Discriminator Loss: tf.Tensor(1.2505714, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.17063487, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 22387\n",
+ "Discriminator Loss: tf.Tensor(0.8664659, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.0640311, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 22388\n",
+ "Discriminator Loss: tf.Tensor(0.99967945, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.1302285, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 22389\n",
+ "Discriminator Loss: tf.Tensor(1.2722601, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.04774453, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 22390\n",
+ "Discriminator Loss: tf.Tensor(0.8012817, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.7665753, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 22391\n",
+ "Discriminator Loss: tf.Tensor(1.0768933, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.1277737, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 22392\n",
+ "Discriminator Loss: tf.Tensor(0.9731822, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.2019762, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 22393\n",
+ "Discriminator Loss: tf.Tensor(0.88539153, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.22807886, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 22394\n",
+ "Discriminator Loss: tf.Tensor(1.3761725, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.4697876, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 22395\n",
+ "Discriminator Loss: tf.Tensor(0.64994806, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.53674436, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 22396\n",
+ "Discriminator Loss: tf.Tensor(0.6527864, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.5297137, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 22397\n",
+ "Discriminator Loss: tf.Tensor(0.77558696, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.30372086, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 22398\n",
+ "Discriminator Loss: tf.Tensor(0.7638394, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.8177494, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 22399\n",
+ "Discriminator Loss: tf.Tensor(0.73538685, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.32309952, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 22400\n",
+ "Discriminator Loss: tf.Tensor(1.2987661, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.5914408, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 22401\n",
+ "Discriminator Loss: tf.Tensor(0.6655869, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.37156335, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 22402\n",
+ "Discriminator Loss: tf.Tensor(0.954798, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.6953338, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 22403\n",
+ "Discriminator Loss: tf.Tensor(0.74046636, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.39994025, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 22404\n",
+ "Discriminator Loss: tf.Tensor(0.9869456, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.4740391, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 22405\n",
+ "Discriminator Loss: tf.Tensor(0.6408741, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.45825198, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 22406\n",
+ "Discriminator Loss: tf.Tensor(1.1456754, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.4910086, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 22407\n",
+ "Discriminator Loss: tf.Tensor(0.4805042, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.61462456, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 22408\n",
+ "Discriminator Loss: tf.Tensor(1.3195558, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.3870454, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 22409\n",
+ "Discriminator Loss: tf.Tensor(0.8226949, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.34595147, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 22410\n",
+ "Discriminator Loss: tf.Tensor(0.95003426, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.236731, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 22411\n",
+ "Discriminator Loss: tf.Tensor(0.7437842, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.35828027, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 22412\n",
+ "Discriminator Loss: tf.Tensor(1.070724, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.7060887, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 22413\n",
+ "Discriminator Loss: tf.Tensor(0.4611881, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.8071887, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 22414\n",
+ "Discriminator Loss: tf.Tensor(0.679229, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.1365811, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 22415\n",
+ "Discriminator Loss: tf.Tensor(0.79060346, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.6447595, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 22416\n",
+ "Discriminator Loss: tf.Tensor(0.4128318, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.3249155, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 22417\n",
+ "Discriminator Loss: tf.Tensor(0.5969136, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.75532675, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 22418\n",
+ "Discriminator Loss: tf.Tensor(1.8643858, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.796977, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 22419\n",
+ "Discriminator Loss: tf.Tensor(0.8706957, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.19816606, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 22420\n",
+ "Discriminator Loss: tf.Tensor(1.3140712, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.1346745, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 22421\n",
+ "Discriminator Loss: tf.Tensor(0.8628918, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.24898244, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 22422\n",
+ "Discriminator Loss: tf.Tensor(0.94083, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.2535805, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 22423\n",
+ "Discriminator Loss: tf.Tensor(0.602039, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.86621284, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 22424\n",
+ "Discriminator Loss: tf.Tensor(0.5048424, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.0440625, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 22425\n",
+ "Discriminator Loss: tf.Tensor(0.68808043, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.9846433, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 22426\n",
+ "Discriminator Loss: tf.Tensor(0.80760026, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.7636819, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 22427\n",
+ "Discriminator Loss: tf.Tensor(0.8063363, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.3481145, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 22428\n",
+ "Discriminator Loss: tf.Tensor(1.4300815, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.37413284, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 22429\n",
+ "Discriminator Loss: tf.Tensor(1.3430278, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.1166692, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 22430\n",
+ "Discriminator Loss: tf.Tensor(0.88751405, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.347519, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 22431\n",
+ "Discriminator Loss: tf.Tensor(0.93592477, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.4313251, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 22432\n",
+ "Discriminator Loss: tf.Tensor(0.826679, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.22097962, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 22433\n",
+ "Discriminator Loss: tf.Tensor(0.8531877, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.3806353, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 22434\n",
+ "Discriminator Loss: tf.Tensor(0.43277338, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.85986966, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 22435\n",
+ "Discriminator Loss: tf.Tensor(0.86836267, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.5124823, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 22436\n",
+ "Discriminator Loss: tf.Tensor(0.7054998, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.5700155, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 22437\n",
+ "Discriminator Loss: tf.Tensor(1.3863735, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.9153862, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 22438\n",
+ "Discriminator Loss: tf.Tensor(1.2071084, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.018263578, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 22439\n",
+ "Discriminator Loss: tf.Tensor(0.9490627, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.1785766, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 22440\n",
+ "Discriminator Loss: tf.Tensor(0.72000307, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.42509606, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 22441\n",
+ "Discriminator Loss: tf.Tensor(0.85407525, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.5337449, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 22442\n",
+ "Discriminator Loss: tf.Tensor(0.68024844, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.62457174, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 22443\n",
+ "Discriminator Loss: tf.Tensor(0.816525, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.1654581, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 22444\n",
+ "Discriminator Loss: tf.Tensor(0.6954069, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.71132964, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 22445\n",
+ "Discriminator Loss: tf.Tensor(0.6295072, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.9502751, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 22446\n",
+ "Discriminator Loss: tf.Tensor(1.2362772, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.2910366, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 22447\n",
+ "Discriminator Loss: tf.Tensor(1.2009637, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.1592343, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 22448\n",
+ "Discriminator Loss: tf.Tensor(1.52097, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.0178692, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 22449\n",
+ "Discriminator Loss: tf.Tensor(0.9453432, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.08888203, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 22450\n",
+ "Discriminator Loss: tf.Tensor(0.6920029, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.7620817, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 22451\n",
+ "Discriminator Loss: tf.Tensor(0.9915804, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.49668714, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 22452\n",
+ "Discriminator Loss: tf.Tensor(0.65593225, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.6803462, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 22453\n",
+ "Discriminator Loss: tf.Tensor(0.9720991, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.9128035, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 22454\n",
+ "Discriminator Loss: tf.Tensor(1.0186291, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.3148151, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 22455\n",
+ "Discriminator Loss: tf.Tensor(0.65821254, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.0164567, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 22456\n",
+ "Discriminator Loss: tf.Tensor(0.8445872, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.073306, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 22457\n",
+ "Discriminator Loss: tf.Tensor(0.6897815, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.0276288, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 22458\n",
+ "Discriminator Loss: tf.Tensor(0.52610767, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.75076073, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 22459\n",
+ "Discriminator Loss: tf.Tensor(1.454252, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.9053758, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 22460\n",
+ "Discriminator Loss: tf.Tensor(0.9610305, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.11258725, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 22461\n",
+ "Discriminator Loss: tf.Tensor(0.7747453, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.0743893, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 22462\n",
+ "Discriminator Loss: tf.Tensor(0.32686242, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.9478972, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 22463\n",
+ "Discriminator Loss: tf.Tensor(0.9773452, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.7512726, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 22464\n",
+ "Discriminator Loss: tf.Tensor(1.2133032, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.13737804, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 22465\n",
+ "Discriminator Loss: tf.Tensor(0.8028506, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.5458612, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 22466\n",
+ "Discriminator Loss: tf.Tensor(0.8045073, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.40596303, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 22467\n",
+ "Discriminator Loss: tf.Tensor(1.0926671, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.4991528, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 22468\n",
+ "Discriminator Loss: tf.Tensor(1.0949908, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.021319544, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 22469\n",
+ "Discriminator Loss: tf.Tensor(0.6715831, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.0374185, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 22470\n",
+ "Discriminator Loss: tf.Tensor(0.6931447, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.0882077, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 22471\n",
+ "Discriminator Loss: tf.Tensor(0.5777728, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.2644533, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 22472\n",
+ "Discriminator Loss: tf.Tensor(0.54079056, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.6974242, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 22473\n",
+ "Discriminator Loss: tf.Tensor(1.2462566, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.7936416, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 22474\n",
+ "Discriminator Loss: tf.Tensor(0.81549996, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.27718124, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 22475\n",
+ "Discriminator Loss: tf.Tensor(0.6619306, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.3788118, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 22476\n",
+ "Discriminator Loss: tf.Tensor(0.863805, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.34937477, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 22477\n",
+ "Discriminator Loss: tf.Tensor(0.6192117, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.4623947, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 22478\n",
+ "Discriminator Loss: tf.Tensor(0.7655965, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.39241442, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 22479\n",
+ "Discriminator Loss: tf.Tensor(0.9377765, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.5619488, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 22480\n",
+ "Discriminator Loss: tf.Tensor(1.151173, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.05042994, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 22481\n",
+ "Discriminator Loss: tf.Tensor(1.1680148, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.0413057, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 22482\n",
+ "Discriminator Loss: tf.Tensor(0.60782516, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.80254763, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 22483\n",
+ "Discriminator Loss: tf.Tensor(0.66371846, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.2650738, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 22484\n",
+ "Discriminator Loss: tf.Tensor(0.8403511, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.46200132, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 22485\n",
+ "Discriminator Loss: tf.Tensor(1.1815649, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.6289867, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 22486\n",
+ "Discriminator Loss: tf.Tensor(0.91201574, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.3525107, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 22487\n",
+ "Discriminator Loss: tf.Tensor(0.88641614, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.2043748, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 22488\n",
+ "Discriminator Loss: tf.Tensor(0.6117459, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.5011156, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 22489\n",
+ "Discriminator Loss: tf.Tensor(1.1234064, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.280953, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 22490\n",
+ "Discriminator Loss: tf.Tensor(0.61841273, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.52207744, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 22491\n",
+ "Discriminator Loss: tf.Tensor(1.401586, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.3173841, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 22492\n",
+ "Discriminator Loss: tf.Tensor(0.76164913, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.5340569, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 22493\n",
+ "Discriminator Loss: tf.Tensor(0.52513945, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.2561977, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 22494\n",
+ "Discriminator Loss: tf.Tensor(0.5623425, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.4063402, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 22495\n",
+ "Discriminator Loss: tf.Tensor(0.8453902, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.2739671, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 22496\n",
+ "Discriminator Loss: tf.Tensor(0.6274322, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.51770264, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 22497\n",
+ "Discriminator Loss: tf.Tensor(1.0836684, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.814201, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 22498\n",
+ "Discriminator Loss: tf.Tensor(0.80863357, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.3153468, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 22499\n",
+ "Discriminator Loss: tf.Tensor(0.5556778, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.4603666, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 22500\n",
+ "Discriminator Loss: tf.Tensor(0.6369935, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.5767501, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 22501\n",
+ "Discriminator Loss: tf.Tensor(0.9620619, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.0637763, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 22502\n",
+ "Discriminator Loss: tf.Tensor(1.2916994, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.20018788, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 22503\n",
+ "Discriminator Loss: tf.Tensor(0.9294194, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.8971305, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 22504\n",
+ "Discriminator Loss: tf.Tensor(1.1532884, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.0053989, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 22505\n",
+ "Discriminator Loss: tf.Tensor(0.51618063, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.81250185, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 22506\n",
+ "Discriminator Loss: tf.Tensor(1.0910507, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.872468, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 22507\n",
+ "Discriminator Loss: tf.Tensor(1.2671839, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.08378299, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 22508\n",
+ "Discriminator Loss: tf.Tensor(0.6382638, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.0598143, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 22509\n",
+ "Discriminator Loss: tf.Tensor(0.700555, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.458365, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 22510\n",
+ "Discriminator Loss: tf.Tensor(1.4599384, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.327658, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 22511\n",
+ "Discriminator Loss: tf.Tensor(0.8642905, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.29888672, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 22512\n",
+ "Discriminator Loss: tf.Tensor(0.7978487, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.2618229, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 22513\n",
+ "Discriminator Loss: tf.Tensor(0.9404314, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.30342057, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 22514\n",
+ "Discriminator Loss: tf.Tensor(0.9289435, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.02397, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 22515\n",
+ "Discriminator Loss: tf.Tensor(0.8843441, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.1342329, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 22516\n",
+ "Discriminator Loss: tf.Tensor(0.93238604, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.23990072, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 22517\n",
+ "Discriminator Loss: tf.Tensor(1.2223945, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.8723731, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 22518\n",
+ "Discriminator Loss: tf.Tensor(1.0805199, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.010655887, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 22519\n",
+ "Discriminator Loss: tf.Tensor(1.3282504, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.1084771, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 22520\n",
+ "Discriminator Loss: tf.Tensor(0.65180856, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.6385283, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 22521\n",
+ "Discriminator Loss: tf.Tensor(1.1869286, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.9821181, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 22522\n",
+ "Discriminator Loss: tf.Tensor(0.7055786, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.7802742, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 22523\n",
+ "Discriminator Loss: tf.Tensor(0.62287235, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.62078, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 22524\n",
+ "Discriminator Loss: tf.Tensor(0.65184313, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.3834164, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 22525\n",
+ "Discriminator Loss: tf.Tensor(1.3385844, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.9804301, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 22526\n",
+ "Discriminator Loss: tf.Tensor(1.1460699, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.25912228, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 22527\n",
+ "Discriminator Loss: tf.Tensor(0.41711837, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.4489641, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 22528\n",
+ "Discriminator Loss: tf.Tensor(0.91993445, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.17889334, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 22529\n",
+ "Discriminator Loss: tf.Tensor(1.1507504, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.8579911, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 22530\n",
+ "Discriminator Loss: tf.Tensor(0.75408334, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.47915283, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 22531\n",
+ "Discriminator Loss: tf.Tensor(0.88150895, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.135334, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 22532\n",
+ "Discriminator Loss: tf.Tensor(0.75052106, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.39617804, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 22533\n",
+ "Discriminator Loss: tf.Tensor(1.1963658, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.8864079, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 22534\n",
+ "Discriminator Loss: tf.Tensor(0.86484337, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.34158716, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 22535\n",
+ "Discriminator Loss: tf.Tensor(0.6481738, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.2972361, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 22536\n",
+ "Discriminator Loss: tf.Tensor(0.91603494, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.5447797, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 22537\n",
+ "Discriminator Loss: tf.Tensor(0.6426904, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.99644595, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 22538\n",
+ "Discriminator Loss: tf.Tensor(1.0756407, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.5889908, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 22539\n",
+ "Discriminator Loss: tf.Tensor(1.0429896, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.15215588, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 22540\n",
+ "Discriminator Loss: tf.Tensor(1.0102235, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.1069759, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 22541\n",
+ "Discriminator Loss: tf.Tensor(0.5667629, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.7104793, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 22542\n",
+ "Discriminator Loss: tf.Tensor(0.96501434, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.9503088, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 22543\n",
+ "Discriminator Loss: tf.Tensor(1.0393674, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.24168317, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 22544\n",
+ "Discriminator Loss: tf.Tensor(1.0434448, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.6850866, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 22545\n",
+ "Discriminator Loss: tf.Tensor(0.70054173, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.44354227, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 22546\n",
+ "Discriminator Loss: tf.Tensor(0.86983526, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.7527322, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 22547\n",
+ "Discriminator Loss: tf.Tensor(0.69803166, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.5635516, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 22548\n",
+ "Discriminator Loss: tf.Tensor(0.9702731, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.4136516, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 22549\n",
+ "Discriminator Loss: tf.Tensor(1.3602475, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.12693523, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 22550\n",
+ "Discriminator Loss: tf.Tensor(0.42151055, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.4256405, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 22551\n",
+ "Discriminator Loss: tf.Tensor(1.1546319, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.14537278, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 22552\n",
+ "Discriminator Loss: tf.Tensor(1.0868721, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.371106, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 22553\n",
+ "Discriminator Loss: tf.Tensor(1.0990644, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.05239662, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 22554\n",
+ "Discriminator Loss: tf.Tensor(0.7059573, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.10137, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 22555\n",
+ "Discriminator Loss: tf.Tensor(0.949716, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.43110228, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 22556\n",
+ "Discriminator Loss: tf.Tensor(0.89926267, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.5810045, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 22557\n",
+ "Discriminator Loss: tf.Tensor(0.9866951, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.044615995, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 22558\n",
+ "Discriminator Loss: tf.Tensor(1.061812, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.2519889, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 22559\n",
+ "Discriminator Loss: tf.Tensor(0.7033956, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.5129425, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 22560\n",
+ "Discriminator Loss: tf.Tensor(1.2105687, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.7709538, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 22561\n",
+ "Discriminator Loss: tf.Tensor(0.780166, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.31118888, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 22562\n",
+ "Discriminator Loss: tf.Tensor(1.1187901, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.6605291, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 22563\n",
+ "Discriminator Loss: tf.Tensor(0.8125441, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.2425388, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 22564\n",
+ "Discriminator Loss: tf.Tensor(1.3674383, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.2843591, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 22565\n",
+ "Discriminator Loss: tf.Tensor(0.82344055, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.27549577, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 22566\n",
+ "Discriminator Loss: tf.Tensor(1.3479993, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.7553264, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 22567\n",
+ "Discriminator Loss: tf.Tensor(0.69600403, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.540102, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 22568\n",
+ "Discriminator Loss: tf.Tensor(0.6233643, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.1350316, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 22569\n",
+ "Discriminator Loss: tf.Tensor(0.24204479, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.9279728, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 22570\n",
+ "Discriminator Loss: tf.Tensor(1.2647182, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.803532, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 22571\n",
+ "Discriminator Loss: tf.Tensor(0.8155313, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.43684158, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 22572\n",
+ "Discriminator Loss: tf.Tensor(1.1089127, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.0969455, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 22573\n",
+ "Discriminator Loss: tf.Tensor(0.71444845, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.64241797, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 22574\n",
+ "Discriminator Loss: tf.Tensor(0.8324846, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.0662609, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 22575\n",
+ "Discriminator Loss: tf.Tensor(0.66050375, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.64887315, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 22576\n",
+ "Discriminator Loss: tf.Tensor(1.3161759, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.2706935, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 22577\n",
+ "Discriminator Loss: tf.Tensor(0.900365, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.15046759, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 22578\n",
+ "Discriminator Loss: tf.Tensor(1.3164351, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.4909453, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 22579\n",
+ "Discriminator Loss: tf.Tensor(1.0321106, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.05861895, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 22580\n",
+ "Discriminator Loss: tf.Tensor(1.0340703, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.2366456, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 22581\n",
+ "Discriminator Loss: tf.Tensor(0.81987625, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.4621582, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 22582\n",
+ "Discriminator Loss: tf.Tensor(0.7192959, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.2116885, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 22583\n",
+ "Discriminator Loss: tf.Tensor(0.7768413, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.3562672, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 22584\n",
+ "Discriminator Loss: tf.Tensor(0.7817982, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.4719816, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 22585\n",
+ "Discriminator Loss: tf.Tensor(0.36649996, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.8435061, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 22586\n",
+ "Discriminator Loss: tf.Tensor(0.92338073, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.6607533, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 22587\n",
+ "Discriminator Loss: tf.Tensor(0.8933302, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.42449656, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 22588\n",
+ "Discriminator Loss: tf.Tensor(0.9682327, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.4092079, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 22589\n",
+ "Discriminator Loss: tf.Tensor(0.5903193, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.7104802, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 22590\n",
+ "Discriminator Loss: tf.Tensor(1.6063924, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.1891178, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 22591\n",
+ "Discriminator Loss: tf.Tensor(0.64690226, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.5923161, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 22592\n",
+ "Discriminator Loss: tf.Tensor(1.4553297, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.1708667, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 22593\n",
+ "Discriminator Loss: tf.Tensor(0.5748398, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.64630634, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 22594\n",
+ "Discriminator Loss: tf.Tensor(1.2679073, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.2400786, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 22595\n",
+ "Discriminator Loss: tf.Tensor(0.7441033, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.46832144, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 22596\n",
+ "Discriminator Loss: tf.Tensor(1.3774776, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.7055392, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 22597\n",
+ "Discriminator Loss: tf.Tensor(1.1629423, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.04502663, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 22598\n",
+ "Discriminator Loss: tf.Tensor(0.5764511, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.4284815, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 22599\n",
+ "Discriminator Loss: tf.Tensor(0.5388226, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.1132035, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 22600\n",
+ "Discriminator Loss: tf.Tensor(1.019972, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.43569347, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 22601\n",
+ "Discriminator Loss: tf.Tensor(0.5730343, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.1290739, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 22602\n",
+ "Discriminator Loss: tf.Tensor(0.69089544, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.66301817, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 22603\n",
+ "Discriminator Loss: tf.Tensor(0.7682102, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.1662688, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 22604\n",
+ "Discriminator Loss: tf.Tensor(0.75047886, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.46301165, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 22605\n",
+ "Discriminator Loss: tf.Tensor(1.703166, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.0435808, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 22606\n",
+ "Discriminator Loss: tf.Tensor(1.1022819, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.015730388, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 22607\n",
+ "Discriminator Loss: tf.Tensor(1.0815449, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.99704534, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 22608\n",
+ "Discriminator Loss: tf.Tensor(0.8298691, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.5083143, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 22609\n",
+ "Discriminator Loss: tf.Tensor(0.99683046, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.441645, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 22610\n",
+ "Discriminator Loss: tf.Tensor(1.0846021, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.042943556, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 22611\n",
+ "Discriminator Loss: tf.Tensor(0.8000456, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.773707, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 22612\n",
+ "Discriminator Loss: tf.Tensor(0.7745993, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.5724045, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 22613\n",
+ "Discriminator Loss: tf.Tensor(0.73289275, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.3088752, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 22614\n",
+ "Discriminator Loss: tf.Tensor(1.3071088, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.6890498, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 22615\n",
+ "Discriminator Loss: tf.Tensor(1.2049658, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.19318497, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 22616\n",
+ "Discriminator Loss: tf.Tensor(0.8648261, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.96780187, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 22617\n",
+ "Discriminator Loss: tf.Tensor(0.47432226, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.87903434, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 22618\n",
+ "Discriminator Loss: tf.Tensor(0.92941296, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.5405341, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 22619\n",
+ "Discriminator Loss: tf.Tensor(0.7977023, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.4367095, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 22620\n",
+ "Discriminator Loss: tf.Tensor(1.0077299, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.4248081, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 22621\n",
+ "Discriminator Loss: tf.Tensor(0.9298318, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.17629527, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 22622\n",
+ "Discriminator Loss: tf.Tensor(0.9177401, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.3634475, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 22623\n",
+ "Discriminator Loss: tf.Tensor(1.1308268, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.093340926, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 22624\n",
+ "Discriminator Loss: tf.Tensor(1.1119639, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.2167541, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 22625\n",
+ "Discriminator Loss: tf.Tensor(1.1421396, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.021574864, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 22626\n",
+ "Discriminator Loss: tf.Tensor(0.6927695, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.9912216, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 22627\n",
+ "Discriminator Loss: tf.Tensor(0.6978089, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.0064169, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 22628\n",
+ "Discriminator Loss: tf.Tensor(0.7414406, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.43747306, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 22629\n",
+ "Discriminator Loss: tf.Tensor(1.2428194, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.5152656, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 22630\n",
+ "Discriminator Loss: tf.Tensor(0.4923493, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.7289302, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 22631\n",
+ "Discriminator Loss: tf.Tensor(1.2693739, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.69446, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 22632\n",
+ "Discriminator Loss: tf.Tensor(0.9374157, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.30171558, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 22633\n",
+ "Discriminator Loss: tf.Tensor(0.6164901, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.062233, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 22634\n",
+ "Discriminator Loss: tf.Tensor(0.84158486, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.25119078, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 22635\n",
+ "Discriminator Loss: tf.Tensor(0.68724906, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.6765174, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 22636\n",
+ "Discriminator Loss: tf.Tensor(0.74876606, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.5451443, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 22637\n",
+ "Discriminator Loss: tf.Tensor(1.0931588, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.9475809, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 22638\n",
+ "Discriminator Loss: tf.Tensor(0.58195466, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.5289816, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 22639\n",
+ "Discriminator Loss: tf.Tensor(0.97171533, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.9562331, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 22640\n",
+ "Discriminator Loss: tf.Tensor(0.853161, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.3852854, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 22641\n",
+ "Discriminator Loss: tf.Tensor(0.5626719, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.4473735, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 22642\n",
+ "Discriminator Loss: tf.Tensor(0.5628252, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.2737947, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 22643\n",
+ "Discriminator Loss: tf.Tensor(0.59950805, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.66575235, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 22644\n",
+ "Discriminator Loss: tf.Tensor(1.3219709, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.9466252, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 22645\n",
+ "Discriminator Loss: tf.Tensor(0.49210975, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.8302038, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 22646\n",
+ "Discriminator Loss: tf.Tensor(0.6880412, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.8665382, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 22647\n",
+ "Discriminator Loss: tf.Tensor(0.1598498, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.1040527, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 22648\n",
+ "Discriminator Loss: tf.Tensor(1.1991997, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.6547164, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 22649\n",
+ "Discriminator Loss: tf.Tensor(1.1957809, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.08134239, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 22650\n",
+ "Discriminator Loss: tf.Tensor(1.1382198, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.5059677, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 22651\n",
+ "Discriminator Loss: tf.Tensor(1.0989912, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.07690712, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 22652\n",
+ "Discriminator Loss: tf.Tensor(0.9791664, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.4300455, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 22653\n",
+ "Discriminator Loss: tf.Tensor(0.7475877, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.3870789, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 22654\n",
+ "Discriminator Loss: tf.Tensor(1.0030295, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.383592, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 22655\n",
+ "Discriminator Loss: tf.Tensor(0.76828796, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.4729335, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 22656\n",
+ "Discriminator Loss: tf.Tensor(1.1962755, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.8264213, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 22657\n",
+ "Discriminator Loss: tf.Tensor(0.94563663, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.8608157, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 22658\n",
+ "Discriminator Loss: tf.Tensor(0.58779, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.0876628, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 22659\n",
+ "Discriminator Loss: tf.Tensor(0.9254073, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.610084, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 22660\n",
+ "Discriminator Loss: tf.Tensor(0.89967203, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.6807, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 22661\n",
+ "Discriminator Loss: tf.Tensor(1.2845128, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.094660975, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 22662\n",
+ "Discriminator Loss: tf.Tensor(0.80152994, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.1711948, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 22663\n",
+ "Discriminator Loss: tf.Tensor(0.9799957, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.31646797, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 22664\n",
+ "Discriminator Loss: tf.Tensor(0.96271086, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.3398055, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 22665\n",
+ "Discriminator Loss: tf.Tensor(0.9752272, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.21771614, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 22666\n",
+ "Discriminator Loss: tf.Tensor(0.65984756, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.1929269, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 22667\n",
+ "Discriminator Loss: tf.Tensor(0.73865074, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.6294894, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 22668\n",
+ "Discriminator Loss: tf.Tensor(1.4596691, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.5922232, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 22669\n",
+ "Discriminator Loss: tf.Tensor(1.2677683, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.1519248, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 22670\n",
+ "Discriminator Loss: tf.Tensor(0.86126745, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.86738557, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 22671\n",
+ "Discriminator Loss: tf.Tensor(0.5815226, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.0717735, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 22672\n",
+ "Discriminator Loss: tf.Tensor(0.54589486, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.0939593, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 22673\n",
+ "Discriminator Loss: tf.Tensor(0.502532, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.7513692, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 22674\n",
+ "Discriminator Loss: tf.Tensor(1.7209452, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.5301092, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 22675\n",
+ "Discriminator Loss: tf.Tensor(1.0490795, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.20590477, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 22676\n",
+ "Discriminator Loss: tf.Tensor(0.9178026, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.69741553, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 22677\n",
+ "Discriminator Loss: tf.Tensor(0.6308746, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.250081, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 22678\n",
+ "Discriminator Loss: tf.Tensor(0.56843483, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.5492224, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 22679\n",
+ "Discriminator Loss: tf.Tensor(1.3692017, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.8342489, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 22680\n",
+ "Discriminator Loss: tf.Tensor(1.1602559, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.011796336, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 22681\n",
+ "Discriminator Loss: tf.Tensor(0.44670844, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.2493685, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 22682\n",
+ "Discriminator Loss: tf.Tensor(0.8508428, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.37363377, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 22683\n",
+ "Discriminator Loss: tf.Tensor(0.925658, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.2514313, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 22684\n",
+ "Discriminator Loss: tf.Tensor(0.9012665, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.38738874, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 22685\n",
+ "Discriminator Loss: tf.Tensor(1.2263033, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.679273, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 22686\n",
+ "Discriminator Loss: tf.Tensor(0.5140178, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.7347946, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 22687\n",
+ "Discriminator Loss: tf.Tensor(0.9044157, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.5732511, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 22688\n",
+ "Discriminator Loss: tf.Tensor(0.9948266, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.17595838, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 22689\n",
+ "Discriminator Loss: tf.Tensor(0.5974994, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.1523933, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 22690\n",
+ "Discriminator Loss: tf.Tensor(0.94753706, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.0550231, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 22691\n",
+ "Discriminator Loss: tf.Tensor(0.66139156, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.6825867, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 22692\n",
+ "Discriminator Loss: tf.Tensor(0.82787275, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.6727409, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 22693\n",
+ "Discriminator Loss: tf.Tensor(1.1057168, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.025158338, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 22694\n",
+ "Discriminator Loss: tf.Tensor(0.6534696, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.5585322, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 22695\n",
+ "Discriminator Loss: tf.Tensor(0.94119793, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.40308967, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 22696\n",
+ "Discriminator Loss: tf.Tensor(1.114912, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.5722146, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 22697\n",
+ "Discriminator Loss: tf.Tensor(0.4739216, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.7883473, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 22698\n",
+ "Discriminator Loss: tf.Tensor(1.2599123, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.90517235, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 22699\n",
+ "Discriminator Loss: tf.Tensor(0.5019014, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.65182155, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 22700\n",
+ "Discriminator Loss: tf.Tensor(1.7430457, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.072518, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 22701\n",
+ "Discriminator Loss: tf.Tensor(0.83761233, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.23611802, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 22702\n",
+ "Discriminator Loss: tf.Tensor(1.1289117, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.82002854, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 22703\n",
+ "Discriminator Loss: tf.Tensor(1.088444, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.70582026, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 22704\n",
+ "Discriminator Loss: tf.Tensor(0.6548495, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.6283447, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 22705\n",
+ "Discriminator Loss: tf.Tensor(1.4536512, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.7580174, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 22706\n",
+ "Discriminator Loss: tf.Tensor(0.92047614, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.13947995, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 22707\n",
+ "Discriminator Loss: tf.Tensor(0.9259559, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.3758303, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 22708\n",
+ "Discriminator Loss: tf.Tensor(0.6663022, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.4257289, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 22709\n",
+ "Discriminator Loss: tf.Tensor(0.78455734, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.8455018, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 22710\n",
+ "Discriminator Loss: tf.Tensor(0.7033938, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.44791746, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 22711\n",
+ "Discriminator Loss: tf.Tensor(1.075247, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.5825864, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 22712\n",
+ "Discriminator Loss: tf.Tensor(1.3797398, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.21066348, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 22713\n",
+ "Discriminator Loss: tf.Tensor(1.0531598, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.7112995, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 22714\n",
+ "Discriminator Loss: tf.Tensor(0.77885544, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.6266301, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 22715\n",
+ "Discriminator Loss: tf.Tensor(0.5340736, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.2043742, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 22716\n",
+ "Discriminator Loss: tf.Tensor(0.3416677, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.1111084, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 22717\n",
+ "Discriminator Loss: tf.Tensor(0.18469338, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.1130188, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 22718\n",
+ "Discriminator Loss: tf.Tensor(1.4892523, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.5272793, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 22719\n",
+ "Discriminator Loss: tf.Tensor(1.1425203, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.09211111, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 22720\n",
+ "Discriminator Loss: tf.Tensor(0.93571985, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.1398369, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 22721\n",
+ "Discriminator Loss: tf.Tensor(0.55185455, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.61573595, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 22722\n",
+ "Discriminator Loss: tf.Tensor(1.4433258, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.657277, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 22723\n",
+ "Discriminator Loss: tf.Tensor(0.9004938, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.33727577, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 22724\n",
+ "Discriminator Loss: tf.Tensor(0.95172507, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.22394, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 22725\n",
+ "Discriminator Loss: tf.Tensor(0.6421815, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.5225163, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 22726\n",
+ "Discriminator Loss: tf.Tensor(1.5678663, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.1538992, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 22727\n",
+ "Discriminator Loss: tf.Tensor(1.4026234, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.15151007, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 22728\n",
+ "Discriminator Loss: tf.Tensor(0.83203757, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.0452087, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 22729\n",
+ "Discriminator Loss: tf.Tensor(0.6842815, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.5643024, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 22730\n",
+ "Discriminator Loss: tf.Tensor(0.7636291, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.1013294, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 22731\n",
+ "Discriminator Loss: tf.Tensor(0.48031357, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.5099639, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 22732\n",
+ "Discriminator Loss: tf.Tensor(0.52749026, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.79133224, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 22733\n",
+ "Discriminator Loss: tf.Tensor(1.2499593, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.8279384, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 22734\n",
+ "Discriminator Loss: tf.Tensor(1.2064981, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.0811504, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 22735\n",
+ "Discriminator Loss: tf.Tensor(0.9860002, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.1096385, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 22736\n",
+ "Discriminator Loss: tf.Tensor(1.06201, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.37263402, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 22737\n",
+ "Discriminator Loss: tf.Tensor(0.7942252, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.080556, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 22738\n",
+ "Discriminator Loss: tf.Tensor(0.83712655, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.32619694, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 22739\n",
+ "Discriminator Loss: tf.Tensor(0.9752308, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.8026129, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 22740\n",
+ "Discriminator Loss: tf.Tensor(1.1691984, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.22396636, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 22741\n",
+ "Discriminator Loss: tf.Tensor(0.92316234, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.8930475, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 22742\n",
+ "Discriminator Loss: tf.Tensor(0.43238086, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.2290713, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 22743\n",
+ "Discriminator Loss: tf.Tensor(1.2211169, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.008065443, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 22744\n",
+ "Discriminator Loss: tf.Tensor(0.9742454, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.6453099, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 22745\n",
+ "Discriminator Loss: tf.Tensor(1.1421894, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.04216944, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 22746\n",
+ "Discriminator Loss: tf.Tensor(1.1305939, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.9519611, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 22747\n",
+ "Discriminator Loss: tf.Tensor(0.36654747, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.94078046, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 22748\n",
+ "Discriminator Loss: tf.Tensor(0.6238687, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.3079308, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 22749\n",
+ "Discriminator Loss: tf.Tensor(1.1415277, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.00091588247, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 22750\n",
+ "Discriminator Loss: tf.Tensor(1.1089188, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.9413397, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 22751\n",
+ "Discriminator Loss: tf.Tensor(0.7537501, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.5008188, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 22752\n",
+ "Discriminator Loss: tf.Tensor(1.0579689, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.1160828, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 22753\n",
+ "Discriminator Loss: tf.Tensor(1.0354965, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.7874473, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 22754\n",
+ "Discriminator Loss: tf.Tensor(0.63942826, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.4996601, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 22755\n",
+ "Discriminator Loss: tf.Tensor(1.3905443, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.0333056, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 22756\n",
+ "Discriminator Loss: tf.Tensor(0.78153986, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.54179424, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 22757\n",
+ "Discriminator Loss: tf.Tensor(0.54692537, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.1753076, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 22758\n",
+ "Discriminator Loss: tf.Tensor(0.609428, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.6637067, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 22759\n",
+ "Discriminator Loss: tf.Tensor(1.0495391, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.2028089, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 22760\n",
+ "Discriminator Loss: tf.Tensor(0.43209106, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.9280722, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 22761\n",
+ "Discriminator Loss: tf.Tensor(0.6296038, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.1079363, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 22762\n",
+ "Discriminator Loss: tf.Tensor(0.63846946, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.9019072, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 22763\n",
+ "Discriminator Loss: tf.Tensor(1.3232781, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.9753672, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 22764\n",
+ "Discriminator Loss: tf.Tensor(1.1714929, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.010749976, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 22765\n",
+ "Discriminator Loss: tf.Tensor(1.079747, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.848425, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 22766\n",
+ "Discriminator Loss: tf.Tensor(0.5389593, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.9396724, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 22767\n",
+ "Discriminator Loss: tf.Tensor(0.60603106, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.3370019, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 22768\n",
+ "Discriminator Loss: tf.Tensor(0.46787483, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.8181181, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 22769\n",
+ "Discriminator Loss: tf.Tensor(1.6513367, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.9670588, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 22770\n",
+ "Discriminator Loss: tf.Tensor(1.3848423, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.054511447, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 22771\n",
+ "Discriminator Loss: tf.Tensor(0.6642815, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.806684, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 22772\n",
+ "Discriminator Loss: tf.Tensor(0.893015, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.99456125, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 22773\n",
+ "Discriminator Loss: tf.Tensor(0.7987852, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.9936854, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 22774\n",
+ "Discriminator Loss: tf.Tensor(0.9002658, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.21698673, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 22775\n",
+ "Discriminator Loss: tf.Tensor(1.2102855, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.048205, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 22776\n",
+ "Discriminator Loss: tf.Tensor(0.73811084, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.47902575, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 22777\n",
+ "Discriminator Loss: tf.Tensor(0.86415243, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.7968187, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 22778\n",
+ "Discriminator Loss: tf.Tensor(1.6225891, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.15512945, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 22779\n",
+ "Discriminator Loss: tf.Tensor(0.64742005, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.9896124, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 22780\n",
+ "Discriminator Loss: tf.Tensor(0.57129145, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.89922696, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 22781\n",
+ "Discriminator Loss: tf.Tensor(0.5438167, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.027645, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 22782\n",
+ "Discriminator Loss: tf.Tensor(0.62543285, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.2682015, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 22783\n",
+ "Discriminator Loss: tf.Tensor(0.72455, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.6210818, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 22784\n",
+ "Discriminator Loss: tf.Tensor(1.2741, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.853047, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 22785\n",
+ "Discriminator Loss: tf.Tensor(1.0307949, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.14198218, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 22786\n",
+ "Discriminator Loss: tf.Tensor(1.2291963, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.3460045, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 22787\n",
+ "Discriminator Loss: tf.Tensor(0.6261608, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.57893366, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 22788\n",
+ "Discriminator Loss: tf.Tensor(0.5386319, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.3657141, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 22789\n",
+ "Discriminator Loss: tf.Tensor(0.53652966, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.86751634, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 22790\n",
+ "Discriminator Loss: tf.Tensor(0.74828964, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.7508805, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 22791\n",
+ "Discriminator Loss: tf.Tensor(1.0615332, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.7914295, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 22792\n",
+ "Discriminator Loss: tf.Tensor(1.2942814, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.13022055, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 22793\n",
+ "Discriminator Loss: tf.Tensor(1.0313582, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.4145212, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 22794\n",
+ "Discriminator Loss: tf.Tensor(0.70979404, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.4173821, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 22795\n",
+ "Discriminator Loss: tf.Tensor(0.39784485, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.5289679, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 22796\n",
+ "Discriminator Loss: tf.Tensor(0.52120656, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.0228959, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 22797\n",
+ "Discriminator Loss: tf.Tensor(1.2132666, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.46232858, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 22798\n",
+ "Discriminator Loss: tf.Tensor(0.7079848, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.482295, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 22799\n",
+ "Discriminator Loss: tf.Tensor(1.0627054, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.24239348, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 22800\n",
+ "Discriminator Loss: tf.Tensor(0.6437166, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.008326, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 22801\n",
+ "Discriminator Loss: tf.Tensor(0.6295106, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.5092682, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 22802\n",
+ "Discriminator Loss: tf.Tensor(1.1851377, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.3908561, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 22803\n",
+ "Discriminator Loss: tf.Tensor(0.55208445, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.0378169, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 22804\n",
+ "Discriminator Loss: tf.Tensor(0.600117, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.2247931, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 22805\n",
+ "Discriminator Loss: tf.Tensor(1.0840517, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.00015617411, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 22806\n",
+ "Discriminator Loss: tf.Tensor(1.3187299, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.7073272, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 22807\n",
+ "Discriminator Loss: tf.Tensor(1.0981414, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.016982833, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 22808\n",
+ "Discriminator Loss: tf.Tensor(1.0664201, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.1694437, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 22809\n",
+ "Discriminator Loss: tf.Tensor(0.8766781, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.40388203, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 22810\n",
+ "Discriminator Loss: tf.Tensor(0.8447201, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.13614, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 22811\n",
+ "Discriminator Loss: tf.Tensor(0.48879665, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.8731057, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 22812\n",
+ "Discriminator Loss: tf.Tensor(1.1572015, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.8290856, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 22813\n",
+ "Discriminator Loss: tf.Tensor(0.7962564, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.6210713, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 22814\n",
+ "Discriminator Loss: tf.Tensor(0.5857666, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.3421675, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 22815\n",
+ "Discriminator Loss: tf.Tensor(0.76856995, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.76773304, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 22816\n",
+ "Discriminator Loss: tf.Tensor(0.94969, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.7688681, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 22817\n",
+ "Discriminator Loss: tf.Tensor(1.2180457, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.059076216, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 22818\n",
+ "Discriminator Loss: tf.Tensor(0.9550805, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.2869161, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 22819\n",
+ "Discriminator Loss: tf.Tensor(0.9546756, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.40839887, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 22820\n",
+ "Discriminator Loss: tf.Tensor(0.39456505, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.2852405, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 22821\n",
+ "Discriminator Loss: tf.Tensor(0.9542013, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.7997151, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 22822\n",
+ "Discriminator Loss: tf.Tensor(0.69854987, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.853456, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 22823\n",
+ "Discriminator Loss: tf.Tensor(1.3723711, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.2893324, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 22824\n",
+ "Discriminator Loss: tf.Tensor(0.8614928, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.25241005, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 22825\n",
+ "Discriminator Loss: tf.Tensor(0.9002425, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.3757558, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 22826\n",
+ "Discriminator Loss: tf.Tensor(0.30991563, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.8171995, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 22827\n",
+ "Discriminator Loss: tf.Tensor(1.353921, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.6935859, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 22828\n",
+ "Discriminator Loss: tf.Tensor(0.9643649, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.1853493, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 22829\n",
+ "Discriminator Loss: tf.Tensor(0.76303184, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.2900127, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 22830\n",
+ "Discriminator Loss: tf.Tensor(0.6395744, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.71508837, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 22831\n",
+ "Discriminator Loss: tf.Tensor(1.1843891, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.0568243, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 22832\n",
+ "Discriminator Loss: tf.Tensor(0.67905915, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.2472415, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 22833\n",
+ "Discriminator Loss: tf.Tensor(0.53374785, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.5889335, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 22834\n",
+ "Discriminator Loss: tf.Tensor(1.0892334, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.159291, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 22835\n",
+ "Discriminator Loss: tf.Tensor(0.66455084, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.6541202, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 22836\n",
+ "Discriminator Loss: tf.Tensor(0.77025795, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.79633045, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 22837\n",
+ "Discriminator Loss: tf.Tensor(0.82226646, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.9949953, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 22838\n",
+ "Discriminator Loss: tf.Tensor(0.53576213, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.7244322, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 22839\n",
+ "Discriminator Loss: tf.Tensor(1.0863656, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.4908336, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 22840\n",
+ "Discriminator Loss: tf.Tensor(1.3079414, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.25233388, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 22841\n",
+ "Discriminator Loss: tf.Tensor(1.250642, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.033702, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 22842\n",
+ "Discriminator Loss: tf.Tensor(0.81662226, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.563413, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 22843\n",
+ "Discriminator Loss: tf.Tensor(0.84534097, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.40982345, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 22844\n",
+ "Discriminator Loss: tf.Tensor(0.851494, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.5160879, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 22845\n",
+ "Discriminator Loss: tf.Tensor(0.41188672, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.7824085, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 22846\n",
+ "Discriminator Loss: tf.Tensor(0.58677685, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.3689111, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 22847\n",
+ "Discriminator Loss: tf.Tensor(0.6694473, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.3698853, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 22848\n",
+ "Discriminator Loss: tf.Tensor(1.2777876, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.7033195, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 22849\n",
+ "Discriminator Loss: tf.Tensor(0.69920063, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.5565782, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 22850\n",
+ "Discriminator Loss: tf.Tensor(0.58594334, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.6884073, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 22851\n",
+ "Discriminator Loss: tf.Tensor(0.91543156, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.23878384, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 22852\n",
+ "Discriminator Loss: tf.Tensor(1.0656345, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.5088334, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 22853\n",
+ "Discriminator Loss: tf.Tensor(0.58358026, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.69613963, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 22854\n",
+ "Discriminator Loss: tf.Tensor(0.71449727, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.615753, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 22855\n",
+ "Discriminator Loss: tf.Tensor(0.7723944, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.35620317, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 22856\n",
+ "Discriminator Loss: tf.Tensor(1.2582028, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.5352701, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 22857\n",
+ "Discriminator Loss: tf.Tensor(0.94586766, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.33819267, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 22858\n",
+ "Discriminator Loss: tf.Tensor(0.85445225, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.2130686, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 22859\n",
+ "Discriminator Loss: tf.Tensor(0.5888262, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.49758872, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 22860\n",
+ "Discriminator Loss: tf.Tensor(0.98216856, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.6176964, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 22861\n",
+ "Discriminator Loss: tf.Tensor(1.049017, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.29409745, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 22862\n",
+ "Discriminator Loss: tf.Tensor(0.75466996, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.2342771, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 22863\n",
+ "Discriminator Loss: tf.Tensor(0.71046764, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.5719284, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 22864\n",
+ "Discriminator Loss: tf.Tensor(0.9790884, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.2777083, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 22865\n",
+ "Discriminator Loss: tf.Tensor(0.6325931, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.6611712, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 22866\n",
+ "Discriminator Loss: tf.Tensor(0.54433215, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.2409164, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 22867\n",
+ "Discriminator Loss: tf.Tensor(0.5572494, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.9052655, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 22868\n",
+ "Discriminator Loss: tf.Tensor(0.9808793, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.0850363, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 22869\n",
+ "Discriminator Loss: tf.Tensor(0.9531411, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.25080302, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 22870\n",
+ "Discriminator Loss: tf.Tensor(0.8491553, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.9386301, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 22871\n",
+ "Discriminator Loss: tf.Tensor(0.65917957, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.7001268, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 22872\n",
+ "Discriminator Loss: tf.Tensor(0.47448304, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.5095601, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 22873\n",
+ "Discriminator Loss: tf.Tensor(0.93491244, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.6108987, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 22874\n",
+ "Discriminator Loss: tf.Tensor(0.5637411, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.1668229, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 22875\n",
+ "Discriminator Loss: tf.Tensor(0.80050147, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.85549897, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 22876\n",
+ "Discriminator Loss: tf.Tensor(0.7185137, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.5545578, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 22877\n",
+ "Discriminator Loss: tf.Tensor(0.93151695, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.10058999, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 22878\n",
+ "Discriminator Loss: tf.Tensor(1.1393844, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.0736275, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 22879\n",
+ "Discriminator Loss: tf.Tensor(0.62333107, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.7904019, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 22880\n",
+ "Discriminator Loss: tf.Tensor(0.88828874, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.2608596, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 22881\n",
+ "Discriminator Loss: tf.Tensor(0.73259616, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.7770348, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 22882\n",
+ "Discriminator Loss: tf.Tensor(0.57822526, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.1187388, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 22883\n",
+ "Discriminator Loss: tf.Tensor(1.3989155, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.7846893, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 22884\n",
+ "Discriminator Loss: tf.Tensor(1.326992, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.22586483, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 22885\n",
+ "Discriminator Loss: tf.Tensor(0.9142969, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.1236488, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 22886\n",
+ "Discriminator Loss: tf.Tensor(0.5921097, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.5646317, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 22887\n",
+ "Discriminator Loss: tf.Tensor(1.0777014, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.815471, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 22888\n",
+ "Discriminator Loss: tf.Tensor(0.9801302, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.19275029, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 22889\n",
+ "Discriminator Loss: tf.Tensor(0.6466379, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.014304, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 22890\n",
+ "Discriminator Loss: tf.Tensor(0.7741673, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.1815985, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 22891\n",
+ "Discriminator Loss: tf.Tensor(0.46852005, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.68700475, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 22892\n",
+ "Discriminator Loss: tf.Tensor(1.4722618, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.8737355, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 22893\n",
+ "Discriminator Loss: tf.Tensor(1.1994226, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.11682684, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 22894\n",
+ "Discriminator Loss: tf.Tensor(0.9414183, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.0314351, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 22895\n",
+ "Discriminator Loss: tf.Tensor(0.56977004, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.5180138, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 22896\n",
+ "Discriminator Loss: tf.Tensor(1.1013759, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.0650778, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 22897\n",
+ "Discriminator Loss: tf.Tensor(0.714419, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.49157014, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 22898\n",
+ "Discriminator Loss: tf.Tensor(0.522681, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.5370241, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 22899\n",
+ "Discriminator Loss: tf.Tensor(0.57151353, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.7674999, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 22900\n",
+ "Discriminator Loss: tf.Tensor(0.56232214, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.1327554, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 22901\n",
+ "Discriminator Loss: tf.Tensor(1.208348, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.9102581, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 22902\n",
+ "Discriminator Loss: tf.Tensor(0.40565154, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.8183424, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 22903\n",
+ "Discriminator Loss: tf.Tensor(1.2349435, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.8258252, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 22904\n",
+ "Discriminator Loss: tf.Tensor(0.8625248, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.17786424, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 22905\n",
+ "Discriminator Loss: tf.Tensor(1.1412013, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.3329269, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 22906\n",
+ "Discriminator Loss: tf.Tensor(1.0338814, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.21644367, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 22907\n",
+ "Discriminator Loss: tf.Tensor(0.8765215, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.7679548, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 22908\n",
+ "Discriminator Loss: tf.Tensor(0.61709857, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.47259998, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 22909\n",
+ "Discriminator Loss: tf.Tensor(1.1449856, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.4197525, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 22910\n",
+ "Discriminator Loss: tf.Tensor(0.95260495, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.076372325, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 22911\n",
+ "Discriminator Loss: tf.Tensor(0.5682946, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.3732497, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 22912\n",
+ "Discriminator Loss: tf.Tensor(0.72121495, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.6198165, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 22913\n",
+ "Discriminator Loss: tf.Tensor(0.8486555, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.7183524, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 22914\n",
+ "Discriminator Loss: tf.Tensor(0.8557831, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.36240998, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 22915\n",
+ "Discriminator Loss: tf.Tensor(1.0589209, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.9015681, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 22916\n",
+ "Discriminator Loss: tf.Tensor(0.6474252, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.60762, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 22917\n",
+ "Discriminator Loss: tf.Tensor(1.1543827, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.3918272, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 22918\n",
+ "Discriminator Loss: tf.Tensor(0.69139594, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.4682053, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 22919\n",
+ "Discriminator Loss: tf.Tensor(0.8443147, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.3543361, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 22920\n",
+ "Discriminator Loss: tf.Tensor(0.8099003, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.4207355, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 22921\n",
+ "Discriminator Loss: tf.Tensor(1.207848, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.9976946, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 22922\n",
+ "Discriminator Loss: tf.Tensor(0.7133083, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.37393287, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 22923\n",
+ "Discriminator Loss: tf.Tensor(0.83587605, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.5707928, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 22924\n",
+ "Discriminator Loss: tf.Tensor(0.6174412, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.4954406, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 22925\n",
+ "Discriminator Loss: tf.Tensor(0.73901784, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.828894, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 22926\n",
+ "Discriminator Loss: tf.Tensor(0.7158831, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.5758155, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 22927\n",
+ "Discriminator Loss: tf.Tensor(0.9405196, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.8421888, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 22928\n",
+ "Discriminator Loss: tf.Tensor(1.1228609, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.25789157, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 22929\n",
+ "Discriminator Loss: tf.Tensor(0.82190937, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.4359051, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 22930\n",
+ "Discriminator Loss: tf.Tensor(1.5182979, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.26632056, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 22931\n",
+ "Discriminator Loss: tf.Tensor(0.80975676, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.1473002, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 22932\n",
+ "Discriminator Loss: tf.Tensor(1.1032535, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.04207745, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 22933\n",
+ "Discriminator Loss: tf.Tensor(1.0117267, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.724022, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 22934\n",
+ "Discriminator Loss: tf.Tensor(0.57554615, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.5214245, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 22935\n",
+ "Discriminator Loss: tf.Tensor(0.73152125, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.4001192, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 22936\n",
+ "Discriminator Loss: tf.Tensor(0.84872705, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.45919394, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 22937\n",
+ "Discriminator Loss: tf.Tensor(0.9618147, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.326108, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 22938\n",
+ "Discriminator Loss: tf.Tensor(0.80706954, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.47997394, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 22939\n",
+ "Discriminator Loss: tf.Tensor(0.83566153, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.5982507, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 22940\n",
+ "Discriminator Loss: tf.Tensor(0.82441425, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.726784, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 22941\n",
+ "Discriminator Loss: tf.Tensor(0.42028773, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.7375598, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 22942\n",
+ "Discriminator Loss: tf.Tensor(0.96938777, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.6156277, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 22943\n",
+ "Discriminator Loss: tf.Tensor(0.9415924, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.3859582, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 22944\n",
+ "Discriminator Loss: tf.Tensor(0.48583537, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.6880045, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 22945\n",
+ "Discriminator Loss: tf.Tensor(0.6403209, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.0300026, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 22946\n",
+ "Discriminator Loss: tf.Tensor(1.1904854, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.14387469, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 22947\n",
+ "Discriminator Loss: tf.Tensor(1.4812994, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.6691985, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 22948\n",
+ "Discriminator Loss: tf.Tensor(0.9221203, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.37177837, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 22949\n",
+ "Discriminator Loss: tf.Tensor(0.87490624, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.2802329, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 22950\n",
+ "Discriminator Loss: tf.Tensor(0.72012603, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.7367, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 22951\n",
+ "Discriminator Loss: tf.Tensor(0.49385032, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.1589041, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 22952\n",
+ "Discriminator Loss: tf.Tensor(0.644498, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.84132665, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 22953\n",
+ "Discriminator Loss: tf.Tensor(1.2737405, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.4613773, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 22954\n",
+ "Discriminator Loss: tf.Tensor(1.1095388, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.043775693, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 22955\n",
+ "Discriminator Loss: tf.Tensor(1.1734663, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.194264, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 22956\n",
+ "Discriminator Loss: tf.Tensor(0.63106877, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.6091339, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 22957\n",
+ "Discriminator Loss: tf.Tensor(0.97938657, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.1482553, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 22958\n",
+ "Discriminator Loss: tf.Tensor(0.6489241, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.74582535, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 22959\n",
+ "Discriminator Loss: tf.Tensor(0.6164959, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.2781941, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 22960\n",
+ "Discriminator Loss: tf.Tensor(0.7122452, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.85204214, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 22961\n",
+ "Discriminator Loss: tf.Tensor(1.1874123, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.4622136, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 22962\n",
+ "Discriminator Loss: tf.Tensor(1.0045285, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.20844646, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 22963\n",
+ "Discriminator Loss: tf.Tensor(1.2096043, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.7168299, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 22964\n",
+ "Discriminator Loss: tf.Tensor(1.0553904, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.06818881, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 22965\n",
+ "Discriminator Loss: tf.Tensor(0.5147966, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.1763271, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 22966\n",
+ "Discriminator Loss: tf.Tensor(0.70997745, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.0832509, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 22967\n",
+ "Discriminator Loss: tf.Tensor(0.47150403, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.7540255, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 22968\n",
+ "Discriminator Loss: tf.Tensor(0.8215877, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.9325796, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 22969\n",
+ "Discriminator Loss: tf.Tensor(0.8132085, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.5752995, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 22970\n",
+ "Discriminator Loss: tf.Tensor(0.9888879, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.7202182, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 22971\n",
+ "Discriminator Loss: tf.Tensor(1.2024395, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.05675674, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 22972\n",
+ "Discriminator Loss: tf.Tensor(0.6505209, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.7707655, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 22973\n",
+ "Discriminator Loss: tf.Tensor(1.3639476, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.6412773, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 22974\n",
+ "Discriminator Loss: tf.Tensor(1.1533574, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.0025670107, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 22975\n",
+ "Discriminator Loss: tf.Tensor(0.9844488, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.0828595, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 22976\n",
+ "Discriminator Loss: tf.Tensor(0.86706036, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.2870916, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 22977\n",
+ "Discriminator Loss: tf.Tensor(1.1262047, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.6144482, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 22978\n",
+ "Discriminator Loss: tf.Tensor(0.6964717, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.48382822, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 22979\n",
+ "Discriminator Loss: tf.Tensor(0.7192947, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.1655349, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 22980\n",
+ "Discriminator Loss: tf.Tensor(0.5939258, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.69145423, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 22981\n",
+ "Discriminator Loss: tf.Tensor(1.020581, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.8501898, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 22982\n",
+ "Discriminator Loss: tf.Tensor(1.2001334, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.007004035, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 22983\n",
+ "Discriminator Loss: tf.Tensor(1.0852703, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.5913345, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 22984\n",
+ "Discriminator Loss: tf.Tensor(0.6216541, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.51157504, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 22985\n",
+ "Discriminator Loss: tf.Tensor(1.2169778, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.9974073, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 22986\n",
+ "Discriminator Loss: tf.Tensor(0.6708354, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.37510636, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 22987\n",
+ "Discriminator Loss: tf.Tensor(1.0095402, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.2315699, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 22988\n",
+ "Discriminator Loss: tf.Tensor(0.6748068, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.42484704, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 22989\n",
+ "Discriminator Loss: tf.Tensor(0.5304253, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.7702614, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 22990\n",
+ "Discriminator Loss: tf.Tensor(0.53731596, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.57414037, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 22991\n",
+ "Discriminator Loss: tf.Tensor(0.61908394, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.5372158, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 22992\n",
+ "Discriminator Loss: tf.Tensor(0.85032356, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.5320893, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 22993\n",
+ "Discriminator Loss: tf.Tensor(1.4889176, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.688612, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 22994\n",
+ "Discriminator Loss: tf.Tensor(1.4231484, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.19453532, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 22995\n",
+ "Discriminator Loss: tf.Tensor(0.8038007, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.0857229, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 22996\n",
+ "Discriminator Loss: tf.Tensor(0.7996497, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.6429658, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 22997\n",
+ "Discriminator Loss: tf.Tensor(1.2453634, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.6210413, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 22998\n",
+ "Discriminator Loss: tf.Tensor(0.66570354, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.38067618, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 22999\n",
+ "Discriminator Loss: tf.Tensor(0.7140187, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.3275379, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 23000\n",
+ "Discriminator Loss: tf.Tensor(0.8710308, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.32328343, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 23001\n",
+ "Discriminator Loss: tf.Tensor(1.2775542, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.8865418, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 23002\n",
+ "Discriminator Loss: tf.Tensor(0.60228676, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.42034355, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 23003\n",
+ "Discriminator Loss: tf.Tensor(0.9889368, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.3777977, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 23004\n",
+ "Discriminator Loss: tf.Tensor(1.0351462, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.30546287, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 23005\n",
+ "Discriminator Loss: tf.Tensor(0.4488274, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.2247528, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 23006\n",
+ "Discriminator Loss: tf.Tensor(0.74429107, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.794992, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 23007\n",
+ "Discriminator Loss: tf.Tensor(0.49042135, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.3059251, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 23008\n",
+ "Discriminator Loss: tf.Tensor(0.53406876, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.0430231, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 23009\n",
+ "Discriminator Loss: tf.Tensor(1.0862458, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.9568427, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 23010\n",
+ "Discriminator Loss: tf.Tensor(0.6377648, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.7311564, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 23011\n",
+ "Discriminator Loss: tf.Tensor(0.8493521, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.3481789, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 23012\n",
+ "Discriminator Loss: tf.Tensor(1.1453586, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.32064655, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 23013\n",
+ "Discriminator Loss: tf.Tensor(1.1019415, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.7469443, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 23014\n",
+ "Discriminator Loss: tf.Tensor(1.1987267, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.03332651, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 23015\n",
+ "Discriminator Loss: tf.Tensor(0.8731713, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.2553358, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 23016\n",
+ "Discriminator Loss: tf.Tensor(0.95200074, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.13014455, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 23017\n",
+ "Discriminator Loss: tf.Tensor(0.7685742, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.3004436, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 23018\n",
+ "Discriminator Loss: tf.Tensor(0.8775033, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.16538988, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 23019\n",
+ "Discriminator Loss: tf.Tensor(0.7839788, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.3768625, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 23020\n",
+ "Discriminator Loss: tf.Tensor(0.45320898, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.59066284, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 23021\n",
+ "Discriminator Loss: tf.Tensor(1.3819818, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.1604078, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 23022\n",
+ "Discriminator Loss: tf.Tensor(0.7246342, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.83157015, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 23023\n",
+ "Discriminator Loss: tf.Tensor(0.8279209, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.7276972, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 23024\n",
+ "Discriminator Loss: tf.Tensor(0.6958874, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.3388062, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 23025\n",
+ "Discriminator Loss: tf.Tensor(1.4674875, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.34540924, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 23026\n",
+ "Discriminator Loss: tf.Tensor(0.7457987, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.1795228, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 23027\n",
+ "Discriminator Loss: tf.Tensor(0.6974548, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.5299371, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 23028\n",
+ "Discriminator Loss: tf.Tensor(0.52666235, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.6440717, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 23029\n",
+ "Discriminator Loss: tf.Tensor(0.9435942, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.71987396, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 23030\n",
+ "Discriminator Loss: tf.Tensor(0.46252725, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.2133992, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 23031\n",
+ "Discriminator Loss: tf.Tensor(1.0099953, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.35268092, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 23032\n",
+ "Discriminator Loss: tf.Tensor(0.94705415, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.6589584, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 23033\n",
+ "Discriminator Loss: tf.Tensor(0.6863619, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.6152141, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 23034\n",
+ "Discriminator Loss: tf.Tensor(1.4490275, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.15372, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 23035\n",
+ "Discriminator Loss: tf.Tensor(0.6761251, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.6393922, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 23036\n",
+ "Discriminator Loss: tf.Tensor(1.1116724, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.6499685, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 23037\n",
+ "Discriminator Loss: tf.Tensor(0.47143435, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.7390067, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 23038\n",
+ "Discriminator Loss: tf.Tensor(1.0608236, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.5747906, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 23039\n",
+ "Discriminator Loss: tf.Tensor(0.6476832, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.38341078, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 23040\n",
+ "Discriminator Loss: tf.Tensor(1.1609038, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.7497889, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 23041\n",
+ "Discriminator Loss: tf.Tensor(0.78696805, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.6900951, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 23042\n",
+ "Discriminator Loss: tf.Tensor(0.44547927, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.3249353, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 23043\n",
+ "Discriminator Loss: tf.Tensor(0.75914866, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.8343788, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 23044\n",
+ "Discriminator Loss: tf.Tensor(0.72037756, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.628776, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 23045\n",
+ "Discriminator Loss: tf.Tensor(0.63781816, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.8391289, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 23046\n",
+ "Discriminator Loss: tf.Tensor(0.52065575, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.9681404, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 23047\n",
+ "Discriminator Loss: tf.Tensor(0.90375865, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.65429515, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 23048\n",
+ "Discriminator Loss: tf.Tensor(1.1281841, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.5487299, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 23049\n",
+ "Discriminator Loss: tf.Tensor(1.1310883, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.013595621, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 23050\n",
+ "Discriminator Loss: tf.Tensor(1.0196824, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.1375002, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 23051\n",
+ "Discriminator Loss: tf.Tensor(0.7674862, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.86437064, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 23052\n",
+ "Discriminator Loss: tf.Tensor(0.6798022, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.75778896, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 23053\n",
+ "Discriminator Loss: tf.Tensor(1.1660324, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.738512, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 23054\n",
+ "Discriminator Loss: tf.Tensor(1.3416321, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.024305752, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 23055\n",
+ "Discriminator Loss: tf.Tensor(1.0003387, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.889983, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 23056\n",
+ "Discriminator Loss: tf.Tensor(0.6707492, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.0136948, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 23057\n",
+ "Discriminator Loss: tf.Tensor(0.51786506, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.9849445, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 23058\n",
+ "Discriminator Loss: tf.Tensor(0.8077378, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.3762611, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 23059\n",
+ "Discriminator Loss: tf.Tensor(1.1991458, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.1594422, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 23060\n",
+ "Discriminator Loss: tf.Tensor(0.78848326, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.5346742, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 23061\n",
+ "Discriminator Loss: tf.Tensor(0.92237234, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.10606434, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 23062\n",
+ "Discriminator Loss: tf.Tensor(1.2702153, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.58498, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 23063\n",
+ "Discriminator Loss: tf.Tensor(0.65053535, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.39902475, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 23064\n",
+ "Discriminator Loss: tf.Tensor(1.1181142, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.2866439, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 23065\n",
+ "Discriminator Loss: tf.Tensor(0.9648237, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.14366479, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 23066\n",
+ "Discriminator Loss: tf.Tensor(0.7371022, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.3237094, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 23067\n",
+ "Discriminator Loss: tf.Tensor(0.48749092, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.6486437, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 23068\n",
+ "Discriminator Loss: tf.Tensor(1.0760307, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.5159783, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 23069\n",
+ "Discriminator Loss: tf.Tensor(0.7763377, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.4227253, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 23070\n",
+ "Discriminator Loss: tf.Tensor(0.9510585, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.3478522, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 23071\n",
+ "Discriminator Loss: tf.Tensor(1.0308554, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.34281597, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 23072\n",
+ "Discriminator Loss: tf.Tensor(1.136333, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.692892, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 23073\n",
+ "Discriminator Loss: tf.Tensor(0.6607021, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.45715904, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 23074\n",
+ "Discriminator Loss: tf.Tensor(0.83845496, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.3516129, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 23075\n",
+ "Discriminator Loss: tf.Tensor(0.66480327, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.76165086, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 23076\n",
+ "Discriminator Loss: tf.Tensor(1.2417636, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.6468364, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 23077\n",
+ "Discriminator Loss: tf.Tensor(1.031496, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.116199546, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 23078\n",
+ "Discriminator Loss: tf.Tensor(0.94400585, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.90200806, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 23079\n",
+ "Discriminator Loss: tf.Tensor(0.83477116, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.46716866, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 23080\n",
+ "Discriminator Loss: tf.Tensor(1.1857259, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.5714127, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 23081\n",
+ "Discriminator Loss: tf.Tensor(0.6230822, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.9083198, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 23082\n",
+ "Discriminator Loss: tf.Tensor(0.7959226, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.3622954, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 23083\n",
+ "Discriminator Loss: tf.Tensor(0.7886611, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.6184419, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 23084\n",
+ "Discriminator Loss: tf.Tensor(0.75691944, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.45548713, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 23085\n",
+ "Discriminator Loss: tf.Tensor(0.63002586, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.52959, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 23086\n",
+ "Discriminator Loss: tf.Tensor(0.56516945, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.4084331, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 23087\n",
+ "Discriminator Loss: tf.Tensor(0.8391178, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.383322, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 23088\n",
+ "Discriminator Loss: tf.Tensor(1.2009332, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.7994107, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 23089\n",
+ "Discriminator Loss: tf.Tensor(0.9569301, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.37965035, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 23090\n",
+ "Discriminator Loss: tf.Tensor(0.7377972, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.4913254, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 23091\n",
+ "Discriminator Loss: tf.Tensor(0.40961537, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.86857074, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 23092\n",
+ "Discriminator Loss: tf.Tensor(0.50337076, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.9020384, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 23093\n",
+ "Discriminator Loss: tf.Tensor(1.3725939, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.0243845, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 23094\n",
+ "Discriminator Loss: tf.Tensor(1.3512945, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.07220424, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 23095\n",
+ "Discriminator Loss: tf.Tensor(0.91174746, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.9540279, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 23096\n",
+ "Discriminator Loss: tf.Tensor(0.4200708, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.7053965, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 23097\n",
+ "Discriminator Loss: tf.Tensor(1.780853, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.2018337, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 23098\n",
+ "Discriminator Loss: tf.Tensor(0.5140148, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.53475726, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 23099\n",
+ "Discriminator Loss: tf.Tensor(1.0894921, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.3470443, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 23100\n",
+ "Discriminator Loss: tf.Tensor(0.90422636, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.27758995, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 23101\n",
+ "Discriminator Loss: tf.Tensor(0.8386154, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.99546975, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 23102\n",
+ "Discriminator Loss: tf.Tensor(0.5073883, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.9561033, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 23103\n",
+ "Discriminator Loss: tf.Tensor(1.421844, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.0155307, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 23104\n",
+ "Discriminator Loss: tf.Tensor(0.6078062, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.59221107, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 23105\n",
+ "Discriminator Loss: tf.Tensor(1.4763838, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.8354968, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 23106\n",
+ "Discriminator Loss: tf.Tensor(0.9448192, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.24565768, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 23107\n",
+ "Discriminator Loss: tf.Tensor(0.6409623, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.8695111, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 23108\n",
+ "Discriminator Loss: tf.Tensor(0.9763627, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.619553, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 23109\n",
+ "Discriminator Loss: tf.Tensor(1.060856, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.083292656, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 23110\n",
+ "Discriminator Loss: tf.Tensor(0.934757, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.0043912, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 23111\n",
+ "Discriminator Loss: tf.Tensor(0.801133, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.2924136, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 23112\n",
+ "Discriminator Loss: tf.Tensor(0.9917011, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.06386941, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 23113\n",
+ "Discriminator Loss: tf.Tensor(0.8483006, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.7339429, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 23114\n",
+ "Discriminator Loss: tf.Tensor(0.7122289, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.4843968, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 23115\n",
+ "Discriminator Loss: tf.Tensor(0.8377917, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.5293813, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 23116\n",
+ "Discriminator Loss: tf.Tensor(1.2074234, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.06289801, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 23117\n",
+ "Discriminator Loss: tf.Tensor(1.1400113, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.477177, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 23118\n",
+ "Discriminator Loss: tf.Tensor(0.5224199, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.0772226, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 23119\n",
+ "Discriminator Loss: tf.Tensor(0.79474044, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.1387794, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 23120\n",
+ "Discriminator Loss: tf.Tensor(0.39794606, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.4035424, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 23121\n",
+ "Discriminator Loss: tf.Tensor(0.85651785, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.0427809, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 23122\n",
+ "Discriminator Loss: tf.Tensor(0.75350225, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.2685808, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 23123\n",
+ "Discriminator Loss: tf.Tensor(0.6970489, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.47931075, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 23124\n",
+ "Discriminator Loss: tf.Tensor(1.1553817, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.1383042, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 23125\n",
+ "Discriminator Loss: tf.Tensor(0.67011684, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.545008, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 23126\n",
+ "Discriminator Loss: tf.Tensor(0.6018027, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.3367729, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 23127\n",
+ "Discriminator Loss: tf.Tensor(1.0601065, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.7502813, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 23128\n",
+ "Discriminator Loss: tf.Tensor(0.5677695, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.1796178, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 23129\n",
+ "Discriminator Loss: tf.Tensor(0.30680057, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.8399582, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 23130\n",
+ "Discriminator Loss: tf.Tensor(1.2140344, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.6577867, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 23131\n",
+ "Discriminator Loss: tf.Tensor(0.8700929, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.33124813, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 23132\n",
+ "Discriminator Loss: tf.Tensor(1.2693293, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.2905147, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 23133\n",
+ "Discriminator Loss: tf.Tensor(0.83555615, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.3259565, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 23134\n",
+ "Discriminator Loss: tf.Tensor(0.93134004, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.96868086, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 23135\n",
+ "Discriminator Loss: tf.Tensor(0.3750894, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.974988, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 23136\n",
+ "Discriminator Loss: tf.Tensor(1.3902705, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.0271177, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 23137\n",
+ "Discriminator Loss: tf.Tensor(0.9595363, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.26823857, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 23138\n",
+ "Discriminator Loss: tf.Tensor(1.0559088, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.2701124, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 23139\n",
+ "Discriminator Loss: tf.Tensor(0.5466199, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.7380171, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 23140\n",
+ "Discriminator Loss: tf.Tensor(0.78575623, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.5505915, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 23141\n",
+ "Discriminator Loss: tf.Tensor(0.7928157, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.66165817, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 23142\n",
+ "Discriminator Loss: tf.Tensor(0.86720514, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.4352503, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 23143\n",
+ "Discriminator Loss: tf.Tensor(1.0500971, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.15156336, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 23144\n",
+ "Discriminator Loss: tf.Tensor(0.8723757, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.5966768, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 23145\n",
+ "Discriminator Loss: tf.Tensor(0.52122664, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.65738297, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 23146\n",
+ "Discriminator Loss: tf.Tensor(0.8939012, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.2651757, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 23147\n",
+ "Discriminator Loss: tf.Tensor(0.6280247, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.88975257, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 23148\n",
+ "Discriminator Loss: tf.Tensor(1.071996, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.3251872, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 23149\n",
+ "Discriminator Loss: tf.Tensor(0.9282918, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.20726855, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 23150\n",
+ "Discriminator Loss: tf.Tensor(1.2469647, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.7720461, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 23151\n",
+ "Discriminator Loss: tf.Tensor(0.7210052, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.35902098, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 23152\n",
+ "Discriminator Loss: tf.Tensor(1.2854056, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.4574041, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 23153\n",
+ "Discriminator Loss: tf.Tensor(1.0074551, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.11484302, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 23154\n",
+ "Discriminator Loss: tf.Tensor(0.7192355, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.2448454, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 23155\n",
+ "Discriminator Loss: tf.Tensor(0.7695316, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.3818849, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 23156\n",
+ "Discriminator Loss: tf.Tensor(0.8383095, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.5147738, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 23157\n",
+ "Discriminator Loss: tf.Tensor(0.5223113, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.5872094, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 23158\n",
+ "Discriminator Loss: tf.Tensor(0.84065545, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.7471541, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 23159\n",
+ "Discriminator Loss: tf.Tensor(0.785448, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.6261676, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 23160\n",
+ "Discriminator Loss: tf.Tensor(0.71936864, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.0832527, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 23161\n",
+ "Discriminator Loss: tf.Tensor(0.7647104, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.1854979, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 23162\n",
+ "Discriminator Loss: tf.Tensor(0.87105817, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.21958989, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 23163\n",
+ "Discriminator Loss: tf.Tensor(1.1046623, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.3102201, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 23164\n",
+ "Discriminator Loss: tf.Tensor(0.7601399, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.2972398, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 23165\n",
+ "Discriminator Loss: tf.Tensor(0.861174, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.3949436, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 23166\n",
+ "Discriminator Loss: tf.Tensor(0.91696185, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.6049135, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 23167\n",
+ "Discriminator Loss: tf.Tensor(0.9895661, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.540238, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 23168\n",
+ "Discriminator Loss: tf.Tensor(1.3006252, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.15012859, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 23169\n",
+ "Discriminator Loss: tf.Tensor(1.0693687, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.98091125, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 23170\n",
+ "Discriminator Loss: tf.Tensor(0.74752647, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.0917209, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 23171\n",
+ "Discriminator Loss: tf.Tensor(0.7649331, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.1729813, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 23172\n",
+ "Discriminator Loss: tf.Tensor(0.45598853, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.79663116, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 23173\n",
+ "Discriminator Loss: tf.Tensor(0.8000368, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.2913822, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 23174\n",
+ "Discriminator Loss: tf.Tensor(0.6142389, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.94783324, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 23175\n",
+ "Discriminator Loss: tf.Tensor(0.74074095, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.4440082, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 23176\n",
+ "Discriminator Loss: tf.Tensor(0.89712375, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.20656931, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 23177\n",
+ "Discriminator Loss: tf.Tensor(0.80245256, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.4208988, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 23178\n",
+ "Discriminator Loss: tf.Tensor(1.010434, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.02202181, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 23179\n",
+ "Discriminator Loss: tf.Tensor(0.9682491, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.9457539, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 23180\n",
+ "Discriminator Loss: tf.Tensor(0.62953585, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.55133843, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 23181\n",
+ "Discriminator Loss: tf.Tensor(1.0290366, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.5699619, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 23182\n",
+ "Discriminator Loss: tf.Tensor(0.7844418, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.62985295, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 23183\n",
+ "Discriminator Loss: tf.Tensor(0.6729278, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.6989027, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 23184\n",
+ "Discriminator Loss: tf.Tensor(0.7864895, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.39178792, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 23185\n",
+ "Discriminator Loss: tf.Tensor(1.3344365, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.7666197, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 23186\n",
+ "Discriminator Loss: tf.Tensor(1.3627505, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.19179063, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 23187\n",
+ "Discriminator Loss: tf.Tensor(1.0395064, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.5392232, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 23188\n",
+ "Discriminator Loss: tf.Tensor(0.93366694, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.24249516, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 23189\n",
+ "Discriminator Loss: tf.Tensor(0.97394073, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.1649188, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 23190\n",
+ "Discriminator Loss: tf.Tensor(0.77305424, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.6564531, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 23191\n",
+ "Discriminator Loss: tf.Tensor(0.71766317, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.4752737, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 23192\n",
+ "Discriminator Loss: tf.Tensor(0.80761737, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.38484454, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 23193\n",
+ "Discriminator Loss: tf.Tensor(0.74631447, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.1607009, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 23194\n",
+ "Discriminator Loss: tf.Tensor(0.5453802, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.9183309, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 23195\n",
+ "Discriminator Loss: tf.Tensor(0.71565014, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.3110846, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 23196\n",
+ "Discriminator Loss: tf.Tensor(1.041701, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.103916965, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 23197\n",
+ "Discriminator Loss: tf.Tensor(1.2209065, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.0311406, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 23198\n",
+ "Discriminator Loss: tf.Tensor(0.8714119, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.43677783, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 23199\n",
+ "Discriminator Loss: tf.Tensor(1.1149967, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.2522851, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 23200\n",
+ "Discriminator Loss: tf.Tensor(0.6122093, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.7117429, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 23201\n",
+ "Discriminator Loss: tf.Tensor(0.72419786, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.7752695, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 23202\n",
+ "Discriminator Loss: tf.Tensor(0.8746787, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.4252046, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 23203\n",
+ "Discriminator Loss: tf.Tensor(0.70062226, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.3046983, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 23204\n",
+ "Discriminator Loss: tf.Tensor(0.7508985, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.0223788, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 23205\n",
+ "Discriminator Loss: tf.Tensor(0.57575685, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.8557541, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 23206\n",
+ "Discriminator Loss: tf.Tensor(1.0260502, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.5523783, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 23207\n",
+ "Discriminator Loss: tf.Tensor(1.2715846, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.2309288, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 23208\n",
+ "Discriminator Loss: tf.Tensor(0.9610418, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.2735215, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 23209\n",
+ "Discriminator Loss: tf.Tensor(0.7100729, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.3785331, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 23210\n",
+ "Discriminator Loss: tf.Tensor(0.9733249, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.6326618, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 23211\n",
+ "Discriminator Loss: tf.Tensor(0.70195675, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.37228522, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 23212\n",
+ "Discriminator Loss: tf.Tensor(0.7816476, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.377426, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 23213\n",
+ "Discriminator Loss: tf.Tensor(0.29961064, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.9718357, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 23214\n",
+ "Discriminator Loss: tf.Tensor(0.62905264, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.1313264, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 23215\n",
+ "Discriminator Loss: tf.Tensor(0.6599788, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.7831624, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 23216\n",
+ "Discriminator Loss: tf.Tensor(1.276769, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.999111, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 23217\n",
+ "Discriminator Loss: tf.Tensor(1.2346983, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.0024784456, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 23218\n",
+ "Discriminator Loss: tf.Tensor(0.7064918, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.384098, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 23219\n",
+ "Discriminator Loss: tf.Tensor(0.6819576, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.70589656, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 23220\n",
+ "Discriminator Loss: tf.Tensor(1.1659579, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.3508506, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 23221\n",
+ "Discriminator Loss: tf.Tensor(1.0882802, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.050563607, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 23222\n",
+ "Discriminator Loss: tf.Tensor(1.5595452, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.7789186, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 23223\n",
+ "Discriminator Loss: tf.Tensor(0.97317284, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.6576065, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 23224\n",
+ "Discriminator Loss: tf.Tensor(0.9473182, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.56135964, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 23225\n",
+ "Discriminator Loss: tf.Tensor(0.5214684, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.2045879, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 23226\n",
+ "Discriminator Loss: tf.Tensor(0.6636919, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.4728044, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 23227\n",
+ "Discriminator Loss: tf.Tensor(1.1526185, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.785214, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 23228\n",
+ "Discriminator Loss: tf.Tensor(0.7548229, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.5509321, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 23229\n",
+ "Discriminator Loss: tf.Tensor(0.4223802, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.2958375, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 23230\n",
+ "Discriminator Loss: tf.Tensor(0.6833179, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.6931742, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 23231\n",
+ "Discriminator Loss: tf.Tensor(0.9387938, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.8397894, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 23232\n",
+ "Discriminator Loss: tf.Tensor(0.7740595, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.37943769, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 23233\n",
+ "Discriminator Loss: tf.Tensor(1.1260111, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.6805626, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 23234\n",
+ "Discriminator Loss: tf.Tensor(0.707353, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.67828673, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 23235\n",
+ "Discriminator Loss: tf.Tensor(0.94475937, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.8276529, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 23236\n",
+ "Discriminator Loss: tf.Tensor(0.8457161, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.3687458, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 23237\n",
+ "Discriminator Loss: tf.Tensor(0.47945118, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.6504406, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 23238\n",
+ "Discriminator Loss: tf.Tensor(1.2707762, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.8804679, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 23239\n",
+ "Discriminator Loss: tf.Tensor(1.1027138, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.26740798, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 23240\n",
+ "Discriminator Loss: tf.Tensor(1.0367146, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.0917306, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 23241\n",
+ "Discriminator Loss: tf.Tensor(0.3808734, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.1906419, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 23242\n",
+ "Discriminator Loss: tf.Tensor(0.97525454, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.70305777, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 23243\n",
+ "Discriminator Loss: tf.Tensor(0.71615183, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.429257, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 23244\n",
+ "Discriminator Loss: tf.Tensor(0.63788855, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.56774974, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 23245\n",
+ "Discriminator Loss: tf.Tensor(0.89527965, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.4800167, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 23246\n",
+ "Discriminator Loss: tf.Tensor(0.75459373, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.61031896, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 23247\n",
+ "Discriminator Loss: tf.Tensor(0.6205887, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.5191563, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 23248\n",
+ "Discriminator Loss: tf.Tensor(1.0681044, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.29626134, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 23249\n",
+ "Discriminator Loss: tf.Tensor(1.0942547, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.3664688, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 23250\n",
+ "Discriminator Loss: tf.Tensor(0.68964124, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.44609508, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 23251\n",
+ "Discriminator Loss: tf.Tensor(1.2955263, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.817174, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 23252\n",
+ "Discriminator Loss: tf.Tensor(0.76642734, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.69449186, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 23253\n",
+ "Discriminator Loss: tf.Tensor(1.2719837, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.9032186, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 23254\n",
+ "Discriminator Loss: tf.Tensor(0.493095, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.64706534, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 23255\n",
+ "Discriminator Loss: tf.Tensor(0.9013599, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.3325435, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 23256\n",
+ "Discriminator Loss: tf.Tensor(0.27260262, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.3423456, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 23257\n",
+ "Discriminator Loss: tf.Tensor(0.5309395, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.92946607, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 23258\n",
+ "Discriminator Loss: tf.Tensor(1.0182525, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.5855852, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 23259\n",
+ "Discriminator Loss: tf.Tensor(1.7306931, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.5910344, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 23260\n",
+ "Discriminator Loss: tf.Tensor(0.56923723, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.2468382, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 23261\n",
+ "Discriminator Loss: tf.Tensor(0.9464835, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.20299311, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 23262\n",
+ "Discriminator Loss: tf.Tensor(1.2130024, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.7664924, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 23263\n",
+ "Discriminator Loss: tf.Tensor(0.75918686, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.47855163, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 23264\n",
+ "Discriminator Loss: tf.Tensor(1.4078267, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.94160366, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 23265\n",
+ "Discriminator Loss: tf.Tensor(0.9588546, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.29704106, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 23266\n",
+ "Discriminator Loss: tf.Tensor(0.9732071, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.9471493, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 23267\n",
+ "Discriminator Loss: tf.Tensor(0.63609624, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.497914, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 23268\n",
+ "Discriminator Loss: tf.Tensor(0.8120152, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.5027932, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 23269\n",
+ "Discriminator Loss: tf.Tensor(0.5222973, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.73264354, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 23270\n",
+ "Discriminator Loss: tf.Tensor(0.8617766, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.1076697, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 23271\n",
+ "Discriminator Loss: tf.Tensor(0.9753159, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.8918596, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 23272\n",
+ "Discriminator Loss: tf.Tensor(0.7441908, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.2094295, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 23273\n",
+ "Discriminator Loss: tf.Tensor(0.64255774, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.60385394, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 23274\n",
+ "Discriminator Loss: tf.Tensor(1.7521116, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.0534315, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 23275\n",
+ "Discriminator Loss: tf.Tensor(0.7768523, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.3080054, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 23276\n",
+ "Discriminator Loss: tf.Tensor(0.7307068, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.0183473, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 23277\n",
+ "Discriminator Loss: tf.Tensor(0.82249576, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.62816983, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 23278\n",
+ "Discriminator Loss: tf.Tensor(1.1951079, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.5149689, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 23279\n",
+ "Discriminator Loss: tf.Tensor(0.6949437, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.39404368, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 23280\n",
+ "Discriminator Loss: tf.Tensor(0.9740088, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.3225938, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 23281\n",
+ "Discriminator Loss: tf.Tensor(0.9773934, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.14270163, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 23282\n",
+ "Discriminator Loss: tf.Tensor(1.1294315, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.2111152, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 23283\n",
+ "Discriminator Loss: tf.Tensor(0.91088295, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.7837425, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 23284\n",
+ "Discriminator Loss: tf.Tensor(0.51613575, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.3302122, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 23285\n",
+ "Discriminator Loss: tf.Tensor(0.62363416, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.52296764, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 23286\n",
+ "Discriminator Loss: tf.Tensor(1.0910165, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.035135, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 23287\n",
+ "Discriminator Loss: tf.Tensor(0.964352, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.16870709, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 23288\n",
+ "Discriminator Loss: tf.Tensor(1.1191266, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.5217232, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 23289\n",
+ "Discriminator Loss: tf.Tensor(0.6152109, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.8478646, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 23290\n",
+ "Discriminator Loss: tf.Tensor(0.5411373, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.6636258, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 23291\n",
+ "Discriminator Loss: tf.Tensor(1.0639819, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.7449026, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 23292\n",
+ "Discriminator Loss: tf.Tensor(0.80493844, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.36424068, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 23293\n",
+ "Discriminator Loss: tf.Tensor(1.2768978, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.9478999, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 23294\n",
+ "Discriminator Loss: tf.Tensor(0.9431833, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.20319091, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 23295\n",
+ "Discriminator Loss: tf.Tensor(1.2577319, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.554964, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 23296\n",
+ "Discriminator Loss: tf.Tensor(0.86621326, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.4122553, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 23297\n",
+ "Discriminator Loss: tf.Tensor(0.8355993, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.4070959, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 23298\n",
+ "Discriminator Loss: tf.Tensor(0.7191071, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.37245822, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 23299\n",
+ "Discriminator Loss: tf.Tensor(0.9192045, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.8244697, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 23300\n",
+ "Discriminator Loss: tf.Tensor(0.6933299, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.42678675, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 23301\n",
+ "Discriminator Loss: tf.Tensor(0.6544549, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.0453967, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 23302\n",
+ "Discriminator Loss: tf.Tensor(0.57665044, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.0495886, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 23303\n",
+ "Discriminator Loss: tf.Tensor(0.4557641, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.99904567, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 23304\n",
+ "Discriminator Loss: tf.Tensor(0.7955405, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.3688997, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 23305\n",
+ "Discriminator Loss: tf.Tensor(0.98623693, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.43089953, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 23306\n",
+ "Discriminator Loss: tf.Tensor(1.272492, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.3446846, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 23307\n",
+ "Discriminator Loss: tf.Tensor(1.0194448, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.10192137, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 23308\n",
+ "Discriminator Loss: tf.Tensor(1.4312274, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.6232667, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 23309\n",
+ "Discriminator Loss: tf.Tensor(0.76258636, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.32890984, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 23310\n",
+ "Discriminator Loss: tf.Tensor(0.6920821, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.0590109, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 23311\n",
+ "Discriminator Loss: tf.Tensor(0.6965529, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.88683057, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 23312\n",
+ "Discriminator Loss: tf.Tensor(0.42447105, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.3804675, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 23313\n",
+ "Discriminator Loss: tf.Tensor(0.7936315, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.7809194, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 23314\n",
+ "Discriminator Loss: tf.Tensor(0.91572845, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.6918601, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 23315\n",
+ "Discriminator Loss: tf.Tensor(1.133861, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.17950188, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 23316\n",
+ "Discriminator Loss: tf.Tensor(1.2566307, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.5160222, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 23317\n",
+ "Discriminator Loss: tf.Tensor(1.2026691, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.03287786, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 23318\n",
+ "Discriminator Loss: tf.Tensor(0.57735765, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.1497453, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 23319\n",
+ "Discriminator Loss: tf.Tensor(0.56148654, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.96782535, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 23320\n",
+ "Discriminator Loss: tf.Tensor(0.61624664, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.1102833, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 23321\n",
+ "Discriminator Loss: tf.Tensor(0.40852624, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.0278383, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 23322\n",
+ "Discriminator Loss: tf.Tensor(0.6450745, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.2159432, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 23323\n",
+ "Discriminator Loss: tf.Tensor(1.2748219, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.78002435, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 23324\n",
+ "Discriminator Loss: tf.Tensor(1.0866777, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.0214716, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 23325\n",
+ "Discriminator Loss: tf.Tensor(1.0179293, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.13370799, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 23326\n",
+ "Discriminator Loss: tf.Tensor(1.7110077, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.7126532, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 23327\n",
+ "Discriminator Loss: tf.Tensor(0.9056668, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.2786632, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 23328\n",
+ "Discriminator Loss: tf.Tensor(0.78391325, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.98351336, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 23329\n",
+ "Discriminator Loss: tf.Tensor(1.1035175, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.99488384, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 23330\n",
+ "Discriminator Loss: tf.Tensor(1.2520597, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.37331295, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 23331\n",
+ "Discriminator Loss: tf.Tensor(0.552917, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.9621644, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 23332\n",
+ "Discriminator Loss: tf.Tensor(0.44267005, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.0037681, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 23333\n",
+ "Discriminator Loss: tf.Tensor(0.828262, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.4314256, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 23334\n",
+ "Discriminator Loss: tf.Tensor(1.0694889, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.12754445, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 23335\n",
+ "Discriminator Loss: tf.Tensor(0.80336046, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.2308534, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 23336\n",
+ "Discriminator Loss: tf.Tensor(0.59874344, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.59971195, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 23337\n",
+ "Discriminator Loss: tf.Tensor(1.703125, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.3095672, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 23338\n",
+ "Discriminator Loss: tf.Tensor(0.7647332, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.5200613, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 23339\n",
+ "Discriminator Loss: tf.Tensor(0.767, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.0112653, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 23340\n",
+ "Discriminator Loss: tf.Tensor(0.7492799, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.6357816, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 23341\n",
+ "Discriminator Loss: tf.Tensor(1.3525841, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.97713, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 23342\n",
+ "Discriminator Loss: tf.Tensor(0.8929196, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.27241704, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 23343\n",
+ "Discriminator Loss: tf.Tensor(0.70356864, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.4588122, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 23344\n",
+ "Discriminator Loss: tf.Tensor(0.7568166, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.43748364, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 23345\n",
+ "Discriminator Loss: tf.Tensor(0.803264, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.3208394, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 23346\n",
+ "Discriminator Loss: tf.Tensor(0.7061852, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.40182588, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 23347\n",
+ "Discriminator Loss: tf.Tensor(0.70903087, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.623222, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 23348\n",
+ "Discriminator Loss: tf.Tensor(0.5790306, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.56200284, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 23349\n",
+ "Discriminator Loss: tf.Tensor(0.8420485, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.5439731, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 23350\n",
+ "Discriminator Loss: tf.Tensor(1.0268712, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.3085206, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 23351\n",
+ "Discriminator Loss: tf.Tensor(0.3409161, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.3588649, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 23352\n",
+ "Discriminator Loss: tf.Tensor(0.6090938, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.6754082, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 23353\n",
+ "Discriminator Loss: tf.Tensor(1.0889715, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.6452478, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 23354\n",
+ "Discriminator Loss: tf.Tensor(0.68488616, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.43267348, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 23355\n",
+ "Discriminator Loss: tf.Tensor(1.389786, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.5241252, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 23356\n",
+ "Discriminator Loss: tf.Tensor(0.9830703, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.23677997, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 23357\n",
+ "Discriminator Loss: tf.Tensor(1.296694, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.1991043, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 23358\n",
+ "Discriminator Loss: tf.Tensor(0.7023938, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.5872374, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 23359\n",
+ "Discriminator Loss: tf.Tensor(1.4283897, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.6330938, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 23360\n",
+ "Discriminator Loss: tf.Tensor(0.89536524, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.2203697, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 23361\n",
+ "Discriminator Loss: tf.Tensor(1.2164913, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.87541676, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 23362\n",
+ "Discriminator Loss: tf.Tensor(0.5861978, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.9223337, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 23363\n",
+ "Discriminator Loss: tf.Tensor(0.72408473, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.57491, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 23364\n",
+ "Discriminator Loss: tf.Tensor(0.47650412, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.56884795, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 23365\n",
+ "Discriminator Loss: tf.Tensor(0.7448181, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.0087426, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 23366\n",
+ "Discriminator Loss: tf.Tensor(1.302104, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.0058224513, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 23367\n",
+ "Discriminator Loss: tf.Tensor(1.0858766, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.4566145, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 23368\n",
+ "Discriminator Loss: tf.Tensor(0.9439964, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.22198355, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 23369\n",
+ "Discriminator Loss: tf.Tensor(0.5527136, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.253769, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 23370\n",
+ "Discriminator Loss: tf.Tensor(1.1639897, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.13714805, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 23371\n",
+ "Discriminator Loss: tf.Tensor(0.9468715, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.9347602, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 23372\n",
+ "Discriminator Loss: tf.Tensor(0.8114536, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.40143314, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 23373\n",
+ "Discriminator Loss: tf.Tensor(0.8242128, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.8679204, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 23374\n",
+ "Discriminator Loss: tf.Tensor(0.68749464, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.64673346, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 23375\n",
+ "Discriminator Loss: tf.Tensor(0.5096315, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.3113793, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 23376\n",
+ "Discriminator Loss: tf.Tensor(0.666795, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.76369315, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 23377\n",
+ "Discriminator Loss: tf.Tensor(0.53383946, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.0111495, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 23378\n",
+ "Discriminator Loss: tf.Tensor(0.73834735, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.784185, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 23379\n",
+ "Discriminator Loss: tf.Tensor(0.9192651, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.4618249, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 23380\n",
+ "Discriminator Loss: tf.Tensor(1.4878381, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.38195822, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 23381\n",
+ "Discriminator Loss: tf.Tensor(1.0655363, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.3514271, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 23382\n",
+ "Discriminator Loss: tf.Tensor(0.80977714, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.36095953, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 23383\n",
+ "Discriminator Loss: tf.Tensor(0.8766426, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.8897437, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 23384\n",
+ "Discriminator Loss: tf.Tensor(0.57816994, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.46619368, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 23385\n",
+ "Discriminator Loss: tf.Tensor(0.6962421, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.9784554, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 23386\n",
+ "Discriminator Loss: tf.Tensor(0.6708685, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.41685328, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 23387\n",
+ "Discriminator Loss: tf.Tensor(0.96639097, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.3032464, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 23388\n",
+ "Discriminator Loss: tf.Tensor(0.91395634, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.23737603, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 23389\n",
+ "Discriminator Loss: tf.Tensor(0.48436743, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.682928, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 23390\n",
+ "Discriminator Loss: tf.Tensor(0.63186663, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.71669674, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 23391\n",
+ "Discriminator Loss: tf.Tensor(0.85495913, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.63015634, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 23392\n",
+ "Discriminator Loss: tf.Tensor(0.95477486, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.6964239, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 23393\n",
+ "Discriminator Loss: tf.Tensor(1.0258029, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.21267872, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 23394\n",
+ "Discriminator Loss: tf.Tensor(0.81190425, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.2067442, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 23395\n",
+ "Discriminator Loss: tf.Tensor(0.3665675, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.6805474, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 23396\n",
+ "Discriminator Loss: tf.Tensor(1.5102571, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.3912723, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 23397\n",
+ "Discriminator Loss: tf.Tensor(0.7794516, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.61572975, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 23398\n",
+ "Discriminator Loss: tf.Tensor(0.60169995, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.2752893, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 23399\n",
+ "Discriminator Loss: tf.Tensor(1.1462867, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.67313915, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 23400\n",
+ "Discriminator Loss: tf.Tensor(0.57309294, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.1314768, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 23401\n",
+ "Discriminator Loss: tf.Tensor(0.5722499, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.6537759, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 23402\n",
+ "Discriminator Loss: tf.Tensor(1.3761278, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.8879997, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 23403\n",
+ "Discriminator Loss: tf.Tensor(0.93845505, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.1914758, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 23404\n",
+ "Discriminator Loss: tf.Tensor(1.0320091, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.2407347, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 23405\n",
+ "Discriminator Loss: tf.Tensor(0.6424528, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.81629467, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 23406\n",
+ "Discriminator Loss: tf.Tensor(0.52016383, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.4415313, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 23407\n",
+ "Discriminator Loss: tf.Tensor(0.8436732, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.23111743, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 23408\n",
+ "Discriminator Loss: tf.Tensor(1.2501725, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.5641207, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 23409\n",
+ "Discriminator Loss: tf.Tensor(0.8514757, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.29349884, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 23410\n",
+ "Discriminator Loss: tf.Tensor(1.3809432, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.9022878, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 23411\n",
+ "Discriminator Loss: tf.Tensor(0.6291076, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.5303133, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 23412\n",
+ "Discriminator Loss: tf.Tensor(0.6577987, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.7468049, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 23413\n",
+ "Discriminator Loss: tf.Tensor(0.40880072, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.3863128, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 23414\n",
+ "Discriminator Loss: tf.Tensor(1.0113473, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.26357183, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 23415\n",
+ "Discriminator Loss: tf.Tensor(1.1500921, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.3181707, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 23416\n",
+ "Discriminator Loss: tf.Tensor(0.36805776, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.87344855, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 23417\n",
+ "Discriminator Loss: tf.Tensor(0.82656157, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.6221848, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 23418\n",
+ "Discriminator Loss: tf.Tensor(0.9739506, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.2597666, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 23419\n",
+ "Discriminator Loss: tf.Tensor(1.0939759, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.1368638, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 23420\n",
+ "Discriminator Loss: tf.Tensor(0.59473693, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.9546442, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 23421\n",
+ "Discriminator Loss: tf.Tensor(0.9984695, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.5160308, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 23422\n",
+ "Discriminator Loss: tf.Tensor(1.1747795, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.217313, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 23423\n",
+ "Discriminator Loss: tf.Tensor(0.8910762, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.214687, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 23424\n",
+ "Discriminator Loss: tf.Tensor(0.9494065, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.17435281, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 23425\n",
+ "Discriminator Loss: tf.Tensor(1.0030982, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.4069461, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 23426\n",
+ "Discriminator Loss: tf.Tensor(0.85012144, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.23058426, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 23427\n",
+ "Discriminator Loss: tf.Tensor(0.9596199, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.3428249, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 23428\n",
+ "Discriminator Loss: tf.Tensor(0.6166266, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.4693419, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 23429\n",
+ "Discriminator Loss: tf.Tensor(1.2339246, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.1743743, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 23430\n",
+ "Discriminator Loss: tf.Tensor(0.7973192, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.24985355, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 23431\n",
+ "Discriminator Loss: tf.Tensor(0.80128586, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.4917911, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 23432\n",
+ "Discriminator Loss: tf.Tensor(0.5900165, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.53379637, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 23433\n",
+ "Discriminator Loss: tf.Tensor(0.605237, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.2738183, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 23434\n",
+ "Discriminator Loss: tf.Tensor(0.8857274, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.47414255, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 23435\n",
+ "Discriminator Loss: tf.Tensor(0.7968619, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.2533323, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 23436\n",
+ "Discriminator Loss: tf.Tensor(0.65954345, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.5658595, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 23437\n",
+ "Discriminator Loss: tf.Tensor(0.7725309, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.9290905, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 23438\n",
+ "Discriminator Loss: tf.Tensor(0.73684645, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.5911105, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 23439\n",
+ "Discriminator Loss: tf.Tensor(1.094197, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.6666874, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 23440\n",
+ "Discriminator Loss: tf.Tensor(0.52767086, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.50937456, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 23441\n",
+ "Discriminator Loss: tf.Tensor(1.4502021, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.3385592, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 23442\n",
+ "Discriminator Loss: tf.Tensor(1.2237314, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.23999667, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 23443\n",
+ "Discriminator Loss: tf.Tensor(0.47573835, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.069849, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 23444\n",
+ "Discriminator Loss: tf.Tensor(0.82366586, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.8633397, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 23445\n",
+ "Discriminator Loss: tf.Tensor(1.206623, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.3419691, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 23446\n",
+ "Discriminator Loss: tf.Tensor(0.96400595, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.12340275, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 23447\n",
+ "Discriminator Loss: tf.Tensor(1.0558856, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.4218386, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 23448\n",
+ "Discriminator Loss: tf.Tensor(0.6785476, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.6503908, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 23449\n",
+ "Discriminator Loss: tf.Tensor(0.8249658, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.6496471, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 23450\n",
+ "Discriminator Loss: tf.Tensor(0.8012691, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.45688227, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 23451\n",
+ "Discriminator Loss: tf.Tensor(1.0740691, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.5205408, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 23452\n",
+ "Discriminator Loss: tf.Tensor(0.6281184, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.5057164, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 23453\n",
+ "Discriminator Loss: tf.Tensor(1.2324098, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.5223885, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 23454\n",
+ "Discriminator Loss: tf.Tensor(0.65812755, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.5284142, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 23455\n",
+ "Discriminator Loss: tf.Tensor(0.80483985, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.4082319, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 23456\n",
+ "Discriminator Loss: tf.Tensor(0.988752, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.24432093, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 23457\n",
+ "Discriminator Loss: tf.Tensor(0.76779395, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.474627, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 23458\n",
+ "Discriminator Loss: tf.Tensor(0.73310125, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.37928596, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 23459\n",
+ "Discriminator Loss: tf.Tensor(0.954646, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.4836425, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 23460\n",
+ "Discriminator Loss: tf.Tensor(0.5770213, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.1027807, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 23461\n",
+ "Discriminator Loss: tf.Tensor(0.67331064, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.7260768, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 23462\n",
+ "Discriminator Loss: tf.Tensor(1.0571263, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.575302, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 23463\n",
+ "Discriminator Loss: tf.Tensor(0.8188141, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.2897915, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 23464\n",
+ "Discriminator Loss: tf.Tensor(0.8573186, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.2837267, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 23465\n",
+ "Discriminator Loss: tf.Tensor(0.73589367, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.77599376, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 23466\n",
+ "Discriminator Loss: tf.Tensor(0.3777055, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.0190543, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 23467\n",
+ "Discriminator Loss: tf.Tensor(1.183864, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.6313089, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 23468\n",
+ "Discriminator Loss: tf.Tensor(1.0789223, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.042211473, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 23469\n",
+ "Discriminator Loss: tf.Tensor(1.5150378, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.94218826, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 23470\n",
+ "Discriminator Loss: tf.Tensor(0.67974555, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.7439744, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 23471\n",
+ "Discriminator Loss: tf.Tensor(0.60634303, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.8356741, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 23472\n",
+ "Discriminator Loss: tf.Tensor(0.7386085, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.3306891, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 23473\n",
+ "Discriminator Loss: tf.Tensor(0.9707409, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.16614033, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 23474\n",
+ "Discriminator Loss: tf.Tensor(1.1185889, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.9061824, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 23475\n",
+ "Discriminator Loss: tf.Tensor(0.8862247, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.3069464, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 23476\n",
+ "Discriminator Loss: tf.Tensor(0.5406523, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.5728849, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 23477\n",
+ "Discriminator Loss: tf.Tensor(0.7979991, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.71662617, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 23478\n",
+ "Discriminator Loss: tf.Tensor(1.0666455, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.6613556, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 23479\n",
+ "Discriminator Loss: tf.Tensor(0.97111493, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.13588421, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 23480\n",
+ "Discriminator Loss: tf.Tensor(1.0035363, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.6492425, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 23481\n",
+ "Discriminator Loss: tf.Tensor(0.7195936, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.3960462, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 23482\n",
+ "Discriminator Loss: tf.Tensor(0.89323854, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.4656639, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 23483\n",
+ "Discriminator Loss: tf.Tensor(0.8393473, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.2726324, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 23484\n",
+ "Discriminator Loss: tf.Tensor(0.7785157, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.3548216, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 23485\n",
+ "Discriminator Loss: tf.Tensor(0.6599498, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.41812906, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 23486\n",
+ "Discriminator Loss: tf.Tensor(0.87155616, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.9985784, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 23487\n",
+ "Discriminator Loss: tf.Tensor(1.018169, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.40611824, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 23488\n",
+ "Discriminator Loss: tf.Tensor(0.88260245, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.0565888, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 23489\n",
+ "Discriminator Loss: tf.Tensor(0.58409274, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.45537707, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 23490\n",
+ "Discriminator Loss: tf.Tensor(1.1462111, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.035104, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 23491\n",
+ "Discriminator Loss: tf.Tensor(0.8304048, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.24198663, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 23492\n",
+ "Discriminator Loss: tf.Tensor(1.3485563, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.5105152, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 23493\n",
+ "Discriminator Loss: tf.Tensor(1.1983423, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.054417565, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 23494\n",
+ "Discriminator Loss: tf.Tensor(0.84348774, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.1531221, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 23495\n",
+ "Discriminator Loss: tf.Tensor(0.36219123, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.86976403, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 23496\n",
+ "Discriminator Loss: tf.Tensor(0.64719737, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.6560615, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 23497\n",
+ "Discriminator Loss: tf.Tensor(0.51592386, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.7790015, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 23498\n",
+ "Discriminator Loss: tf.Tensor(0.7288134, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.7960609, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 23499\n",
+ "Discriminator Loss: tf.Tensor(0.92659366, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.36327243, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 23500\n",
+ "Discriminator Loss: tf.Tensor(1.0974587, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.7763934, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 23501\n",
+ "Discriminator Loss: tf.Tensor(0.4269756, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.680608, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 23502\n",
+ "Discriminator Loss: tf.Tensor(1.2562157, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.0845636, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 23503\n",
+ "Discriminator Loss: tf.Tensor(0.5960621, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.020795, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 23504\n",
+ "Discriminator Loss: tf.Tensor(0.80240667, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.45002183, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 23505\n",
+ "Discriminator Loss: tf.Tensor(1.1938328, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.3823962, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 23506\n",
+ "Discriminator Loss: tf.Tensor(0.41570982, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.80319405, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 23507\n",
+ "Discriminator Loss: tf.Tensor(0.6003163, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.5157409, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 23508\n",
+ "Discriminator Loss: tf.Tensor(1.301889, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.1709948, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 23509\n",
+ "Discriminator Loss: tf.Tensor(1.0233737, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.5988001, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 23510\n",
+ "Discriminator Loss: tf.Tensor(0.9342368, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.28251922, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 23511\n",
+ "Discriminator Loss: tf.Tensor(0.64657974, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.4051208, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 23512\n",
+ "Discriminator Loss: tf.Tensor(0.6886141, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.38663766, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 23513\n",
+ "Discriminator Loss: tf.Tensor(0.95949376, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.8610897, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 23514\n",
+ "Discriminator Loss: tf.Tensor(1.0075388, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.097332634, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 23515\n",
+ "Discriminator Loss: tf.Tensor(1.2130374, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.4694752, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 23516\n",
+ "Discriminator Loss: tf.Tensor(1.3742251, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.028781721, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 23517\n",
+ "Discriminator Loss: tf.Tensor(0.52744484, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.8539768, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 23518\n",
+ "Discriminator Loss: tf.Tensor(0.596866, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.90045375, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 23519\n",
+ "Discriminator Loss: tf.Tensor(0.84909666, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.9764387, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 23520\n",
+ "Discriminator Loss: tf.Tensor(0.68758917, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.8054824, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 23521\n",
+ "Discriminator Loss: tf.Tensor(0.8414571, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.9655724, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 23522\n",
+ "Discriminator Loss: tf.Tensor(1.0244892, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.06456206, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 23523\n",
+ "Discriminator Loss: tf.Tensor(0.90527153, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.2159778, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 23524\n",
+ "Discriminator Loss: tf.Tensor(0.38024592, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.081624, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 23525\n",
+ "Discriminator Loss: tf.Tensor(0.37180093, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.3290024, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 23526\n",
+ "Discriminator Loss: tf.Tensor(0.35976422, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.788328, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 23527\n",
+ "Discriminator Loss: tf.Tensor(1.6967311, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.093752, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 23528\n",
+ "Discriminator Loss: tf.Tensor(0.8322692, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.32226008, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 23529\n",
+ "Discriminator Loss: tf.Tensor(0.72424585, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.2383002, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 23530\n",
+ "Discriminator Loss: tf.Tensor(0.80786294, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.6186071, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 23531\n",
+ "Discriminator Loss: tf.Tensor(0.82975996, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.5354565, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 23532\n",
+ "Discriminator Loss: tf.Tensor(0.34098166, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.8428881, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 23533\n",
+ "Discriminator Loss: tf.Tensor(1.5498626, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.9381967, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 23534\n",
+ "Discriminator Loss: tf.Tensor(0.7657552, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.46159005, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 23535\n",
+ "Discriminator Loss: tf.Tensor(1.0590094, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.7061801, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 23536\n",
+ "Discriminator Loss: tf.Tensor(0.7869002, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.32094312, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 23537\n",
+ "Discriminator Loss: tf.Tensor(1.0256532, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.4384302, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 23538\n",
+ "Discriminator Loss: tf.Tensor(0.6997932, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.5827875, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 23539\n",
+ "Discriminator Loss: tf.Tensor(0.79823565, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.5005599, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 23540\n",
+ "Discriminator Loss: tf.Tensor(0.77840465, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.36966148, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 23541\n",
+ "Discriminator Loss: tf.Tensor(0.9348365, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.554923, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 23542\n",
+ "Discriminator Loss: tf.Tensor(0.7975508, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.29606327, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 23543\n",
+ "Discriminator Loss: tf.Tensor(1.1334999, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.0784576, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 23544\n",
+ "Discriminator Loss: tf.Tensor(0.48571754, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.9214864, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 23545\n",
+ "Discriminator Loss: tf.Tensor(0.59489274, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.831734, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 23546\n",
+ "Discriminator Loss: tf.Tensor(1.0802548, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.4167305, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 23547\n",
+ "Discriminator Loss: tf.Tensor(0.8799239, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.3089411, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 23548\n",
+ "Discriminator Loss: tf.Tensor(0.6579544, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.3204445, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 23549\n",
+ "Discriminator Loss: tf.Tensor(0.5859085, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.90570784, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 23550\n",
+ "Discriminator Loss: tf.Tensor(0.7756003, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.3647728, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 23551\n",
+ "Discriminator Loss: tf.Tensor(0.5216653, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.69621783, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 23552\n",
+ "Discriminator Loss: tf.Tensor(0.9480183, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.9161562, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 23553\n",
+ "Discriminator Loss: tf.Tensor(1.215648, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.090217374, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 23554\n",
+ "Discriminator Loss: tf.Tensor(0.81241274, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.5264932, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 23555\n",
+ "Discriminator Loss: tf.Tensor(1.0716311, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.043144267, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 23556\n",
+ "Discriminator Loss: tf.Tensor(0.81957155, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.6105255, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 23557\n",
+ "Discriminator Loss: tf.Tensor(0.9051975, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.3226833, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 23558\n",
+ "Discriminator Loss: tf.Tensor(1.0936768, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.4328212, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 23559\n",
+ "Discriminator Loss: tf.Tensor(0.62498933, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.5367965, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 23560\n",
+ "Discriminator Loss: tf.Tensor(1.2547531, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.6278744, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 23561\n",
+ "Discriminator Loss: tf.Tensor(0.9696095, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.08466172, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 23562\n",
+ "Discriminator Loss: tf.Tensor(1.0642054, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.4978346, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 23563\n",
+ "Discriminator Loss: tf.Tensor(0.7350609, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.37855685, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 23564\n",
+ "Discriminator Loss: tf.Tensor(0.5294982, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.0780455, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 23565\n",
+ "Discriminator Loss: tf.Tensor(0.8603593, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.6993248, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 23566\n",
+ "Discriminator Loss: tf.Tensor(0.7339663, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.6722836, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 23567\n",
+ "Discriminator Loss: tf.Tensor(0.56031424, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.6868946, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 23568\n",
+ "Discriminator Loss: tf.Tensor(1.3213532, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.0188584, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 23569\n",
+ "Discriminator Loss: tf.Tensor(0.8841948, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.3389226, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 23570\n",
+ "Discriminator Loss: tf.Tensor(0.4531888, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.1441637, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 23571\n",
+ "Discriminator Loss: tf.Tensor(0.7584413, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.0047208, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 23572\n",
+ "Discriminator Loss: tf.Tensor(0.86513364, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.9108346, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 23573\n",
+ "Discriminator Loss: tf.Tensor(0.54198825, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.3928065, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 23574\n",
+ "Discriminator Loss: tf.Tensor(0.7223742, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.7856315, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 23575\n",
+ "Discriminator Loss: tf.Tensor(1.0305301, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.6610175, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 23576\n",
+ "Discriminator Loss: tf.Tensor(1.5004951, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.32517216, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 23577\n",
+ "Discriminator Loss: tf.Tensor(1.0509648, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.4083377, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 23578\n",
+ "Discriminator Loss: tf.Tensor(0.98905975, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.25837734, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 23579\n",
+ "Discriminator Loss: tf.Tensor(0.6945096, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.1071366, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 23580\n",
+ "Discriminator Loss: tf.Tensor(0.44434458, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.73138636, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 23581\n",
+ "Discriminator Loss: tf.Tensor(1.5089455, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.9027791, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 23582\n",
+ "Discriminator Loss: tf.Tensor(0.7073661, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.4641339, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 23583\n",
+ "Discriminator Loss: tf.Tensor(0.98111594, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.1925176, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 23584\n",
+ "Discriminator Loss: tf.Tensor(0.8014062, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.34748414, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 23585\n",
+ "Discriminator Loss: tf.Tensor(1.0556456, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.2932756, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 23586\n",
+ "Discriminator Loss: tf.Tensor(0.6726374, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.6150841, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 23587\n",
+ "Discriminator Loss: tf.Tensor(0.8039724, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.5641008, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 23588\n",
+ "Discriminator Loss: tf.Tensor(0.6499317, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.8583312, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 23589\n",
+ "Discriminator Loss: tf.Tensor(1.019812, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.39325514, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 23590\n",
+ "Discriminator Loss: tf.Tensor(0.59594667, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.5762523, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 23591\n",
+ "Discriminator Loss: tf.Tensor(0.35512048, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.7864516, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 23592\n",
+ "Discriminator Loss: tf.Tensor(0.8124148, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.6807547, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 23593\n",
+ "Discriminator Loss: tf.Tensor(0.6799936, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.5447929, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 23594\n",
+ "Discriminator Loss: tf.Tensor(0.8804625, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.2573775, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 23595\n",
+ "Discriminator Loss: tf.Tensor(0.7142227, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.86067104, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 23596\n",
+ "Discriminator Loss: tf.Tensor(1.3896611, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.9894791, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 23597\n",
+ "Discriminator Loss: tf.Tensor(1.3438567, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.15675823, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 23598\n",
+ "Discriminator Loss: tf.Tensor(1.1579258, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.95256186, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 23599\n",
+ "Discriminator Loss: tf.Tensor(0.6407152, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.5862821, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 23600\n",
+ "Discriminator Loss: tf.Tensor(1.2209868, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.6101007, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 23601\n",
+ "Discriminator Loss: tf.Tensor(0.8839871, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.252853, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 23602\n",
+ "Discriminator Loss: tf.Tensor(0.8347346, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.1852616, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 23603\n",
+ "Discriminator Loss: tf.Tensor(0.54832876, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.68567926, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 23604\n",
+ "Discriminator Loss: tf.Tensor(0.9463706, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.8245872, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 23605\n",
+ "Discriminator Loss: tf.Tensor(0.7026398, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.3805895, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 23606\n",
+ "Discriminator Loss: tf.Tensor(0.7951541, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.4783769, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 23607\n",
+ "Discriminator Loss: tf.Tensor(0.6144564, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.63424844, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 23608\n",
+ "Discriminator Loss: tf.Tensor(1.2996439, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.157724, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 23609\n",
+ "Discriminator Loss: tf.Tensor(0.86367077, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.31981236, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 23610\n",
+ "Discriminator Loss: tf.Tensor(0.37019634, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.172613, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 23611\n",
+ "Discriminator Loss: tf.Tensor(0.7548219, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.59328294, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 23612\n",
+ "Discriminator Loss: tf.Tensor(1.4347571, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.7117141, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 23613\n",
+ "Discriminator Loss: tf.Tensor(1.0240993, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.05082068, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 23614\n",
+ "Discriminator Loss: tf.Tensor(0.891016, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.1973985, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 23615\n",
+ "Discriminator Loss: tf.Tensor(1.2377553, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.058784958, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 23616\n",
+ "Discriminator Loss: tf.Tensor(0.64618874, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.243919, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 23617\n",
+ "Discriminator Loss: tf.Tensor(0.69381166, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.1345956, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 23618\n",
+ "Discriminator Loss: tf.Tensor(0.5654909, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.4873735, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 23619\n",
+ "Discriminator Loss: tf.Tensor(1.4616334, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.937306, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 23620\n",
+ "Discriminator Loss: tf.Tensor(1.1206048, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.20486003, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 23621\n",
+ "Discriminator Loss: tf.Tensor(0.6203037, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.0976411, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 23622\n",
+ "Discriminator Loss: tf.Tensor(0.72714275, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.36489725, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 23623\n",
+ "Discriminator Loss: tf.Tensor(1.1412716, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.0219262, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 23624\n",
+ "Discriminator Loss: tf.Tensor(0.89296293, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.2932786, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 23625\n",
+ "Discriminator Loss: tf.Tensor(0.9379205, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.4411201, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 23626\n",
+ "Discriminator Loss: tf.Tensor(0.4637698, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.6401103, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 23627\n",
+ "Discriminator Loss: tf.Tensor(0.99108034, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.9807744, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 23628\n",
+ "Discriminator Loss: tf.Tensor(0.6081858, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.7801023, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 23629\n",
+ "Discriminator Loss: tf.Tensor(0.6064445, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.3010682, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 23630\n",
+ "Discriminator Loss: tf.Tensor(0.6944669, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.40458122, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 23631\n",
+ "Discriminator Loss: tf.Tensor(1.1264855, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.7122568, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 23632\n",
+ "Discriminator Loss: tf.Tensor(0.8171459, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.41167715, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 23633\n",
+ "Discriminator Loss: tf.Tensor(1.2236463, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.2242374, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 23634\n",
+ "Discriminator Loss: tf.Tensor(0.8640839, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.19946022, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 23635\n",
+ "Discriminator Loss: tf.Tensor(0.9324025, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.6776186, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 23636\n",
+ "Discriminator Loss: tf.Tensor(1.0148692, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.25760737, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 23637\n",
+ "Discriminator Loss: tf.Tensor(0.6392503, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.97767043, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 23638\n",
+ "Discriminator Loss: tf.Tensor(0.69096726, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.318303, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 23639\n",
+ "Discriminator Loss: tf.Tensor(0.39574355, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.66084266, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 23640\n",
+ "Discriminator Loss: tf.Tensor(1.3024372, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.292783, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 23641\n",
+ "Discriminator Loss: tf.Tensor(0.7088596, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.5165259, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 23642\n",
+ "Discriminator Loss: tf.Tensor(0.6862083, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.4042387, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 23643\n",
+ "Discriminator Loss: tf.Tensor(0.75057536, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.3347812, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 23644\n",
+ "Discriminator Loss: tf.Tensor(0.563109, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.7627198, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 23645\n",
+ "Discriminator Loss: tf.Tensor(0.40437144, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.2217139, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 23646\n",
+ "Discriminator Loss: tf.Tensor(0.6282296, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.6907508, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 23647\n",
+ "Discriminator Loss: tf.Tensor(1.0353242, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.856666, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 23648\n",
+ "Discriminator Loss: tf.Tensor(0.49908364, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.8465028, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 23649\n",
+ "Discriminator Loss: tf.Tensor(0.87009287, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.9602833, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 23650\n",
+ "Discriminator Loss: tf.Tensor(0.77543336, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.5543721, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 23651\n",
+ "Discriminator Loss: tf.Tensor(0.7078582, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.211377, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 23652\n",
+ "Discriminator Loss: tf.Tensor(0.93773, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.96694946, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 23653\n",
+ "Discriminator Loss: tf.Tensor(0.43795684, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.1635503, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 23654\n",
+ "Discriminator Loss: tf.Tensor(0.7191055, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.87881833, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 23655\n",
+ "Discriminator Loss: tf.Tensor(0.9121268, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.2749094, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 23656\n",
+ "Discriminator Loss: tf.Tensor(1.060323, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.16723125, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 23657\n",
+ "Discriminator Loss: tf.Tensor(1.2642237, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.7915558, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 23658\n",
+ "Discriminator Loss: tf.Tensor(1.145445, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.19433467, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 23659\n",
+ "Discriminator Loss: tf.Tensor(0.8230102, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.0346023, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 23660\n",
+ "Discriminator Loss: tf.Tensor(0.57602775, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.5541869, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 23661\n",
+ "Discriminator Loss: tf.Tensor(1.5978932, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.0176768, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 23662\n",
+ "Discriminator Loss: tf.Tensor(0.74642676, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.41450366, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 23663\n",
+ "Discriminator Loss: tf.Tensor(0.9511385, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.171498, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 23664\n",
+ "Discriminator Loss: tf.Tensor(0.5400525, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.1514409, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 23665\n",
+ "Discriminator Loss: tf.Tensor(0.46293563, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.7561908, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 23666\n",
+ "Discriminator Loss: tf.Tensor(1.3618104, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.8299646, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 23667\n",
+ "Discriminator Loss: tf.Tensor(0.82681644, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.23318154, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 23668\n",
+ "Discriminator Loss: tf.Tensor(0.9938472, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.494915, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 23669\n",
+ "Discriminator Loss: tf.Tensor(0.8398315, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.44811046, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 23670\n",
+ "Discriminator Loss: tf.Tensor(0.7953944, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.5005909, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 23671\n",
+ "Discriminator Loss: tf.Tensor(0.72968376, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.34736192, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 23672\n",
+ "Discriminator Loss: tf.Tensor(0.63901025, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.728762, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 23673\n",
+ "Discriminator Loss: tf.Tensor(1.0966783, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.20970017, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 23674\n",
+ "Discriminator Loss: tf.Tensor(1.0226848, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.2589446, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 23675\n",
+ "Discriminator Loss: tf.Tensor(0.8805397, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.5503493, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 23676\n",
+ "Discriminator Loss: tf.Tensor(0.8057636, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.2582482, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 23677\n",
+ "Discriminator Loss: tf.Tensor(0.8569777, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.4090782, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 23678\n",
+ "Discriminator Loss: tf.Tensor(1.3945417, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.2129538, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 23679\n",
+ "Discriminator Loss: tf.Tensor(0.66554976, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.44227076, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 23680\n",
+ "Discriminator Loss: tf.Tensor(0.5513717, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.2077757, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 23681\n",
+ "Discriminator Loss: tf.Tensor(0.55906737, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.8645374, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 23682\n",
+ "Discriminator Loss: tf.Tensor(0.9384096, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.7853384, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 23683\n",
+ "Discriminator Loss: tf.Tensor(0.9276499, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.50040555, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 23684\n",
+ "Discriminator Loss: tf.Tensor(0.65555376, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.4501224, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 23685\n",
+ "Discriminator Loss: tf.Tensor(0.76402444, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.36758026, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 23686\n",
+ "Discriminator Loss: tf.Tensor(0.9619272, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.7785681, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 23687\n",
+ "Discriminator Loss: tf.Tensor(0.9657795, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.1570289, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 23688\n",
+ "Discriminator Loss: tf.Tensor(0.88543725, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.3628111, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 23689\n",
+ "Discriminator Loss: tf.Tensor(0.64274913, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.53342795, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 23690\n",
+ "Discriminator Loss: tf.Tensor(1.0734974, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.6873056, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 23691\n",
+ "Discriminator Loss: tf.Tensor(0.97829556, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.2404021, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 23692\n",
+ "Discriminator Loss: tf.Tensor(0.8651444, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.385869, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 23693\n",
+ "Discriminator Loss: tf.Tensor(0.38929713, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.7828901, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 23694\n",
+ "Discriminator Loss: tf.Tensor(1.0569512, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.5046371, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 23695\n",
+ "Discriminator Loss: tf.Tensor(0.8437887, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.34135744, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 23696\n",
+ "Discriminator Loss: tf.Tensor(0.45088813, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.1319815, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 23697\n",
+ "Discriminator Loss: tf.Tensor(0.76867175, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.59626603, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 23698\n",
+ "Discriminator Loss: tf.Tensor(1.0450032, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.6719618, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 23699\n",
+ "Discriminator Loss: tf.Tensor(0.75621694, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.5171954, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 23700\n",
+ "Discriminator Loss: tf.Tensor(1.3742683, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.6039816, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 23701\n",
+ "Discriminator Loss: tf.Tensor(0.6664694, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.62400514, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 23702\n",
+ "Discriminator Loss: tf.Tensor(0.72666776, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.5242743, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 23703\n",
+ "Discriminator Loss: tf.Tensor(0.48736593, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.7033456, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 23704\n",
+ "Discriminator Loss: tf.Tensor(0.96373475, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.3390628, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 23705\n",
+ "Discriminator Loss: tf.Tensor(0.50756884, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.53672, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 23706\n",
+ "Discriminator Loss: tf.Tensor(1.3740265, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.9170079, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 23707\n",
+ "Discriminator Loss: tf.Tensor(0.44599208, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.6946909, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 23708\n",
+ "Discriminator Loss: tf.Tensor(1.1653733, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.8452972, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 23709\n",
+ "Discriminator Loss: tf.Tensor(0.67510164, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.5722593, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 23710\n",
+ "Discriminator Loss: tf.Tensor(0.91659963, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.6572639, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 23711\n",
+ "Discriminator Loss: tf.Tensor(1.0650171, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.04556577, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 23712\n",
+ "Discriminator Loss: tf.Tensor(0.962595, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.6395397, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 23713\n",
+ "Discriminator Loss: tf.Tensor(0.5408465, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.5020159, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 23714\n",
+ "Discriminator Loss: tf.Tensor(0.5577167, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.6494269, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 23715\n",
+ "Discriminator Loss: tf.Tensor(0.7852874, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.47349402, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 23716\n",
+ "Discriminator Loss: tf.Tensor(0.86801374, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.2689197, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 23717\n",
+ "Discriminator Loss: tf.Tensor(0.70240057, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.51662964, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 23718\n",
+ "Discriminator Loss: tf.Tensor(0.7482196, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.7996966, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 23719\n",
+ "Discriminator Loss: tf.Tensor(0.8996871, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.3212569, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 23720\n",
+ "Discriminator Loss: tf.Tensor(0.9365974, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.382558, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 23721\n",
+ "Discriminator Loss: tf.Tensor(0.69379514, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.43000937, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 23722\n",
+ "Discriminator Loss: tf.Tensor(0.45220625, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.5502425, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 23723\n",
+ "Discriminator Loss: tf.Tensor(0.7182883, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.7580189, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 23724\n",
+ "Discriminator Loss: tf.Tensor(1.018547, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.7016917, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 23725\n",
+ "Discriminator Loss: tf.Tensor(1.0744761, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.0036277573, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 23726\n",
+ "Discriminator Loss: tf.Tensor(1.219768, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.3270866, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 23727\n",
+ "Discriminator Loss: tf.Tensor(0.842618, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.25704548, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 23728\n",
+ "Discriminator Loss: tf.Tensor(0.7411511, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.3356727, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 23729\n",
+ "Discriminator Loss: tf.Tensor(0.57629097, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.3715006, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 23730\n",
+ "Discriminator Loss: tf.Tensor(0.8408848, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.51042515, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 23731\n",
+ "Discriminator Loss: tf.Tensor(1.2319143, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.7706589, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 23732\n",
+ "Discriminator Loss: tf.Tensor(1.4705333, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.29384097, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 23733\n",
+ "Discriminator Loss: tf.Tensor(0.5871278, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.996104, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 23734\n",
+ "Discriminator Loss: tf.Tensor(0.6700326, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.5685738, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 23735\n",
+ "Discriminator Loss: tf.Tensor(1.3478705, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.15623115, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 23736\n",
+ "Discriminator Loss: tf.Tensor(1.0008268, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.0169157, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 23737\n",
+ "Discriminator Loss: tf.Tensor(0.69039893, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.983578, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 23738\n",
+ "Discriminator Loss: tf.Tensor(0.5886533, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.2623433, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 23739\n",
+ "Discriminator Loss: tf.Tensor(0.8056837, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.7493394, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 23740\n",
+ "Discriminator Loss: tf.Tensor(0.7151092, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.104372, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 23741\n",
+ "Discriminator Loss: tf.Tensor(0.94641525, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.27131248, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 23742\n",
+ "Discriminator Loss: tf.Tensor(1.2822782, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.5554572, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 23743\n",
+ "Discriminator Loss: tf.Tensor(0.41539133, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.76165134, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 23744\n",
+ "Discriminator Loss: tf.Tensor(1.3607817, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.7215167, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 23745\n",
+ "Discriminator Loss: tf.Tensor(0.9087796, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.29778662, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 23746\n",
+ "Discriminator Loss: tf.Tensor(0.49266756, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.1691908, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 23747\n",
+ "Discriminator Loss: tf.Tensor(0.6875656, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.0379847, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 23748\n",
+ "Discriminator Loss: tf.Tensor(0.6530849, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.140902, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 23749\n",
+ "Discriminator Loss: tf.Tensor(0.76378846, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.9609802, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 23750\n",
+ "Discriminator Loss: tf.Tensor(0.5457914, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.0899986, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 23751\n",
+ "Discriminator Loss: tf.Tensor(1.0071232, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.5061211, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 23752\n",
+ "Discriminator Loss: tf.Tensor(1.3618829, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.5231, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 23753\n",
+ "Discriminator Loss: tf.Tensor(1.2786821, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.14484183, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 23754\n",
+ "Discriminator Loss: tf.Tensor(1.2361307, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.5446302, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 23755\n",
+ "Discriminator Loss: tf.Tensor(0.7855167, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.5951194, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 23756\n",
+ "Discriminator Loss: tf.Tensor(0.8873636, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.2355318, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 23757\n",
+ "Discriminator Loss: tf.Tensor(0.64879465, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.816582, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 23758\n",
+ "Discriminator Loss: tf.Tensor(0.9079876, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.2866145, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 23759\n",
+ "Discriminator Loss: tf.Tensor(0.9851497, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.26248464, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 23760\n",
+ "Discriminator Loss: tf.Tensor(2.1446953, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.1112742, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 23761\n",
+ "Discriminator Loss: tf.Tensor(1.0173142, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.33510885, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 23762\n",
+ "Discriminator Loss: tf.Tensor(0.9929874, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.7922806, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 23763\n",
+ "Discriminator Loss: tf.Tensor(0.67358875, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.5083974, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 23764\n",
+ "Discriminator Loss: tf.Tensor(0.9042249, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.8702396, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 23765\n",
+ "Discriminator Loss: tf.Tensor(0.8554974, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.3412809, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 23766\n",
+ "Discriminator Loss: tf.Tensor(1.0972906, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.2319722, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 23767\n",
+ "Discriminator Loss: tf.Tensor(0.39492932, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.77147895, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 23768\n",
+ "Discriminator Loss: tf.Tensor(0.8447356, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.4164815, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 23769\n",
+ "Discriminator Loss: tf.Tensor(0.5408929, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.80137354, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 23770\n",
+ "Discriminator Loss: tf.Tensor(1.022167, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.5266104, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 23771\n",
+ "Discriminator Loss: tf.Tensor(0.62346405, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.54152995, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 23772\n",
+ "Discriminator Loss: tf.Tensor(0.8311813, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.1162872, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 23773\n",
+ "Discriminator Loss: tf.Tensor(0.7589537, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.8570528, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 23774\n",
+ "Discriminator Loss: tf.Tensor(0.63433564, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.3218967, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 23775\n",
+ "Discriminator Loss: tf.Tensor(0.49098107, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.77921534, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 23776\n",
+ "Discriminator Loss: tf.Tensor(1.0269128, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.4769164, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 23777\n",
+ "Discriminator Loss: tf.Tensor(1.0422521, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.112246625, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 23778\n",
+ "Discriminator Loss: tf.Tensor(1.465559, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.2815105, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 23779\n",
+ "Discriminator Loss: tf.Tensor(0.7876604, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.50211686, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 23780\n",
+ "Discriminator Loss: tf.Tensor(0.9611859, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.2791067, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 23781\n",
+ "Discriminator Loss: tf.Tensor(0.89042616, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.18685128, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 23782\n",
+ "Discriminator Loss: tf.Tensor(1.0811663, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.5830168, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 23783\n",
+ "Discriminator Loss: tf.Tensor(1.1404234, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.019199664, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 23784\n",
+ "Discriminator Loss: tf.Tensor(1.0571651, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.3455843, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 23785\n",
+ "Discriminator Loss: tf.Tensor(0.84138584, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.26885805, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 23786\n",
+ "Discriminator Loss: tf.Tensor(0.8396767, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.1427473, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 23787\n",
+ "Discriminator Loss: tf.Tensor(0.8459005, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.6146841, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 23788\n",
+ "Discriminator Loss: tf.Tensor(0.68529296, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.3602918, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 23789\n",
+ "Discriminator Loss: tf.Tensor(0.9417997, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.080519445, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 23790\n",
+ "Discriminator Loss: tf.Tensor(1.0169549, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.431963, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 23791\n",
+ "Discriminator Loss: tf.Tensor(0.85741186, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.21411006, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 23792\n",
+ "Discriminator Loss: tf.Tensor(0.638862, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.3196217, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 23793\n",
+ "Discriminator Loss: tf.Tensor(0.33575088, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.1086162, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 23794\n",
+ "Discriminator Loss: tf.Tensor(0.7356461, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.3415514, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 23795\n",
+ "Discriminator Loss: tf.Tensor(0.85650045, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.031569, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 23796\n",
+ "Discriminator Loss: tf.Tensor(0.7896207, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.0554892, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 23797\n",
+ "Discriminator Loss: tf.Tensor(0.43745786, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.9890094, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 23798\n",
+ "Discriminator Loss: tf.Tensor(0.99833584, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.0085335, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 23799\n",
+ "Discriminator Loss: tf.Tensor(0.9647068, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.2776573, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 23800\n",
+ "Discriminator Loss: tf.Tensor(0.8051487, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.5661621, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 23801\n",
+ "Discriminator Loss: tf.Tensor(0.835695, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.7393966, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 23802\n",
+ "Discriminator Loss: tf.Tensor(0.8075443, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.3444395, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 23803\n",
+ "Discriminator Loss: tf.Tensor(1.1787276, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.06376233, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 23804\n",
+ "Discriminator Loss: tf.Tensor(1.1981604, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.0570707, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 23805\n",
+ "Discriminator Loss: tf.Tensor(0.5780972, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.5558899, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 23806\n",
+ "Discriminator Loss: tf.Tensor(1.301241, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.8830452, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 23807\n",
+ "Discriminator Loss: tf.Tensor(0.64610165, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.5217279, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 23808\n",
+ "Discriminator Loss: tf.Tensor(0.53684425, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.3563824, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 23809\n",
+ "Discriminator Loss: tf.Tensor(0.81518954, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.3087598, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 23810\n",
+ "Discriminator Loss: tf.Tensor(1.0028883, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.7178949, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 23811\n",
+ "Discriminator Loss: tf.Tensor(0.8967484, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.54197806, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 23812\n",
+ "Discriminator Loss: tf.Tensor(0.3238957, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.1579953, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 23813\n",
+ "Discriminator Loss: tf.Tensor(0.82295096, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.1530334, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 23814\n",
+ "Discriminator Loss: tf.Tensor(0.88616866, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.36973152, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 23815\n",
+ "Discriminator Loss: tf.Tensor(1.4011083, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.76516, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 23816\n",
+ "Discriminator Loss: tf.Tensor(1.0601315, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.0003712823, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 23817\n",
+ "Discriminator Loss: tf.Tensor(0.77805805, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.2834018, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 23818\n",
+ "Discriminator Loss: tf.Tensor(0.8699876, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.28860822, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 23819\n",
+ "Discriminator Loss: tf.Tensor(0.7100328, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.3718019, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 23820\n",
+ "Discriminator Loss: tf.Tensor(0.43335763, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.76010615, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 23821\n",
+ "Discriminator Loss: tf.Tensor(0.91213685, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.347325, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 23822\n",
+ "Discriminator Loss: tf.Tensor(0.9836024, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.57361156, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 23823\n",
+ "Discriminator Loss: tf.Tensor(0.4631461, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.3884411, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 23824\n",
+ "Discriminator Loss: tf.Tensor(0.80728096, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.6054172, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 23825\n",
+ "Discriminator Loss: tf.Tensor(1.6118224, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.2854497, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 23826\n",
+ "Discriminator Loss: tf.Tensor(0.90424657, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.27352372, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 23827\n",
+ "Discriminator Loss: tf.Tensor(0.92792344, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.3766533, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 23828\n",
+ "Discriminator Loss: tf.Tensor(1.0489068, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.026797773, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 23829\n",
+ "Discriminator Loss: tf.Tensor(0.9967017, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.2108015, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 23830\n",
+ "Discriminator Loss: tf.Tensor(1.0635183, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.03890572, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 23831\n",
+ "Discriminator Loss: tf.Tensor(0.95902944, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.1718792, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 23832\n",
+ "Discriminator Loss: tf.Tensor(0.8875636, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.32021713, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 23833\n",
+ "Discriminator Loss: tf.Tensor(1.2934664, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.6439689, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 23834\n",
+ "Discriminator Loss: tf.Tensor(0.6145604, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.4971017, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 23835\n",
+ "Discriminator Loss: tf.Tensor(0.7371735, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.2702887, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 23836\n",
+ "Discriminator Loss: tf.Tensor(0.81638056, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.3270904, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 23837\n",
+ "Discriminator Loss: tf.Tensor(0.8369734, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.4599243, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 23838\n",
+ "Discriminator Loss: tf.Tensor(0.78923476, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.70799065, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 23839\n",
+ "Discriminator Loss: tf.Tensor(1.1210887, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.86441255, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 23840\n",
+ "Discriminator Loss: tf.Tensor(0.4912104, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.3901472, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 23841\n",
+ "Discriminator Loss: tf.Tensor(0.78248566, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.41937506, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 23842\n",
+ "Discriminator Loss: tf.Tensor(1.0809245, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.9716445, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 23843\n",
+ "Discriminator Loss: tf.Tensor(0.8089852, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.2921131, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 23844\n",
+ "Discriminator Loss: tf.Tensor(0.9380594, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.0775323, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 23845\n",
+ "Discriminator Loss: tf.Tensor(0.34015214, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.94217986, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 23846\n",
+ "Discriminator Loss: tf.Tensor(0.5927572, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.87970495, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 23847\n",
+ "Discriminator Loss: tf.Tensor(0.7231374, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.322178, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 23848\n",
+ "Discriminator Loss: tf.Tensor(0.9781096, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.6528932, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 23849\n",
+ "Discriminator Loss: tf.Tensor(0.70108426, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.82706326, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 23850\n",
+ "Discriminator Loss: tf.Tensor(0.58696926, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.2569445, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 23851\n",
+ "Discriminator Loss: tf.Tensor(0.9340749, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.42935768, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 23852\n",
+ "Discriminator Loss: tf.Tensor(0.966105, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.6873494, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 23853\n",
+ "Discriminator Loss: tf.Tensor(0.7608662, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.43996286, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 23854\n",
+ "Discriminator Loss: tf.Tensor(1.3429861, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.5857311, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 23855\n",
+ "Discriminator Loss: tf.Tensor(0.9726948, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.2695445, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 23856\n",
+ "Discriminator Loss: tf.Tensor(1.1231786, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.5899285, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 23857\n",
+ "Discriminator Loss: tf.Tensor(1.0128545, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.16172676, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 23858\n",
+ "Discriminator Loss: tf.Tensor(1.0509943, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.0282707, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 23859\n",
+ "Discriminator Loss: tf.Tensor(0.5312832, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.8130698, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 23860\n",
+ "Discriminator Loss: tf.Tensor(0.9947006, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.3098295, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 23861\n",
+ "Discriminator Loss: tf.Tensor(0.55854136, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.7072877, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 23862\n",
+ "Discriminator Loss: tf.Tensor(1.4102197, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.3355277, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 23863\n",
+ "Discriminator Loss: tf.Tensor(0.98770326, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.24400163, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 23864\n",
+ "Discriminator Loss: tf.Tensor(0.42331237, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.1041923, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 23865\n",
+ "Discriminator Loss: tf.Tensor(0.79375106, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.1967697, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 23866\n",
+ "Discriminator Loss: tf.Tensor(0.5721089, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.80295736, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 23867\n",
+ "Discriminator Loss: tf.Tensor(0.8354231, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.3613402, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 23868\n",
+ "Discriminator Loss: tf.Tensor(0.23201843, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.2270387, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 23869\n",
+ "Discriminator Loss: tf.Tensor(0.8807476, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.078173, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 23870\n",
+ "Discriminator Loss: tf.Tensor(0.6921411, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.87799376, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 23871\n",
+ "Discriminator Loss: tf.Tensor(0.540879, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.2447166, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 23872\n",
+ "Discriminator Loss: tf.Tensor(0.72583723, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.6707063, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 23873\n",
+ "Discriminator Loss: tf.Tensor(1.6052966, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.6989098, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 23874\n",
+ "Discriminator Loss: tf.Tensor(1.0214165, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.16268928, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 23875\n",
+ "Discriminator Loss: tf.Tensor(0.93208635, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.2227148, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 23876\n",
+ "Discriminator Loss: tf.Tensor(0.7562654, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.30344972, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 23877\n",
+ "Discriminator Loss: tf.Tensor(1.1047986, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.0742676, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 23878\n",
+ "Discriminator Loss: tf.Tensor(0.72973824, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.69141215, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 23879\n",
+ "Discriminator Loss: tf.Tensor(1.0645785, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.5612383, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 23880\n",
+ "Discriminator Loss: tf.Tensor(0.75162554, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.43620026, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 23881\n",
+ "Discriminator Loss: tf.Tensor(1.2335374, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.6092237, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 23882\n",
+ "Discriminator Loss: tf.Tensor(0.66998875, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.5315203, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 23883\n",
+ "Discriminator Loss: tf.Tensor(0.6120488, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.3099986, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 23884\n",
+ "Discriminator Loss: tf.Tensor(0.9339782, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.32510915, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 23885\n",
+ "Discriminator Loss: tf.Tensor(1.0375301, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.4781398, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 23886\n",
+ "Discriminator Loss: tf.Tensor(0.9973048, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.12265297, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 23887\n",
+ "Discriminator Loss: tf.Tensor(0.758083, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.6136225, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 23888\n",
+ "Discriminator Loss: tf.Tensor(0.8055284, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.31261224, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 23889\n",
+ "Discriminator Loss: tf.Tensor(0.6029628, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.6995119, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 23890\n",
+ "Discriminator Loss: tf.Tensor(0.8277069, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.28566706, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 23891\n",
+ "Discriminator Loss: tf.Tensor(0.8636375, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.7093583, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 23892\n",
+ "Discriminator Loss: tf.Tensor(0.43721333, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.70059776, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 23893\n",
+ "Discriminator Loss: tf.Tensor(0.75451905, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.6842184, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 23894\n",
+ "Discriminator Loss: tf.Tensor(0.8322848, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.3614149, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 23895\n",
+ "Discriminator Loss: tf.Tensor(1.1461186, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.5054916, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 23896\n",
+ "Discriminator Loss: tf.Tensor(0.28710687, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.9663572, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 23897\n",
+ "Discriminator Loss: tf.Tensor(0.9503543, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.2353729, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 23898\n",
+ "Discriminator Loss: tf.Tensor(0.91929525, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.3211611, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 23899\n",
+ "Discriminator Loss: tf.Tensor(0.64199406, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.22535, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 23900\n",
+ "Discriminator Loss: tf.Tensor(0.786639, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.6432676, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 23901\n",
+ "Discriminator Loss: tf.Tensor(0.5616014, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.4337667, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 23902\n",
+ "Discriminator Loss: tf.Tensor(0.83859855, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.2541282, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 23903\n",
+ "Discriminator Loss: tf.Tensor(1.0085244, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.7681131, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 23904\n",
+ "Discriminator Loss: tf.Tensor(0.98498446, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.27271762, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 23905\n",
+ "Discriminator Loss: tf.Tensor(0.84352314, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.7363449, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 23906\n",
+ "Discriminator Loss: tf.Tensor(0.75349844, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.571847, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 23907\n",
+ "Discriminator Loss: tf.Tensor(0.7215904, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.2149082, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 23908\n",
+ "Discriminator Loss: tf.Tensor(0.4850943, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.90480804, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 23909\n",
+ "Discriminator Loss: tf.Tensor(0.4088629, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.2296653, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 23910\n",
+ "Discriminator Loss: tf.Tensor(0.7790686, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.4224223, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 23911\n",
+ "Discriminator Loss: tf.Tensor(1.0587065, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.03977183, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 23912\n",
+ "Discriminator Loss: tf.Tensor(0.38957638, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.5752898, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 23913\n",
+ "Discriminator Loss: tf.Tensor(1.1013367, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.6888714, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 23914\n",
+ "Discriminator Loss: tf.Tensor(1.0849407, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.7394136, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 23915\n",
+ "Discriminator Loss: tf.Tensor(0.8607886, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.31473494, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 23916\n",
+ "Discriminator Loss: tf.Tensor(0.71123976, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.2210737, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 23917\n",
+ "Discriminator Loss: tf.Tensor(1.1547084, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.0801997, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 23918\n",
+ "Discriminator Loss: tf.Tensor(0.71801746, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.2285564, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 23919\n",
+ "Discriminator Loss: tf.Tensor(0.6871953, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.56095815, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 23920\n",
+ "Discriminator Loss: tf.Tensor(0.80378205, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.7483892, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 23921\n",
+ "Discriminator Loss: tf.Tensor(0.73708165, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.5577522, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 23922\n",
+ "Discriminator Loss: tf.Tensor(0.57920873, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.4748445, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 23923\n",
+ "Discriminator Loss: tf.Tensor(0.80944693, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.36027896, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 23924\n",
+ "Discriminator Loss: tf.Tensor(1.1557659, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.1042116, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 23925\n",
+ "Discriminator Loss: tf.Tensor(0.92592216, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.3239089, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 23926\n",
+ "Discriminator Loss: tf.Tensor(1.3585049, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.3778242, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 23927\n",
+ "Discriminator Loss: tf.Tensor(1.0230016, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.22486441, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 23928\n",
+ "Discriminator Loss: tf.Tensor(1.4037273, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.373778, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 23929\n",
+ "Discriminator Loss: tf.Tensor(0.7765804, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.3255889, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 23930\n",
+ "Discriminator Loss: tf.Tensor(0.68859494, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.2572078, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 23931\n",
+ "Discriminator Loss: tf.Tensor(0.5502568, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.6557133, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 23932\n",
+ "Discriminator Loss: tf.Tensor(1.6310138, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.146275, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 23933\n",
+ "Discriminator Loss: tf.Tensor(0.6718351, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.5976329, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 23934\n",
+ "Discriminator Loss: tf.Tensor(0.84747076, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.1593542, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 23935\n",
+ "Discriminator Loss: tf.Tensor(0.7582141, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.47608745, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 23936\n",
+ "Discriminator Loss: tf.Tensor(0.66468966, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.447394, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 23937\n",
+ "Discriminator Loss: tf.Tensor(1.0230945, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.1369574, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 23938\n",
+ "Discriminator Loss: tf.Tensor(1.2324519, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.7851728, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 23939\n",
+ "Discriminator Loss: tf.Tensor(0.82545245, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.2446237, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 23940\n",
+ "Discriminator Loss: tf.Tensor(0.97263914, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.4519728, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 23941\n",
+ "Discriminator Loss: tf.Tensor(0.78373176, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.50598544, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 23942\n",
+ "Discriminator Loss: tf.Tensor(0.26916847, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.5067396, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 23943\n",
+ "Discriminator Loss: tf.Tensor(1.0619633, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.1431056, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 23944\n",
+ "Discriminator Loss: tf.Tensor(1.0352129, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.31454685, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 23945\n",
+ "Discriminator Loss: tf.Tensor(0.9967177, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.4677863, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 23946\n",
+ "Discriminator Loss: tf.Tensor(0.9359273, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.2579676, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 23947\n",
+ "Discriminator Loss: tf.Tensor(1.3663995, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.6863184, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 23948\n",
+ "Discriminator Loss: tf.Tensor(0.739735, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.43416896, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 23949\n",
+ "Discriminator Loss: tf.Tensor(1.2211936, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.1249884, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 23950\n",
+ "Discriminator Loss: tf.Tensor(0.6562587, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.49961963, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 23951\n",
+ "Discriminator Loss: tf.Tensor(0.9459063, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.1877877, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 23952\n",
+ "Discriminator Loss: tf.Tensor(0.9542247, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.6359886, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 23953\n",
+ "Discriminator Loss: tf.Tensor(0.713093, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.0654255, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 23954\n",
+ "Discriminator Loss: tf.Tensor(0.80057096, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.0034417, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 23955\n",
+ "Discriminator Loss: tf.Tensor(0.5843462, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.9407582, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 23956\n",
+ "Discriminator Loss: tf.Tensor(0.67102593, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.7110693, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 23957\n",
+ "Discriminator Loss: tf.Tensor(1.5943819, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.635422, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 23958\n",
+ "Discriminator Loss: tf.Tensor(0.7083516, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.39739728, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 23959\n",
+ "Discriminator Loss: tf.Tensor(0.8401911, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.3073992, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 23960\n",
+ "Discriminator Loss: tf.Tensor(0.49613774, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.95478344, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 23961\n",
+ "Discriminator Loss: tf.Tensor(0.85004646, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.6540637, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 23962\n",
+ "Discriminator Loss: tf.Tensor(0.8446515, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.506539, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 23963\n",
+ "Discriminator Loss: tf.Tensor(0.832168, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.44212493, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 23964\n",
+ "Discriminator Loss: tf.Tensor(1.3112655, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.6798811, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 23965\n",
+ "Discriminator Loss: tf.Tensor(0.92168677, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.10526648, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 23966\n",
+ "Discriminator Loss: tf.Tensor(1.2604344, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.1928915, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 23967\n",
+ "Discriminator Loss: tf.Tensor(0.3652792, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.75412387, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 23968\n",
+ "Discriminator Loss: tf.Tensor(0.35243702, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.4259297, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 23969\n",
+ "Discriminator Loss: tf.Tensor(0.53453183, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.63631725, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 23970\n",
+ "Discriminator Loss: tf.Tensor(1.0025105, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.4081988, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 23971\n",
+ "Discriminator Loss: tf.Tensor(0.947539, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.30331433, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 23972\n",
+ "Discriminator Loss: tf.Tensor(1.026437, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.2776896, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 23973\n",
+ "Discriminator Loss: tf.Tensor(0.82800853, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.4435344, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 23974\n",
+ "Discriminator Loss: tf.Tensor(0.9264968, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.3754431, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 23975\n",
+ "Discriminator Loss: tf.Tensor(0.64687675, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.6872098, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 23976\n",
+ "Discriminator Loss: tf.Tensor(0.59920406, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.4037336, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 23977\n",
+ "Discriminator Loss: tf.Tensor(0.6003057, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.0290025, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 23978\n",
+ "Discriminator Loss: tf.Tensor(0.745653, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.38283098, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 23979\n",
+ "Discriminator Loss: tf.Tensor(1.9275941, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.2426953, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 23980\n",
+ "Discriminator Loss: tf.Tensor(1.0159677, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.30379823, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 23981\n",
+ "Discriminator Loss: tf.Tensor(0.7071167, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.0779952, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 23982\n",
+ "Discriminator Loss: tf.Tensor(0.513014, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.6703089, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 23983\n",
+ "Discriminator Loss: tf.Tensor(1.0268198, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.4935743, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 23984\n",
+ "Discriminator Loss: tf.Tensor(0.8324132, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.3837599, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 23985\n",
+ "Discriminator Loss: tf.Tensor(0.84852266, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.3507847, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 23986\n",
+ "Discriminator Loss: tf.Tensor(0.76890117, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.61653054, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 23987\n",
+ "Discriminator Loss: tf.Tensor(0.8725084, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.2488855, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 23988\n",
+ "Discriminator Loss: tf.Tensor(0.46574014, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.89344907, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 23989\n",
+ "Discriminator Loss: tf.Tensor(1.1255505, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.5061812, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 23990\n",
+ "Discriminator Loss: tf.Tensor(0.78413785, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.31104097, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 23991\n",
+ "Discriminator Loss: tf.Tensor(0.7641675, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.2366718, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 23992\n",
+ "Discriminator Loss: tf.Tensor(1.0734072, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.09507064, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 23993\n",
+ "Discriminator Loss: tf.Tensor(1.0362473, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.3742541, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 23994\n",
+ "Discriminator Loss: tf.Tensor(0.6461061, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.48902014, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 23995\n",
+ "Discriminator Loss: tf.Tensor(1.1803956, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.6061597, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 23996\n",
+ "Discriminator Loss: tf.Tensor(0.9635101, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.18190072, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 23997\n",
+ "Discriminator Loss: tf.Tensor(0.9319025, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.0861508, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 23998\n",
+ "Discriminator Loss: tf.Tensor(0.8844798, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.19300254, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 23999\n",
+ "Discriminator Loss: tf.Tensor(0.43390185, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.3586713, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 24000\n",
+ "Discriminator Loss: tf.Tensor(0.5544127, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.0379609, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 24001\n",
+ "Discriminator Loss: tf.Tensor(0.6884875, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.73377943, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 24002\n",
+ "Discriminator Loss: tf.Tensor(0.82077575, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.2354013, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 24003\n",
+ "Discriminator Loss: tf.Tensor(0.6288684, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.5389013, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 24004\n",
+ "Discriminator Loss: tf.Tensor(1.103142, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.4420303, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 24005\n",
+ "Discriminator Loss: tf.Tensor(1.1008171, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.1370789, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 24006\n",
+ "Discriminator Loss: tf.Tensor(0.7619115, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.9681758, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 24007\n",
+ "Discriminator Loss: tf.Tensor(0.42026353, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.9079602, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 24008\n",
+ "Discriminator Loss: tf.Tensor(1.0850365, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.6277317, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 24009\n",
+ "Discriminator Loss: tf.Tensor(1.1109191, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.078334756, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 24010\n",
+ "Discriminator Loss: tf.Tensor(1.2963948, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.7199067, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 24011\n",
+ "Discriminator Loss: tf.Tensor(0.72838855, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.32233468, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 24012\n",
+ "Discriminator Loss: tf.Tensor(0.8073522, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.421615, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 24013\n",
+ "Discriminator Loss: tf.Tensor(0.3847546, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.797095, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 24014\n",
+ "Discriminator Loss: tf.Tensor(0.75977993, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.404399, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 24015\n",
+ "Discriminator Loss: tf.Tensor(0.8171067, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.47157636, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 24016\n",
+ "Discriminator Loss: tf.Tensor(0.8611874, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.2229604, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 24017\n",
+ "Discriminator Loss: tf.Tensor(0.65853184, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.0756093, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 24018\n",
+ "Discriminator Loss: tf.Tensor(0.64963996, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.8783811, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 24019\n",
+ "Discriminator Loss: tf.Tensor(0.7676235, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.2959446, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 24020\n",
+ "Discriminator Loss: tf.Tensor(0.8271293, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.22584696, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 24021\n",
+ "Discriminator Loss: tf.Tensor(0.8651247, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.5070199, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 24022\n",
+ "Discriminator Loss: tf.Tensor(0.71631145, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.31557453, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 24023\n",
+ "Discriminator Loss: tf.Tensor(1.0849737, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.4101892, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 24024\n",
+ "Discriminator Loss: tf.Tensor(0.76665854, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.29443654, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 24025\n",
+ "Discriminator Loss: tf.Tensor(1.0969427, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.1519061, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 24026\n",
+ "Discriminator Loss: tf.Tensor(0.48255062, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.6290373, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 24027\n",
+ "Discriminator Loss: tf.Tensor(1.1692231, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.6023827, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 24028\n",
+ "Discriminator Loss: tf.Tensor(0.35444027, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.85123414, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 24029\n",
+ "Discriminator Loss: tf.Tensor(0.66912043, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.3625522, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 24030\n",
+ "Discriminator Loss: tf.Tensor(0.45107147, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.0402843, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 24031\n",
+ "Discriminator Loss: tf.Tensor(0.8657024, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.9048093, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 24032\n",
+ "Discriminator Loss: tf.Tensor(0.5357383, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.5429381, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 24033\n",
+ "Discriminator Loss: tf.Tensor(1.0530195, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.19380283, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 24034\n",
+ "Discriminator Loss: tf.Tensor(1.1211149, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.5166317, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 24035\n",
+ "Discriminator Loss: tf.Tensor(0.9767659, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.11040167, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 24036\n",
+ "Discriminator Loss: tf.Tensor(1.2188535, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.0154716, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 24037\n",
+ "Discriminator Loss: tf.Tensor(1.0225018, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.34976745, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 24038\n",
+ "Discriminator Loss: tf.Tensor(0.7058668, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.2989541, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 24039\n",
+ "Discriminator Loss: tf.Tensor(1.145613, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.23430341, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 24040\n",
+ "Discriminator Loss: tf.Tensor(1.2409436, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.5723606, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 24041\n",
+ "Discriminator Loss: tf.Tensor(1.0026853, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.09196845, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 24042\n",
+ "Discriminator Loss: tf.Tensor(0.8744036, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.2018927, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 24043\n",
+ "Discriminator Loss: tf.Tensor(0.44146663, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.61774594, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 24044\n",
+ "Discriminator Loss: tf.Tensor(1.4993641, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.7815847, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 24045\n",
+ "Discriminator Loss: tf.Tensor(0.68395305, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.51388687, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 24046\n",
+ "Discriminator Loss: tf.Tensor(0.7987382, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.2671503, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 24047\n",
+ "Discriminator Loss: tf.Tensor(1.120702, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.1305049, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 24048\n",
+ "Discriminator Loss: tf.Tensor(0.92373, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.5576944, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 24049\n",
+ "Discriminator Loss: tf.Tensor(0.85824186, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.44291374, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 24050\n",
+ "Discriminator Loss: tf.Tensor(0.5648325, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.0257555, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 24051\n",
+ "Discriminator Loss: tf.Tensor(0.6915206, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.5864234, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 24052\n",
+ "Discriminator Loss: tf.Tensor(0.8686097, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.37812957, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 24053\n",
+ "Discriminator Loss: tf.Tensor(1.0009909, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.7484074, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 24054\n",
+ "Discriminator Loss: tf.Tensor(0.76412606, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.30852225, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 24055\n",
+ "Discriminator Loss: tf.Tensor(0.7136227, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.4545884, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 24056\n",
+ "Discriminator Loss: tf.Tensor(1.072822, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.11937139, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 24057\n",
+ "Discriminator Loss: tf.Tensor(0.7520659, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.3974686, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 24058\n",
+ "Discriminator Loss: tf.Tensor(0.6767713, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.8135271, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 24059\n",
+ "Discriminator Loss: tf.Tensor(1.0978272, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.5249501, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 24060\n",
+ "Discriminator Loss: tf.Tensor(0.6166293, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.5173852, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 24061\n",
+ "Discriminator Loss: tf.Tensor(1.0596828, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.6545757, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 24062\n",
+ "Discriminator Loss: tf.Tensor(0.67207426, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.37258044, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 24063\n",
+ "Discriminator Loss: tf.Tensor(1.0926075, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.5703692, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 24064\n",
+ "Discriminator Loss: tf.Tensor(0.6984144, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.6653119, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 24065\n",
+ "Discriminator Loss: tf.Tensor(0.80408025, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.3768307, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 24066\n",
+ "Discriminator Loss: tf.Tensor(0.99140203, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.17634828, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 24067\n",
+ "Discriminator Loss: tf.Tensor(0.60375607, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.5641279, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 24068\n",
+ "Discriminator Loss: tf.Tensor(0.709969, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.4485687, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 24069\n",
+ "Discriminator Loss: tf.Tensor(0.75873536, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.4483429, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 24070\n",
+ "Discriminator Loss: tf.Tensor(0.53092086, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.7713991, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 24071\n",
+ "Discriminator Loss: tf.Tensor(0.960091, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.3804865, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 24072\n",
+ "Discriminator Loss: tf.Tensor(0.835008, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.80237335, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 24073\n",
+ "Discriminator Loss: tf.Tensor(0.47944337, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.98760796, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 24074\n",
+ "Discriminator Loss: tf.Tensor(0.7301502, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.93190265, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 24075\n",
+ "Discriminator Loss: tf.Tensor(0.6536504, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.6022158, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 24076\n",
+ "Discriminator Loss: tf.Tensor(1.3380373, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.3040729, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 24077\n",
+ "Discriminator Loss: tf.Tensor(0.9547093, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.08200143, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 24078\n",
+ "Discriminator Loss: tf.Tensor(1.0359802, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.7249389, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 24079\n",
+ "Discriminator Loss: tf.Tensor(1.003033, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.019170154, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 24080\n",
+ "Discriminator Loss: tf.Tensor(0.8201295, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.647131, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 24081\n",
+ "Discriminator Loss: tf.Tensor(0.80753493, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.26092827, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 24082\n",
+ "Discriminator Loss: tf.Tensor(0.895991, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.4150072, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 24083\n",
+ "Discriminator Loss: tf.Tensor(0.6375312, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.46266237, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 24084\n",
+ "Discriminator Loss: tf.Tensor(0.78034204, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.8606466, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 24085\n",
+ "Discriminator Loss: tf.Tensor(0.81363374, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.39529622, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 24086\n",
+ "Discriminator Loss: tf.Tensor(0.7774472, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.6454576, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 24087\n",
+ "Discriminator Loss: tf.Tensor(0.5055836, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.58912635, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 24088\n",
+ "Discriminator Loss: tf.Tensor(1.3413365, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.7357682, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 24089\n",
+ "Discriminator Loss: tf.Tensor(1.0448194, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.19787014, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 24090\n",
+ "Discriminator Loss: tf.Tensor(0.80936754, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.0310897, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 24091\n",
+ "Discriminator Loss: tf.Tensor(0.7088126, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.42646495, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 24092\n",
+ "Discriminator Loss: tf.Tensor(1.1874423, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.9706421, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 24093\n",
+ "Discriminator Loss: tf.Tensor(0.5291377, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.6573288, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 24094\n",
+ "Discriminator Loss: tf.Tensor(0.51196593, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.3129295, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 24095\n",
+ "Discriminator Loss: tf.Tensor(0.43452758, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.175951, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 24096\n",
+ "Discriminator Loss: tf.Tensor(1.2437648, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.5900794, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 24097\n",
+ "Discriminator Loss: tf.Tensor(1.0474651, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.5384392, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 24098\n",
+ "Discriminator Loss: tf.Tensor(0.68436515, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.4649917, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 24099\n",
+ "Discriminator Loss: tf.Tensor(0.6861664, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.36577034, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 24100\n",
+ "Discriminator Loss: tf.Tensor(1.2619109, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.743988, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 24101\n",
+ "Discriminator Loss: tf.Tensor(0.572538, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.6565893, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 24102\n",
+ "Discriminator Loss: tf.Tensor(1.1575778, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.4432636, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 24103\n",
+ "Discriminator Loss: tf.Tensor(0.83403814, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.33091635, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 24104\n",
+ "Discriminator Loss: tf.Tensor(0.74732727, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.0236114, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 24105\n",
+ "Discriminator Loss: tf.Tensor(0.7968471, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.4760475, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 24106\n",
+ "Discriminator Loss: tf.Tensor(0.41330537, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.61366063, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 24107\n",
+ "Discriminator Loss: tf.Tensor(1.1409994, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.8819124, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 24108\n",
+ "Discriminator Loss: tf.Tensor(0.56493473, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.6390734, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 24109\n",
+ "Discriminator Loss: tf.Tensor(1.3618512, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.8891195, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 24110\n",
+ "Discriminator Loss: tf.Tensor(0.8212959, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.3827921, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 24111\n",
+ "Discriminator Loss: tf.Tensor(0.6353945, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.370914, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 24112\n",
+ "Discriminator Loss: tf.Tensor(0.7043868, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.6011604, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 24113\n",
+ "Discriminator Loss: tf.Tensor(0.66643584, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.3730359, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 24114\n",
+ "Discriminator Loss: tf.Tensor(0.7852357, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.8624811, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 24115\n",
+ "Discriminator Loss: tf.Tensor(0.9570677, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.6839339, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 24116\n",
+ "Discriminator Loss: tf.Tensor(0.6462856, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.7533677, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 24117\n",
+ "Discriminator Loss: tf.Tensor(1.271801, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.3072509, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 24118\n",
+ "Discriminator Loss: tf.Tensor(0.60846263, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.51076597, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 24119\n",
+ "Discriminator Loss: tf.Tensor(0.9021262, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.3896009, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 24120\n",
+ "Discriminator Loss: tf.Tensor(0.58432424, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.586315, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 24121\n",
+ "Discriminator Loss: tf.Tensor(1.3428572, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.86483455, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 24122\n",
+ "Discriminator Loss: tf.Tensor(0.77848697, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.2276877, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 24123\n",
+ "Discriminator Loss: tf.Tensor(0.61366117, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.6636382, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 24124\n",
+ "Discriminator Loss: tf.Tensor(0.8195945, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.3665962, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 24125\n",
+ "Discriminator Loss: tf.Tensor(0.61610204, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.2193905, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 24126\n",
+ "Discriminator Loss: tf.Tensor(0.2772643, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.0189762, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 24127\n",
+ "Discriminator Loss: tf.Tensor(1.1134171, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.5654483, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 24128\n",
+ "Discriminator Loss: tf.Tensor(0.9353318, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.18593721, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 24129\n",
+ "Discriminator Loss: tf.Tensor(1.4044999, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.6643792, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 24130\n",
+ "Discriminator Loss: tf.Tensor(0.601064, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.77621764, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 24131\n",
+ "Discriminator Loss: tf.Tensor(0.7796263, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.3798944, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 24132\n",
+ "Discriminator Loss: tf.Tensor(0.7326013, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.89794654, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 24133\n",
+ "Discriminator Loss: tf.Tensor(0.7141748, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.923572, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 24134\n",
+ "Discriminator Loss: tf.Tensor(0.4382913, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.3119746, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 24135\n",
+ "Discriminator Loss: tf.Tensor(0.39591086, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.9162839, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 24136\n",
+ "Discriminator Loss: tf.Tensor(1.0718412, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.7116033, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 24137\n",
+ "Discriminator Loss: tf.Tensor(1.0940719, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.092050254, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 24138\n",
+ "Discriminator Loss: tf.Tensor(1.48849, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.6402593, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 24139\n",
+ "Discriminator Loss: tf.Tensor(1.010241, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.16933592, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 24140\n",
+ "Discriminator Loss: tf.Tensor(0.708599, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.0794858, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 24141\n",
+ "Discriminator Loss: tf.Tensor(0.52328235, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.61285883, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 24142\n",
+ "Discriminator Loss: tf.Tensor(0.49430293, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.5113393, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 24143\n",
+ "Discriminator Loss: tf.Tensor(0.67172873, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.59890217, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 24144\n",
+ "Discriminator Loss: tf.Tensor(1.4666202, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.4828771, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 24145\n",
+ "Discriminator Loss: tf.Tensor(0.58681715, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.5881464, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 24146\n",
+ "Discriminator Loss: tf.Tensor(1.1510413, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.7546507, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 24147\n",
+ "Discriminator Loss: tf.Tensor(0.5950347, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.43589544, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 24148\n",
+ "Discriminator Loss: tf.Tensor(0.7851677, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.2799113, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 24149\n",
+ "Discriminator Loss: tf.Tensor(0.79781806, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.0818424, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 24150\n",
+ "Discriminator Loss: tf.Tensor(0.4611435, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.6439119, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 24151\n",
+ "Discriminator Loss: tf.Tensor(1.4696447, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.8807342, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 24152\n",
+ "Discriminator Loss: tf.Tensor(1.1484898, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.117821276, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 24153\n",
+ "Discriminator Loss: tf.Tensor(1.0729493, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.3524185, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 24154\n",
+ "Discriminator Loss: tf.Tensor(1.1304561, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.26640043, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 24155\n",
+ "Discriminator Loss: tf.Tensor(0.6002111, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.0113301, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 24156\n",
+ "Discriminator Loss: tf.Tensor(0.49751818, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.70463437, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 24157\n",
+ "Discriminator Loss: tf.Tensor(0.8364022, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.5223656, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 24158\n",
+ "Discriminator Loss: tf.Tensor(0.8818257, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.5280941, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 24159\n",
+ "Discriminator Loss: tf.Tensor(0.8109325, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.7777432, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 24160\n",
+ "Discriminator Loss: tf.Tensor(0.9356898, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.2904639, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 24161\n",
+ "Discriminator Loss: tf.Tensor(0.8638835, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.7979898, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 24162\n",
+ "Discriminator Loss: tf.Tensor(1.1046133, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.31737122, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 24163\n",
+ "Discriminator Loss: tf.Tensor(0.84405714, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.2353804, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 24164\n",
+ "Discriminator Loss: tf.Tensor(0.53597164, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.5876561, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 24165\n",
+ "Discriminator Loss: tf.Tensor(0.8017948, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.0477324, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 24166\n",
+ "Discriminator Loss: tf.Tensor(0.32704788, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.8823344, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 24167\n",
+ "Discriminator Loss: tf.Tensor(0.48391616, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.0003508, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 24168\n",
+ "Discriminator Loss: tf.Tensor(1.2227163, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.7023989, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 24169\n",
+ "Discriminator Loss: tf.Tensor(0.67128414, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.36533594, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 24170\n",
+ "Discriminator Loss: tf.Tensor(1.2778364, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.1616594, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 24171\n",
+ "Discriminator Loss: tf.Tensor(0.39704734, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.89390916, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 24172\n",
+ "Discriminator Loss: tf.Tensor(0.9266099, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.7931476, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 24173\n",
+ "Discriminator Loss: tf.Tensor(0.33019152, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.7406954, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 24174\n",
+ "Discriminator Loss: tf.Tensor(1.341904, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.8661526, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 24175\n",
+ "Discriminator Loss: tf.Tensor(0.6370425, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.5814179, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 24176\n",
+ "Discriminator Loss: tf.Tensor(1.1926153, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.3223652, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 24177\n",
+ "Discriminator Loss: tf.Tensor(0.4938736, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.93794847, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 24178\n",
+ "Discriminator Loss: tf.Tensor(0.56785023, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.2240347, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 24179\n",
+ "Discriminator Loss: tf.Tensor(0.46718305, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.0211565, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 24180\n",
+ "Discriminator Loss: tf.Tensor(0.67582905, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.81091887, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 24181\n",
+ "Discriminator Loss: tf.Tensor(1.1992497, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.5112772, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 24182\n",
+ "Discriminator Loss: tf.Tensor(0.93719065, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.29835764, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 24183\n",
+ "Discriminator Loss: tf.Tensor(0.5950661, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.4432197, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 24184\n",
+ "Discriminator Loss: tf.Tensor(1.2073982, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.08455357, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 24185\n",
+ "Discriminator Loss: tf.Tensor(0.8130419, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.1658082, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 24186\n",
+ "Discriminator Loss: tf.Tensor(0.715165, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.65332884, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 24187\n",
+ "Discriminator Loss: tf.Tensor(0.7660052, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.57439, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 24188\n",
+ "Discriminator Loss: tf.Tensor(0.5198023, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.8421712, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 24189\n",
+ "Discriminator Loss: tf.Tensor(1.1794007, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.835657, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 24190\n",
+ "Discriminator Loss: tf.Tensor(1.0574822, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.032105315, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 24191\n",
+ "Discriminator Loss: tf.Tensor(1.0508236, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.5317144, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 24192\n",
+ "Discriminator Loss: tf.Tensor(0.8903793, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.20467877, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 24193\n",
+ "Discriminator Loss: tf.Tensor(0.7879514, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.2933959, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 24194\n",
+ "Discriminator Loss: tf.Tensor(0.8109512, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.50082463, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 24195\n",
+ "Discriminator Loss: tf.Tensor(0.78099525, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.6356211, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 24196\n",
+ "Discriminator Loss: tf.Tensor(0.6262368, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.49431813, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 24197\n",
+ "Discriminator Loss: tf.Tensor(0.6794204, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.4208117, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 24198\n",
+ "Discriminator Loss: tf.Tensor(0.6476959, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.49715486, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 24199\n",
+ "Discriminator Loss: tf.Tensor(1.3675299, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.5751238, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 24200\n",
+ "Discriminator Loss: tf.Tensor(0.49845934, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.87982416, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 24201\n",
+ "Discriminator Loss: tf.Tensor(0.83635235, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.247028, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 24202\n",
+ "Discriminator Loss: tf.Tensor(0.28155962, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.2535495, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 24203\n",
+ "Discriminator Loss: tf.Tensor(0.8923933, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.68091017, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 24204\n",
+ "Discriminator Loss: tf.Tensor(1.2323279, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.4722422, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 24205\n",
+ "Discriminator Loss: tf.Tensor(0.70696485, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.80793554, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 24206\n",
+ "Discriminator Loss: tf.Tensor(0.7018002, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.6813186, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 24207\n",
+ "Discriminator Loss: tf.Tensor(0.5774625, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.6586081, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 24208\n",
+ "Discriminator Loss: tf.Tensor(1.5901706, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.7412661, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 24209\n",
+ "Discriminator Loss: tf.Tensor(0.76660717, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.29101184, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 24210\n",
+ "Discriminator Loss: tf.Tensor(1.1393319, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.397169, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 24211\n",
+ "Discriminator Loss: tf.Tensor(1.088782, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.09770163, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 24212\n",
+ "Discriminator Loss: tf.Tensor(0.5965376, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.2348301, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 24213\n",
+ "Discriminator Loss: tf.Tensor(0.8929868, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.20075683, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 24214\n",
+ "Discriminator Loss: tf.Tensor(0.82203496, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.4769839, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 24215\n",
+ "Discriminator Loss: tf.Tensor(0.58948594, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.51536274, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 24216\n",
+ "Discriminator Loss: tf.Tensor(0.86630905, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.5484616, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 24217\n",
+ "Discriminator Loss: tf.Tensor(0.59016615, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.6762936, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 24218\n",
+ "Discriminator Loss: tf.Tensor(0.65205115, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.593891, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 24219\n",
+ "Discriminator Loss: tf.Tensor(0.67190254, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.6357735, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 24220\n",
+ "Discriminator Loss: tf.Tensor(1.3988924, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.2048271, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 24221\n",
+ "Discriminator Loss: tf.Tensor(0.6814528, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.6267784, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 24222\n",
+ "Discriminator Loss: tf.Tensor(1.1474596, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.5707197, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 24223\n",
+ "Discriminator Loss: tf.Tensor(0.94097006, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.2687814, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 24224\n",
+ "Discriminator Loss: tf.Tensor(0.9169606, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.071759, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 24225\n",
+ "Discriminator Loss: tf.Tensor(0.37017918, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.1954249, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 24226\n",
+ "Discriminator Loss: tf.Tensor(0.54288167, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.7892836, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 24227\n",
+ "Discriminator Loss: tf.Tensor(0.9522462, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.7298645, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 24228\n",
+ "Discriminator Loss: tf.Tensor(1.1887615, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.042142373, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 24229\n",
+ "Discriminator Loss: tf.Tensor(0.83240485, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.6895046, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 24230\n",
+ "Discriminator Loss: tf.Tensor(0.6753258, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.86264974, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 24231\n",
+ "Discriminator Loss: tf.Tensor(0.6422281, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.9423771, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 24232\n",
+ "Discriminator Loss: tf.Tensor(0.5456115, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.1717657, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 24233\n",
+ "Discriminator Loss: tf.Tensor(0.47849452, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.7606249, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 24234\n",
+ "Discriminator Loss: tf.Tensor(1.1114137, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.0255597, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 24235\n",
+ "Discriminator Loss: tf.Tensor(0.693073, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.5761829, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 24236\n",
+ "Discriminator Loss: tf.Tensor(0.8676349, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.2554679, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 24237\n",
+ "Discriminator Loss: tf.Tensor(0.6727524, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.939423, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 24238\n",
+ "Discriminator Loss: tf.Tensor(0.8981738, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.6293893, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 24239\n",
+ "Discriminator Loss: tf.Tensor(0.63158655, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.2416025, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 24240\n",
+ "Discriminator Loss: tf.Tensor(0.43650734, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.77720785, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 24241\n",
+ "Discriminator Loss: tf.Tensor(1.6466714, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.2840128, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 24242\n",
+ "Discriminator Loss: tf.Tensor(0.7957798, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.2974915, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 24243\n",
+ "Discriminator Loss: tf.Tensor(0.61476064, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.3330531, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 24244\n",
+ "Discriminator Loss: tf.Tensor(0.34361717, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.74978286, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 24245\n",
+ "Discriminator Loss: tf.Tensor(1.1388232, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.7195481, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 24246\n",
+ "Discriminator Loss: tf.Tensor(0.77733535, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.60368276, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 24247\n",
+ "Discriminator Loss: tf.Tensor(0.64413166, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.9820967, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 24248\n",
+ "Discriminator Loss: tf.Tensor(0.3099519, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.1607661, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 24249\n",
+ "Discriminator Loss: tf.Tensor(0.6302956, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.2750467, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 24250\n",
+ "Discriminator Loss: tf.Tensor(0.44385117, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.4895009, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 24251\n",
+ "Discriminator Loss: tf.Tensor(0.3906567, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.7721911, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 24252\n",
+ "Discriminator Loss: tf.Tensor(1.7171571, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.375933, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 24253\n",
+ "Discriminator Loss: tf.Tensor(0.7062144, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.62036943, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 24254\n",
+ "Discriminator Loss: tf.Tensor(0.8480801, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.2625655, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 24255\n",
+ "Discriminator Loss: tf.Tensor(0.5665034, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.58018196, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 24256\n",
+ "Discriminator Loss: tf.Tensor(1.1779766, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.6960797, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 24257\n",
+ "Discriminator Loss: tf.Tensor(0.965445, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.3525711, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 24258\n",
+ "Discriminator Loss: tf.Tensor(0.7099389, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.222599, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 24259\n",
+ "Discriminator Loss: tf.Tensor(0.7629841, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.4142728, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 24260\n",
+ "Discriminator Loss: tf.Tensor(0.8253087, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.5909919, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 24261\n",
+ "Discriminator Loss: tf.Tensor(0.80886537, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.3956147, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 24262\n",
+ "Discriminator Loss: tf.Tensor(0.43586564, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.266245, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 24263\n",
+ "Discriminator Loss: tf.Tensor(0.77510655, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.9887187, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 24264\n",
+ "Discriminator Loss: tf.Tensor(0.87633264, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.2283553, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 24265\n",
+ "Discriminator Loss: tf.Tensor(0.3665655, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.9906356, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 24266\n",
+ "Discriminator Loss: tf.Tensor(0.89914334, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.368483, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 24267\n",
+ "Discriminator Loss: tf.Tensor(0.49303833, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.9803156, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 24268\n",
+ "Discriminator Loss: tf.Tensor(1.288646, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.7419528, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 24269\n",
+ "Discriminator Loss: tf.Tensor(1.1503568, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.006110648, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 24270\n",
+ "Discriminator Loss: tf.Tensor(1.3439656, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.8239916, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 24271\n",
+ "Discriminator Loss: tf.Tensor(0.8478207, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.41172513, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 24272\n",
+ "Discriminator Loss: tf.Tensor(0.8600569, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.4519392, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 24273\n",
+ "Discriminator Loss: tf.Tensor(0.7163099, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.507177, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 24274\n",
+ "Discriminator Loss: tf.Tensor(0.70969516, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.8808468, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 24275\n",
+ "Discriminator Loss: tf.Tensor(0.32841235, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.8893412, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 24276\n",
+ "Discriminator Loss: tf.Tensor(1.0322613, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.6587257, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 24277\n",
+ "Discriminator Loss: tf.Tensor(0.66059154, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.41525984, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 24278\n",
+ "Discriminator Loss: tf.Tensor(1.1294327, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.3147701, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 24279\n",
+ "Discriminator Loss: tf.Tensor(0.4737884, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.77280074, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 24280\n",
+ "Discriminator Loss: tf.Tensor(0.9583839, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.753734, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 24281\n",
+ "Discriminator Loss: tf.Tensor(1.0520198, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.16092342, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 24282\n",
+ "Discriminator Loss: tf.Tensor(1.3717928, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.8464506, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 24283\n",
+ "Discriminator Loss: tf.Tensor(0.76110196, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.2759825, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 24284\n",
+ "Discriminator Loss: tf.Tensor(0.5908811, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.74478453, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 24285\n",
+ "Discriminator Loss: tf.Tensor(0.81021833, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.4745444, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 24286\n",
+ "Discriminator Loss: tf.Tensor(0.958525, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.13475929, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 24287\n",
+ "Discriminator Loss: tf.Tensor(0.8991662, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.7907991, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 24288\n",
+ "Discriminator Loss: tf.Tensor(0.7548273, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.6008505, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 24289\n",
+ "Discriminator Loss: tf.Tensor(0.56220776, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.9849413, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 24290\n",
+ "Discriminator Loss: tf.Tensor(1.0293516, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.8637137, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 24291\n",
+ "Discriminator Loss: tf.Tensor(0.83082014, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.52132636, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 24292\n",
+ "Discriminator Loss: tf.Tensor(0.5108285, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.98980093, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 24293\n",
+ "Discriminator Loss: tf.Tensor(0.7133055, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.2042445, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 24294\n",
+ "Discriminator Loss: tf.Tensor(0.6002048, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.6327658, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 24295\n",
+ "Discriminator Loss: tf.Tensor(1.1219242, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.6635557, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 24296\n",
+ "Discriminator Loss: tf.Tensor(0.91552085, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.20417942, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 24297\n",
+ "Discriminator Loss: tf.Tensor(1.1346208, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.6521441, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 24298\n",
+ "Discriminator Loss: tf.Tensor(0.41001192, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.70223874, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 24299\n",
+ "Discriminator Loss: tf.Tensor(0.6444639, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.0637283, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 24300\n",
+ "Discriminator Loss: tf.Tensor(0.81319493, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.9719103, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 24301\n",
+ "Discriminator Loss: tf.Tensor(0.79869664, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.6021246, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 24302\n",
+ "Discriminator Loss: tf.Tensor(0.7696201, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.1508657, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 24303\n",
+ "Discriminator Loss: tf.Tensor(0.4274269, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.85899115, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 24304\n",
+ "Discriminator Loss: tf.Tensor(1.0058566, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.3474077, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 24305\n",
+ "Discriminator Loss: tf.Tensor(0.6180426, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.688776, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 24306\n",
+ "Discriminator Loss: tf.Tensor(1.2678335, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.091005, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 24307\n",
+ "Discriminator Loss: tf.Tensor(1.0008154, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.34178463, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 24308\n",
+ "Discriminator Loss: tf.Tensor(0.9921303, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.8006653, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 24309\n",
+ "Discriminator Loss: tf.Tensor(0.49273703, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.9506343, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 24310\n",
+ "Discriminator Loss: tf.Tensor(0.9074095, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.5736154, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 24311\n",
+ "Discriminator Loss: tf.Tensor(0.9213958, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.12591259, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 24312\n",
+ "Discriminator Loss: tf.Tensor(1.0503567, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.2623606, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 24313\n",
+ "Discriminator Loss: tf.Tensor(0.9856929, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.17853539, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 24314\n",
+ "Discriminator Loss: tf.Tensor(0.6830408, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.3211675, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 24315\n",
+ "Discriminator Loss: tf.Tensor(0.58840716, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.6522119, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 24316\n",
+ "Discriminator Loss: tf.Tensor(1.4657897, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.8978763, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 24317\n",
+ "Discriminator Loss: tf.Tensor(1.6175985, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.27780092, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 24318\n",
+ "Discriminator Loss: tf.Tensor(0.77301323, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.990736, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 24319\n",
+ "Discriminator Loss: tf.Tensor(0.4690829, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.5595818, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 24320\n",
+ "Discriminator Loss: tf.Tensor(1.2163308, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.3228877, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 24321\n",
+ "Discriminator Loss: tf.Tensor(0.6618045, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.57729006, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 24322\n",
+ "Discriminator Loss: tf.Tensor(0.38625705, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.0570612, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 24323\n",
+ "Discriminator Loss: tf.Tensor(1.2462674, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.3163413, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 24324\n",
+ "Discriminator Loss: tf.Tensor(0.89239794, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.251315, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 24325\n",
+ "Discriminator Loss: tf.Tensor(0.79272723, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.5187515, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 24326\n",
+ "Discriminator Loss: tf.Tensor(0.7538136, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.45094728, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 24327\n",
+ "Discriminator Loss: tf.Tensor(0.83387333, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.9528419, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 24328\n",
+ "Discriminator Loss: tf.Tensor(0.42599148, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.0427884, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 24329\n",
+ "Discriminator Loss: tf.Tensor(0.5229436, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.95468545, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 24330\n",
+ "Discriminator Loss: tf.Tensor(0.7056328, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.5265493, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 24331\n",
+ "Discriminator Loss: tf.Tensor(1.0947874, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.6075509, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 24332\n",
+ "Discriminator Loss: tf.Tensor(0.35122174, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.2765746, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 24333\n",
+ "Discriminator Loss: tf.Tensor(0.9866601, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.5010298, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 24334\n",
+ "Discriminator Loss: tf.Tensor(0.5887906, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.5622832, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 24335\n",
+ "Discriminator Loss: tf.Tensor(1.0894743, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.6926618, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 24336\n",
+ "Discriminator Loss: tf.Tensor(0.49314213, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.6756436, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 24337\n",
+ "Discriminator Loss: tf.Tensor(0.73490834, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.4291295, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 24338\n",
+ "Discriminator Loss: tf.Tensor(0.7661353, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.36406073, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 24339\n",
+ "Discriminator Loss: tf.Tensor(0.80445296, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.4772367, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 24340\n",
+ "Discriminator Loss: tf.Tensor(0.72968435, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.65982634, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 24341\n",
+ "Discriminator Loss: tf.Tensor(0.99032235, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.840161, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 24342\n",
+ "Discriminator Loss: tf.Tensor(0.9369767, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.21282469, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 24343\n",
+ "Discriminator Loss: tf.Tensor(1.1123598, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.1496512, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 24344\n",
+ "Discriminator Loss: tf.Tensor(0.5730177, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.95994353, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 24345\n",
+ "Discriminator Loss: tf.Tensor(0.96832585, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.90086776, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 24346\n",
+ "Discriminator Loss: tf.Tensor(0.91034997, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.50557625, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 24347\n",
+ "Discriminator Loss: tf.Tensor(1.2161838, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.6761547, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 24348\n",
+ "Discriminator Loss: tf.Tensor(0.69872934, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.38124084, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 24349\n",
+ "Discriminator Loss: tf.Tensor(1.1215389, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.2539777, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 24350\n",
+ "Discriminator Loss: tf.Tensor(1.075395, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.04411866, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 24351\n",
+ "Discriminator Loss: tf.Tensor(0.9269378, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.471251, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 24352\n",
+ "Discriminator Loss: tf.Tensor(0.54430526, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.88162667, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 24353\n",
+ "Discriminator Loss: tf.Tensor(0.67402005, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.2879568, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 24354\n",
+ "Discriminator Loss: tf.Tensor(0.7488969, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.36600456, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 24355\n",
+ "Discriminator Loss: tf.Tensor(0.99185586, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.7872027, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 24356\n",
+ "Discriminator Loss: tf.Tensor(0.6176707, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.50222164, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 24357\n",
+ "Discriminator Loss: tf.Tensor(1.2935326, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.3744348, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 24358\n",
+ "Discriminator Loss: tf.Tensor(0.5091853, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.63598496, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 24359\n",
+ "Discriminator Loss: tf.Tensor(0.9178932, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.7737955, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 24360\n",
+ "Discriminator Loss: tf.Tensor(0.5402198, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.5648609, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 24361\n",
+ "Discriminator Loss: tf.Tensor(0.70351934, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.6097498, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 24362\n",
+ "Discriminator Loss: tf.Tensor(0.5232159, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.6939454, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 24363\n",
+ "Discriminator Loss: tf.Tensor(1.1902133, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.9478579, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 24364\n",
+ "Discriminator Loss: tf.Tensor(0.5374082, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.86198956, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 24365\n",
+ "Discriminator Loss: tf.Tensor(0.809364, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.7713325, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 24366\n",
+ "Discriminator Loss: tf.Tensor(0.98080146, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.8374271, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 24367\n",
+ "Discriminator Loss: tf.Tensor(0.84360206, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.21569127, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 24368\n",
+ "Discriminator Loss: tf.Tensor(0.9176568, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.6047512, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 24369\n",
+ "Discriminator Loss: tf.Tensor(0.8253331, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.34550846, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 24370\n",
+ "Discriminator Loss: tf.Tensor(0.70056725, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.7533308, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 24371\n",
+ "Discriminator Loss: tf.Tensor(0.5880234, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.6813695, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 24372\n",
+ "Discriminator Loss: tf.Tensor(0.3163135, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.0477294, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 24373\n",
+ "Discriminator Loss: tf.Tensor(0.64802563, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.3263434, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 24374\n",
+ "Discriminator Loss: tf.Tensor(0.5303868, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.7028101, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 24375\n",
+ "Discriminator Loss: tf.Tensor(0.8506974, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.7246977, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 24376\n",
+ "Discriminator Loss: tf.Tensor(0.73704827, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.7801972, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 24377\n",
+ "Discriminator Loss: tf.Tensor(1.0849528, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.3383337, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 24378\n",
+ "Discriminator Loss: tf.Tensor(0.99683005, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.09598494, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 24379\n",
+ "Discriminator Loss: tf.Tensor(1.0244858, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.5941728, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 24380\n",
+ "Discriminator Loss: tf.Tensor(0.76939553, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.32621992, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 24381\n",
+ "Discriminator Loss: tf.Tensor(0.46141094, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.2226424, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 24382\n",
+ "Discriminator Loss: tf.Tensor(0.85068315, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.48062912, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 24383\n",
+ "Discriminator Loss: tf.Tensor(1.012921, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.8313812, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 24384\n",
+ "Discriminator Loss: tf.Tensor(0.57445127, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.5305724, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 24385\n",
+ "Discriminator Loss: tf.Tensor(1.0538632, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.5898033, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 24386\n",
+ "Discriminator Loss: tf.Tensor(0.9761013, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.14863451, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 24387\n",
+ "Discriminator Loss: tf.Tensor(0.90137017, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.2071238, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 24388\n",
+ "Discriminator Loss: tf.Tensor(0.6513095, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.79708266, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 24389\n",
+ "Discriminator Loss: tf.Tensor(0.94863963, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.7025613, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 24390\n",
+ "Discriminator Loss: tf.Tensor(1.0933363, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.0050888495, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 24391\n",
+ "Discriminator Loss: tf.Tensor(0.8240765, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.410668, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 24392\n",
+ "Discriminator Loss: tf.Tensor(0.77251816, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.45095226, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 24393\n",
+ "Discriminator Loss: tf.Tensor(0.6980494, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.427487, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 24394\n",
+ "Discriminator Loss: tf.Tensor(0.5318681, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.1083666, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 24395\n",
+ "Discriminator Loss: tf.Tensor(0.6063803, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.8488746, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 24396\n",
+ "Discriminator Loss: tf.Tensor(1.5383365, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.8408699, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 24397\n",
+ "Discriminator Loss: tf.Tensor(0.73122776, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.36976853, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 24398\n",
+ "Discriminator Loss: tf.Tensor(1.0189681, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.6061344, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 24399\n",
+ "Discriminator Loss: tf.Tensor(1.105023, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.011244535, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 24400\n",
+ "Discriminator Loss: tf.Tensor(0.7093431, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.2336951, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 24401\n",
+ "Discriminator Loss: tf.Tensor(0.46416497, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.0850831, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 24402\n",
+ "Discriminator Loss: tf.Tensor(0.43492162, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.1626483, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 24403\n",
+ "Discriminator Loss: tf.Tensor(1.0175672, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.8963383, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 24404\n",
+ "Discriminator Loss: tf.Tensor(0.88808596, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.0665121, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 24405\n",
+ "Discriminator Loss: tf.Tensor(0.8303032, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.0301515, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 24406\n",
+ "Discriminator Loss: tf.Tensor(0.84240794, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.36157632, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 24407\n",
+ "Discriminator Loss: tf.Tensor(1.1505892, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.6693078, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 24408\n",
+ "Discriminator Loss: tf.Tensor(0.8666405, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.24346799, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 24409\n",
+ "Discriminator Loss: tf.Tensor(0.8638357, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.484387, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 24410\n",
+ "Discriminator Loss: tf.Tensor(0.44223982, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.6944017, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 24411\n",
+ "Discriminator Loss: tf.Tensor(0.9391801, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.3001115, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 24412\n",
+ "Discriminator Loss: tf.Tensor(0.76568866, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.7123422, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 24413\n",
+ "Discriminator Loss: tf.Tensor(0.86130977, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.5635933, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 24414\n",
+ "Discriminator Loss: tf.Tensor(0.92670906, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.35092282, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 24415\n",
+ "Discriminator Loss: tf.Tensor(0.7598654, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.1257845, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 24416\n",
+ "Discriminator Loss: tf.Tensor(0.7240877, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.7715383, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 24417\n",
+ "Discriminator Loss: tf.Tensor(0.95777154, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.5063796, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 24418\n",
+ "Discriminator Loss: tf.Tensor(0.41467336, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.1334982, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 24419\n",
+ "Discriminator Loss: tf.Tensor(0.8506362, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.1976415, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 24420\n",
+ "Discriminator Loss: tf.Tensor(0.58691806, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.74059576, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 24421\n",
+ "Discriminator Loss: tf.Tensor(0.7332705, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.7120324, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 24422\n",
+ "Discriminator Loss: tf.Tensor(0.52366453, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.5639918, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 24423\n",
+ "Discriminator Loss: tf.Tensor(1.3494873, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.9618073, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 24424\n",
+ "Discriminator Loss: tf.Tensor(0.66563994, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.71279454, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 24425\n",
+ "Discriminator Loss: tf.Tensor(0.63140386, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.57891077, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 24426\n",
+ "Discriminator Loss: tf.Tensor(1.248674, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.8455257, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 24427\n",
+ "Discriminator Loss: tf.Tensor(0.84031296, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.19225241, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 24428\n",
+ "Discriminator Loss: tf.Tensor(0.7108567, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.2117451, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 24429\n",
+ "Discriminator Loss: tf.Tensor(0.9810011, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.2524208, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 24430\n",
+ "Discriminator Loss: tf.Tensor(0.8741987, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.9865174, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 24431\n",
+ "Discriminator Loss: tf.Tensor(0.57339793, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.6910164, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 24432\n",
+ "Discriminator Loss: tf.Tensor(0.8036293, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.94735104, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 24433\n",
+ "Discriminator Loss: tf.Tensor(0.57459855, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.3826908, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 24434\n",
+ "Discriminator Loss: tf.Tensor(1.0111617, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.8490505, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 24435\n",
+ "Discriminator Loss: tf.Tensor(0.83938754, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.35907355, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 24436\n",
+ "Discriminator Loss: tf.Tensor(1.1242446, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.081188, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 24437\n",
+ "Discriminator Loss: tf.Tensor(0.7966912, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.42462024, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 24438\n",
+ "Discriminator Loss: tf.Tensor(0.8308928, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.5953116, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 24439\n",
+ "Discriminator Loss: tf.Tensor(0.5357859, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.1744804, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 24440\n",
+ "Discriminator Loss: tf.Tensor(0.4701345, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.1366463, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 24441\n",
+ "Discriminator Loss: tf.Tensor(0.71262485, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.0726647, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 24442\n",
+ "Discriminator Loss: tf.Tensor(0.77881795, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.99575406, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 24443\n",
+ "Discriminator Loss: tf.Tensor(0.44285554, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.2985018, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 24444\n",
+ "Discriminator Loss: tf.Tensor(1.3096118, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.4079174, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 24445\n",
+ "Discriminator Loss: tf.Tensor(1.2828695, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.23565634, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 24446\n",
+ "Discriminator Loss: tf.Tensor(1.2128284, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.8720128, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 24447\n",
+ "Discriminator Loss: tf.Tensor(0.5614263, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.0060695, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 24448\n",
+ "Discriminator Loss: tf.Tensor(0.63463867, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.2758176, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 24449\n",
+ "Discriminator Loss: tf.Tensor(0.53631896, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.6845765, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 24450\n",
+ "Discriminator Loss: tf.Tensor(1.1765718, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.7825981, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 24451\n",
+ "Discriminator Loss: tf.Tensor(0.9676859, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.077739835, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 24452\n",
+ "Discriminator Loss: tf.Tensor(0.65253365, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.390934, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 24453\n",
+ "Discriminator Loss: tf.Tensor(0.66911453, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.5905173, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 24454\n",
+ "Discriminator Loss: tf.Tensor(0.56823623, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.3233788, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 24455\n",
+ "Discriminator Loss: tf.Tensor(0.5760437, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.0244981, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 24456\n",
+ "Discriminator Loss: tf.Tensor(0.8989085, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.2105794, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 24457\n",
+ "Discriminator Loss: tf.Tensor(0.380094, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.1479727, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 24458\n",
+ "Discriminator Loss: tf.Tensor(0.7093674, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.6703549, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 24459\n",
+ "Discriminator Loss: tf.Tensor(1.785528, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.2931526, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 24460\n",
+ "Discriminator Loss: tf.Tensor(0.61967415, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.7275316, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 24461\n",
+ "Discriminator Loss: tf.Tensor(0.8493886, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.22493793, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 24462\n",
+ "Discriminator Loss: tf.Tensor(1.0660512, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.6613207, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 24463\n",
+ "Discriminator Loss: tf.Tensor(0.8677476, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.21696527, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 24464\n",
+ "Discriminator Loss: tf.Tensor(0.77803826, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.1753176, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 24465\n",
+ "Discriminator Loss: tf.Tensor(0.34011137, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.9340226, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 24466\n",
+ "Discriminator Loss: tf.Tensor(0.6881935, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.9369448, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 24467\n",
+ "Discriminator Loss: tf.Tensor(0.7369886, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.69015247, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 24468\n",
+ "Discriminator Loss: tf.Tensor(1.3482723, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.8910719, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 24469\n",
+ "Discriminator Loss: tf.Tensor(0.7103045, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.41588616, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 24470\n",
+ "Discriminator Loss: tf.Tensor(0.57652026, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.5231056, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 24471\n",
+ "Discriminator Loss: tf.Tensor(0.3756734, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.98377067, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 24472\n",
+ "Discriminator Loss: tf.Tensor(0.5688909, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.4326129, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 24473\n",
+ "Discriminator Loss: tf.Tensor(0.5665339, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.53820103, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 24474\n",
+ "Discriminator Loss: tf.Tensor(1.5067396, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.9257108, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 24475\n",
+ "Discriminator Loss: tf.Tensor(1.0192722, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.18386488, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 24476\n",
+ "Discriminator Loss: tf.Tensor(0.57419086, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.6695666, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 24477\n",
+ "Discriminator Loss: tf.Tensor(0.6023921, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.74015975, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 24478\n",
+ "Discriminator Loss: tf.Tensor(1.1762377, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.1287005, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 24479\n",
+ "Discriminator Loss: tf.Tensor(0.6136465, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.5088941, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 24480\n",
+ "Discriminator Loss: tf.Tensor(0.6007762, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.3162487, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 24481\n",
+ "Discriminator Loss: tf.Tensor(0.820951, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.70157623, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 24482\n",
+ "Discriminator Loss: tf.Tensor(0.9250718, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.4978942, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 24483\n",
+ "Discriminator Loss: tf.Tensor(1.1784133, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.1734675, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 24484\n",
+ "Discriminator Loss: tf.Tensor(0.9554453, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.6332067, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 24485\n",
+ "Discriminator Loss: tf.Tensor(1.0416473, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.45790458, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 24486\n",
+ "Discriminator Loss: tf.Tensor(0.8864442, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.7771529, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 24487\n",
+ "Discriminator Loss: tf.Tensor(0.8029841, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.32602927, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 24488\n",
+ "Discriminator Loss: tf.Tensor(1.2880677, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.4279013, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 24489\n",
+ "Discriminator Loss: tf.Tensor(0.95450956, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.52222085, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 24490\n",
+ "Discriminator Loss: tf.Tensor(0.98217845, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.4034008, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 24491\n",
+ "Discriminator Loss: tf.Tensor(0.8533906, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.2677438, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 24492\n",
+ "Discriminator Loss: tf.Tensor(0.5634929, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.2054667, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 24493\n",
+ "Discriminator Loss: tf.Tensor(0.78882694, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.3871499, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 24494\n",
+ "Discriminator Loss: tf.Tensor(0.36727083, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.95061946, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 24495\n",
+ "Discriminator Loss: tf.Tensor(0.65287894, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.73139185, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 24496\n",
+ "Discriminator Loss: tf.Tensor(1.2226617, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.996404, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 24497\n",
+ "Discriminator Loss: tf.Tensor(0.7362116, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.3036874, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 24498\n",
+ "Discriminator Loss: tf.Tensor(0.9015412, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.4504886, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 24499\n",
+ "Discriminator Loss: tf.Tensor(0.67220753, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.662528, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 24500\n",
+ "Discriminator Loss: tf.Tensor(0.6956054, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.3945833, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 24501\n",
+ "Discriminator Loss: tf.Tensor(0.5794526, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.59478635, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 24502\n",
+ "Discriminator Loss: tf.Tensor(1.086706, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.7098279, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 24503\n",
+ "Discriminator Loss: tf.Tensor(0.41030675, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.95864373, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 24504\n",
+ "Discriminator Loss: tf.Tensor(0.5654902, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.99977905, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 24505\n",
+ "Discriminator Loss: tf.Tensor(0.5353831, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.9458428, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 24506\n",
+ "Discriminator Loss: tf.Tensor(1.6429304, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.5495201, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 24507\n",
+ "Discriminator Loss: tf.Tensor(0.7466186, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.4319022, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 24508\n",
+ "Discriminator Loss: tf.Tensor(0.8583513, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.3272955, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 24509\n",
+ "Discriminator Loss: tf.Tensor(0.9903593, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.092101805, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 24510\n",
+ "Discriminator Loss: tf.Tensor(0.9898217, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.6172819, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 24511\n",
+ "Discriminator Loss: tf.Tensor(1.1037354, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.057903748, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 24512\n",
+ "Discriminator Loss: tf.Tensor(0.9344535, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.7538655, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 24513\n",
+ "Discriminator Loss: tf.Tensor(0.8760026, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.9835667, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 24514\n",
+ "Discriminator Loss: tf.Tensor(0.9540813, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.0280809, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 24515\n",
+ "Discriminator Loss: tf.Tensor(0.769725, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.5419948, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 24516\n",
+ "Discriminator Loss: tf.Tensor(1.1909556, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.5845915, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 24517\n",
+ "Discriminator Loss: tf.Tensor(1.0242612, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.2784842, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 24518\n",
+ "Discriminator Loss: tf.Tensor(0.7178779, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.96564245, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 24519\n",
+ "Discriminator Loss: tf.Tensor(0.39438632, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.050725, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 24520\n",
+ "Discriminator Loss: tf.Tensor(0.7954006, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.1855882, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 24521\n",
+ "Discriminator Loss: tf.Tensor(0.6376559, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.61582005, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 24522\n",
+ "Discriminator Loss: tf.Tensor(1.188139, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.6580054, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 24523\n",
+ "Discriminator Loss: tf.Tensor(0.90265507, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.12873028, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 24524\n",
+ "Discriminator Loss: tf.Tensor(0.94494593, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.7750336, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 24525\n",
+ "Discriminator Loss: tf.Tensor(0.7822311, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.42430714, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 24526\n",
+ "Discriminator Loss: tf.Tensor(0.77314055, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.1186268, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 24527\n",
+ "Discriminator Loss: tf.Tensor(0.56681806, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.62581134, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 24528\n",
+ "Discriminator Loss: tf.Tensor(0.7407125, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.9152066, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 24529\n",
+ "Discriminator Loss: tf.Tensor(0.85846066, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.42100278, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 24530\n",
+ "Discriminator Loss: tf.Tensor(0.52767587, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.731722, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 24531\n",
+ "Discriminator Loss: tf.Tensor(0.88082695, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.3360666, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 24532\n",
+ "Discriminator Loss: tf.Tensor(1.005272, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.6709789, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 24533\n",
+ "Discriminator Loss: tf.Tensor(0.6135928, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.6302579, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 24534\n",
+ "Discriminator Loss: tf.Tensor(0.83557665, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.2526801, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 24535\n",
+ "Discriminator Loss: tf.Tensor(0.57342243, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.9858751, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 24536\n",
+ "Discriminator Loss: tf.Tensor(0.5410954, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.2394245, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 24537\n",
+ "Discriminator Loss: tf.Tensor(0.5872091, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.72257537, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 24538\n",
+ "Discriminator Loss: tf.Tensor(1.3538337, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.154528, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 24539\n",
+ "Discriminator Loss: tf.Tensor(0.86816823, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.28802165, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 24540\n",
+ "Discriminator Loss: tf.Tensor(0.84910434, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.017625, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 24541\n",
+ "Discriminator Loss: tf.Tensor(0.7165205, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.3627362, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 24542\n",
+ "Discriminator Loss: tf.Tensor(0.68535423, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.6082327, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 24543\n",
+ "Discriminator Loss: tf.Tensor(0.50764465, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.3149693, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 24544\n",
+ "Discriminator Loss: tf.Tensor(0.23516905, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.0891392, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 24545\n",
+ "Discriminator Loss: tf.Tensor(1.2917924, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.5928904, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 24546\n",
+ "Discriminator Loss: tf.Tensor(1.3184967, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.22769289, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 24547\n",
+ "Discriminator Loss: tf.Tensor(0.88738173, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.370252, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 24548\n",
+ "Discriminator Loss: tf.Tensor(0.9698159, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.33711562, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 24549\n",
+ "Discriminator Loss: tf.Tensor(0.6385303, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.6214463, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 24550\n",
+ "Discriminator Loss: tf.Tensor(0.5896792, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.55973, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 24551\n",
+ "Discriminator Loss: tf.Tensor(0.9047369, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.3243561, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 24552\n",
+ "Discriminator Loss: tf.Tensor(0.5111875, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.2695671, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 24553\n",
+ "Discriminator Loss: tf.Tensor(0.4551566, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.8221312, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 24554\n",
+ "Discriminator Loss: tf.Tensor(1.1622337, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.8481725, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 24555\n",
+ "Discriminator Loss: tf.Tensor(0.8127421, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.28736234, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 24556\n",
+ "Discriminator Loss: tf.Tensor(1.2402793, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.6096897, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 24557\n",
+ "Discriminator Loss: tf.Tensor(0.4590955, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.62720144, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 24558\n",
+ "Discriminator Loss: tf.Tensor(0.80664283, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.0896214, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 24559\n",
+ "Discriminator Loss: tf.Tensor(0.77518535, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.2138098, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 24560\n",
+ "Discriminator Loss: tf.Tensor(0.5230928, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.72108436, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 24561\n",
+ "Discriminator Loss: tf.Tensor(1.0554316, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.0036163, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 24562\n",
+ "Discriminator Loss: tf.Tensor(0.99881417, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.36421847, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 24563\n",
+ "Discriminator Loss: tf.Tensor(0.6774595, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.78904694, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 24564\n",
+ "Discriminator Loss: tf.Tensor(0.69191337, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.3840898, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 24565\n",
+ "Discriminator Loss: tf.Tensor(0.5793565, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.45545542, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 24566\n",
+ "Discriminator Loss: tf.Tensor(0.75102246, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.9069686, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 24567\n",
+ "Discriminator Loss: tf.Tensor(0.79380095, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.33401635, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 24568\n",
+ "Discriminator Loss: tf.Tensor(0.78025967, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.4662638, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 24569\n",
+ "Discriminator Loss: tf.Tensor(0.6215211, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.57039654, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 24570\n",
+ "Discriminator Loss: tf.Tensor(0.6087775, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.9368488, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 24571\n",
+ "Discriminator Loss: tf.Tensor(0.4858197, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.7357212, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 24572\n",
+ "Discriminator Loss: tf.Tensor(0.9034074, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.6878095, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 24573\n",
+ "Discriminator Loss: tf.Tensor(0.8518154, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.34283125, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 24574\n",
+ "Discriminator Loss: tf.Tensor(1.1858989, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.6866783, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 24575\n",
+ "Discriminator Loss: tf.Tensor(0.6434942, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.5282867, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 24576\n",
+ "Discriminator Loss: tf.Tensor(0.38938957, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.1961321, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 24577\n",
+ "Discriminator Loss: tf.Tensor(0.6048037, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.3972082, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 24578\n",
+ "Discriminator Loss: tf.Tensor(0.8161951, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.51252264, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 24579\n",
+ "Discriminator Loss: tf.Tensor(0.69752127, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.4827245, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 24580\n",
+ "Discriminator Loss: tf.Tensor(0.73633933, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.5604554, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 24581\n",
+ "Discriminator Loss: tf.Tensor(1.110708, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.1235445, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 24582\n",
+ "Discriminator Loss: tf.Tensor(0.49532586, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.62870467, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 24583\n",
+ "Discriminator Loss: tf.Tensor(0.71347713, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.3375888, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 24584\n",
+ "Discriminator Loss: tf.Tensor(0.88349587, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.55898136, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 24585\n",
+ "Discriminator Loss: tf.Tensor(1.2821885, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.9809615, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 24586\n",
+ "Discriminator Loss: tf.Tensor(0.2949157, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.1549742, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 24587\n",
+ "Discriminator Loss: tf.Tensor(1.175827, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.4439632, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 24588\n",
+ "Discriminator Loss: tf.Tensor(0.799654, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.269022, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 24589\n",
+ "Discriminator Loss: tf.Tensor(1.1470349, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.8885643, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 24590\n",
+ "Discriminator Loss: tf.Tensor(0.45933446, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.83387154, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 24591\n",
+ "Discriminator Loss: tf.Tensor(1.3672384, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.8195823, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 24592\n",
+ "Discriminator Loss: tf.Tensor(1.0655402, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.25138617, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 24593\n",
+ "Discriminator Loss: tf.Tensor(0.90509105, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.3052227, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 24594\n",
+ "Discriminator Loss: tf.Tensor(0.8255044, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.28498438, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 24595\n",
+ "Discriminator Loss: tf.Tensor(0.7958999, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.6792287, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 24596\n",
+ "Discriminator Loss: tf.Tensor(0.8612622, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.53418034, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 24597\n",
+ "Discriminator Loss: tf.Tensor(0.31065246, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.130622, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 24598\n",
+ "Discriminator Loss: tf.Tensor(0.45724422, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.89641494, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 24599\n",
+ "Discriminator Loss: tf.Tensor(1.0487494, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.9094744, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 24600\n",
+ "Discriminator Loss: tf.Tensor(0.7725237, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.3358784, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 24601\n",
+ "Discriminator Loss: tf.Tensor(1.2397492, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.8698565, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 24602\n",
+ "Discriminator Loss: tf.Tensor(0.95038456, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.53646594, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 24603\n",
+ "Discriminator Loss: tf.Tensor(0.8334136, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.96509665, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 24604\n",
+ "Discriminator Loss: tf.Tensor(0.4376198, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.0200096, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 24605\n",
+ "Discriminator Loss: tf.Tensor(0.4978719, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.2985128, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 24606\n",
+ "Discriminator Loss: tf.Tensor(0.42338413, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.0324262, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 24607\n",
+ "Discriminator Loss: tf.Tensor(1.1202563, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.0484496, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 24608\n",
+ "Discriminator Loss: tf.Tensor(0.5533968, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.78772146, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 24609\n",
+ "Discriminator Loss: tf.Tensor(1.6055744, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.0628946, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 24610\n",
+ "Discriminator Loss: tf.Tensor(1.1194413, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.112730406, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 24611\n",
+ "Discriminator Loss: tf.Tensor(0.731997, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.1108251, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 24612\n",
+ "Discriminator Loss: tf.Tensor(0.8236778, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.7109294, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 24613\n",
+ "Discriminator Loss: tf.Tensor(0.87295926, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.05854, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 24614\n",
+ "Discriminator Loss: tf.Tensor(1.0815076, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.22942, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 24615\n",
+ "Discriminator Loss: tf.Tensor(0.6019459, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.54826266, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 24616\n",
+ "Discriminator Loss: tf.Tensor(0.9956917, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.7519193, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 24617\n",
+ "Discriminator Loss: tf.Tensor(0.7056352, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.47204652, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 24618\n",
+ "Discriminator Loss: tf.Tensor(0.707117, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.5947366, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 24619\n",
+ "Discriminator Loss: tf.Tensor(0.4605101, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.89387536, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 24620\n",
+ "Discriminator Loss: tf.Tensor(0.85732543, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.0715715, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 24621\n",
+ "Discriminator Loss: tf.Tensor(0.5216395, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.8314821, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 24622\n",
+ "Discriminator Loss: tf.Tensor(0.63243437, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.3015757, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 24623\n",
+ "Discriminator Loss: tf.Tensor(0.4202815, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.3460776, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 24624\n",
+ "Discriminator Loss: tf.Tensor(0.74966085, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.54267746, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 24625\n",
+ "Discriminator Loss: tf.Tensor(0.8757758, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.6795458, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 24626\n",
+ "Discriminator Loss: tf.Tensor(0.35890818, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.1145133, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 24627\n",
+ "Discriminator Loss: tf.Tensor(1.2003312, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.7917054, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 24628\n",
+ "Discriminator Loss: tf.Tensor(0.7118842, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.6533642, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 24629\n",
+ "Discriminator Loss: tf.Tensor(1.128133, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.7071842, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 24630\n",
+ "Discriminator Loss: tf.Tensor(1.0050457, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.20117438, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 24631\n",
+ "Discriminator Loss: tf.Tensor(0.96970874, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.400507, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 24632\n",
+ "Discriminator Loss: tf.Tensor(1.1916387, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.032302286, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 24633\n",
+ "Discriminator Loss: tf.Tensor(0.7910447, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.4254222, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 24634\n",
+ "Discriminator Loss: tf.Tensor(1.0008763, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.22446628, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 24635\n",
+ "Discriminator Loss: tf.Tensor(0.9582398, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.2796599, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 24636\n",
+ "Discriminator Loss: tf.Tensor(0.7993401, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.3252912, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 24637\n",
+ "Discriminator Loss: tf.Tensor(0.94976515, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.6372728, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 24638\n",
+ "Discriminator Loss: tf.Tensor(0.59090084, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.5665558, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 24639\n",
+ "Discriminator Loss: tf.Tensor(0.60363877, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.2425671, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 24640\n",
+ "Discriminator Loss: tf.Tensor(0.49907732, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.79651326, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 24641\n",
+ "Discriminator Loss: tf.Tensor(0.46998882, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.5517644, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 24642\n",
+ "Discriminator Loss: tf.Tensor(0.60659504, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.7388809, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 24643\n",
+ "Discriminator Loss: tf.Tensor(1.0567259, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.1789936, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 24644\n",
+ "Discriminator Loss: tf.Tensor(0.5012353, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.087454, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 24645\n",
+ "Discriminator Loss: tf.Tensor(1.1454616, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.7412666, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 24646\n",
+ "Discriminator Loss: tf.Tensor(0.9304476, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.21613018, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 24647\n",
+ "Discriminator Loss: tf.Tensor(1.0475177, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.3482075, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 24648\n",
+ "Discriminator Loss: tf.Tensor(0.73135895, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.3460398, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 24649\n",
+ "Discriminator Loss: tf.Tensor(0.7955884, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.5551018, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 24650\n",
+ "Discriminator Loss: tf.Tensor(0.7082608, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.50773436, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 24651\n",
+ "Discriminator Loss: tf.Tensor(0.58244187, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.2552633, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 24652\n",
+ "Discriminator Loss: tf.Tensor(0.55141497, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.6638617, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 24653\n",
+ "Discriminator Loss: tf.Tensor(1.1671517, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.1622887, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 24654\n",
+ "Discriminator Loss: tf.Tensor(0.89112693, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.15753254, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 24655\n",
+ "Discriminator Loss: tf.Tensor(0.72801703, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.3395647, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 24656\n",
+ "Discriminator Loss: tf.Tensor(0.8756784, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.68307155, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 24657\n",
+ "Discriminator Loss: tf.Tensor(0.78210557, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.1736931, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 24658\n",
+ "Discriminator Loss: tf.Tensor(0.49805596, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.98041946, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 24659\n",
+ "Discriminator Loss: tf.Tensor(0.31977174, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.0336426, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 24660\n",
+ "Discriminator Loss: tf.Tensor(0.8823335, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.1463205, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 24661\n",
+ "Discriminator Loss: tf.Tensor(0.44442654, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.8322107, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 24662\n",
+ "Discriminator Loss: tf.Tensor(1.5798802, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.2356646, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 24663\n",
+ "Discriminator Loss: tf.Tensor(0.7064059, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.43505263, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 24664\n",
+ "Discriminator Loss: tf.Tensor(1.0127174, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.2320081, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 24665\n",
+ "Discriminator Loss: tf.Tensor(0.74727184, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.31176656, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 24666\n",
+ "Discriminator Loss: tf.Tensor(0.95554423, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.3008085, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 24667\n",
+ "Discriminator Loss: tf.Tensor(0.61808074, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.42550054, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 24668\n",
+ "Discriminator Loss: tf.Tensor(0.68660176, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.5624918, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 24669\n",
+ "Discriminator Loss: tf.Tensor(0.8057338, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.25480363, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 24670\n",
+ "Discriminator Loss: tf.Tensor(0.6670145, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.7637082, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 24671\n",
+ "Discriminator Loss: tf.Tensor(0.9754859, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.47868207, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 24672\n",
+ "Discriminator Loss: tf.Tensor(0.54970074, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.3653086, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 24673\n",
+ "Discriminator Loss: tf.Tensor(0.94535226, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.10568825, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 24674\n",
+ "Discriminator Loss: tf.Tensor(1.5261035, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.043823, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 24675\n",
+ "Discriminator Loss: tf.Tensor(0.76732606, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.5030076, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 24676\n",
+ "Discriminator Loss: tf.Tensor(0.71467733, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.185593, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 24677\n",
+ "Discriminator Loss: tf.Tensor(0.6131165, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.60247797, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 24678\n",
+ "Discriminator Loss: tf.Tensor(0.92568433, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.1972872, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 24679\n",
+ "Discriminator Loss: tf.Tensor(0.69498366, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.033291, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 24680\n",
+ "Discriminator Loss: tf.Tensor(0.8939598, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.153707, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 24681\n",
+ "Discriminator Loss: tf.Tensor(0.33215672, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.95051646, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 24682\n",
+ "Discriminator Loss: tf.Tensor(0.8468819, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.3093314, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 24683\n",
+ "Discriminator Loss: tf.Tensor(0.58885074, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.86525935, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 24684\n",
+ "Discriminator Loss: tf.Tensor(0.63841903, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.1339198, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 24685\n",
+ "Discriminator Loss: tf.Tensor(0.5553225, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.0634252, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 24686\n",
+ "Discriminator Loss: tf.Tensor(0.80209994, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.6696674, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 24687\n",
+ "Discriminator Loss: tf.Tensor(1.2812445, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.6110978, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 24688\n",
+ "Discriminator Loss: tf.Tensor(1.221409, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.16040063, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 24689\n",
+ "Discriminator Loss: tf.Tensor(1.1593491, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.1167511, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 24690\n",
+ "Discriminator Loss: tf.Tensor(0.45777422, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.5768647, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 24691\n",
+ "Discriminator Loss: tf.Tensor(1.028726, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.8047365, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 24692\n",
+ "Discriminator Loss: tf.Tensor(0.61888194, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.42603686, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 24693\n",
+ "Discriminator Loss: tf.Tensor(0.88221574, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.5140405, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 24694\n",
+ "Discriminator Loss: tf.Tensor(0.3977091, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.6515398, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 24695\n",
+ "Discriminator Loss: tf.Tensor(0.8947758, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.6428566, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 24696\n",
+ "Discriminator Loss: tf.Tensor(0.7061273, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.61706454, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 24697\n",
+ "Discriminator Loss: tf.Tensor(1.0955458, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.97071475, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 24698\n",
+ "Discriminator Loss: tf.Tensor(0.67419827, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.2923843, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 24699\n",
+ "Discriminator Loss: tf.Tensor(0.6665065, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.2066869, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 24700\n",
+ "Discriminator Loss: tf.Tensor(0.4923473, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.7851015, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 24701\n",
+ "Discriminator Loss: tf.Tensor(1.8829556, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.9107206, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 24702\n",
+ "Discriminator Loss: tf.Tensor(0.9787, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.21540101, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 24703\n",
+ "Discriminator Loss: tf.Tensor(0.8169967, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.4082278, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 24704\n",
+ "Discriminator Loss: tf.Tensor(0.66071254, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.3674096, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 24705\n",
+ "Discriminator Loss: tf.Tensor(0.43483484, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.6385657, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 24706\n",
+ "Discriminator Loss: tf.Tensor(0.6432043, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.6831506, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 24707\n",
+ "Discriminator Loss: tf.Tensor(1.0168148, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.9208746, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 24708\n",
+ "Discriminator Loss: tf.Tensor(1.0802754, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.11031058, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 24709\n",
+ "Discriminator Loss: tf.Tensor(0.6927013, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.3244231, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 24710\n",
+ "Discriminator Loss: tf.Tensor(0.8861399, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.36774454, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 24711\n",
+ "Discriminator Loss: tf.Tensor(0.48422885, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.1321664, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 24712\n",
+ "Discriminator Loss: tf.Tensor(0.36684367, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.2728621, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 24713\n",
+ "Discriminator Loss: tf.Tensor(0.5536811, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.1648221, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 24714\n",
+ "Discriminator Loss: tf.Tensor(0.83895326, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.5781695, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 24715\n",
+ "Discriminator Loss: tf.Tensor(0.5566377, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.7465792, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 24716\n",
+ "Discriminator Loss: tf.Tensor(0.7911828, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.0437752, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 24717\n",
+ "Discriminator Loss: tf.Tensor(0.72544694, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.53687, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 24718\n",
+ "Discriminator Loss: tf.Tensor(0.85645795, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.43064913, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 24719\n",
+ "Discriminator Loss: tf.Tensor(0.563094, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.2243549, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 24720\n",
+ "Discriminator Loss: tf.Tensor(0.4997116, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.9407576, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 24721\n",
+ "Discriminator Loss: tf.Tensor(0.85541916, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.5205193, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 24722\n",
+ "Discriminator Loss: tf.Tensor(0.78632414, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.9618861, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 24723\n",
+ "Discriminator Loss: tf.Tensor(0.49070352, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.0698394, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 24724\n",
+ "Discriminator Loss: tf.Tensor(0.7723814, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.37115633, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 24725\n",
+ "Discriminator Loss: tf.Tensor(2.0120852, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.7290518, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 24726\n",
+ "Discriminator Loss: tf.Tensor(0.78064054, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.59806615, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 24727\n",
+ "Discriminator Loss: tf.Tensor(0.8318986, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.2664595, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 24728\n",
+ "Discriminator Loss: tf.Tensor(0.62523866, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.6885453, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 24729\n",
+ "Discriminator Loss: tf.Tensor(0.49716023, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.7332428, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 24730\n",
+ "Discriminator Loss: tf.Tensor(1.1058762, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.2098706, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 24731\n",
+ "Discriminator Loss: tf.Tensor(0.61136395, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.7229422, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 24732\n",
+ "Discriminator Loss: tf.Tensor(0.4625935, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.9874943, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 24733\n",
+ "Discriminator Loss: tf.Tensor(0.985134, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.0931689, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 24734\n",
+ "Discriminator Loss: tf.Tensor(0.6609974, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.6472947, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 24735\n",
+ "Discriminator Loss: tf.Tensor(1.2486737, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.7789253, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 24736\n",
+ "Discriminator Loss: tf.Tensor(1.0056233, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.16502158, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 24737\n",
+ "Discriminator Loss: tf.Tensor(0.8315445, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.1820974, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 24738\n",
+ "Discriminator Loss: tf.Tensor(0.44017395, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.77796465, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 24739\n",
+ "Discriminator Loss: tf.Tensor(1.0942197, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.580505, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 24740\n",
+ "Discriminator Loss: tf.Tensor(0.80435646, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.29242086, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 24741\n",
+ "Discriminator Loss: tf.Tensor(1.132239, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.637979, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 24742\n",
+ "Discriminator Loss: tf.Tensor(0.96406955, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.17657156, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 24743\n",
+ "Discriminator Loss: tf.Tensor(1.2962892, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.5907282, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 24744\n",
+ "Discriminator Loss: tf.Tensor(0.9781716, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.23029189, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 24745\n",
+ "Discriminator Loss: tf.Tensor(0.7537392, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.634398, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 24746\n",
+ "Discriminator Loss: tf.Tensor(1.0853778, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.1170878, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 24747\n",
+ "Discriminator Loss: tf.Tensor(1.0715307, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.27745572, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 24748\n",
+ "Discriminator Loss: tf.Tensor(0.41910726, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.1497442, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 24749\n",
+ "Discriminator Loss: tf.Tensor(0.49381265, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.70324403, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 24750\n",
+ "Discriminator Loss: tf.Tensor(0.9417179, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.1065338, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 24751\n",
+ "Discriminator Loss: tf.Tensor(0.90272045, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.8015651, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 24752\n",
+ "Discriminator Loss: tf.Tensor(0.4496252, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.0259739, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 24753\n",
+ "Discriminator Loss: tf.Tensor(0.35307842, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.99926597, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 24754\n",
+ "Discriminator Loss: tf.Tensor(0.5719942, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.94395566, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 24755\n",
+ "Discriminator Loss: tf.Tensor(1.0218191, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.5910177, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 24756\n",
+ "Discriminator Loss: tf.Tensor(0.6895678, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.44858918, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 24757\n",
+ "Discriminator Loss: tf.Tensor(1.2418947, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.7647852, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 24758\n",
+ "Discriminator Loss: tf.Tensor(0.6362808, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.5152367, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 24759\n",
+ "Discriminator Loss: tf.Tensor(0.65797603, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.4359612, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 24760\n",
+ "Discriminator Loss: tf.Tensor(0.94391656, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.31794012, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 24761\n",
+ "Discriminator Loss: tf.Tensor(0.80683804, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.5473663, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 24762\n",
+ "Discriminator Loss: tf.Tensor(0.57132196, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.64212114, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 24763\n",
+ "Discriminator Loss: tf.Tensor(1.0262485, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.0042658, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 24764\n",
+ "Discriminator Loss: tf.Tensor(0.8120737, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.3451538, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 24765\n",
+ "Discriminator Loss: tf.Tensor(0.7812358, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.93174297, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 24766\n",
+ "Discriminator Loss: tf.Tensor(1.028717, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.77173376, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 24767\n",
+ "Discriminator Loss: tf.Tensor(0.8331115, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.7136992, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 24768\n",
+ "Discriminator Loss: tf.Tensor(0.89878535, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.16513878, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 24769\n",
+ "Discriminator Loss: tf.Tensor(0.8411291, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.5640564, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 24770\n",
+ "Discriminator Loss: tf.Tensor(0.75180507, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.57687783, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 24771\n",
+ "Discriminator Loss: tf.Tensor(1.1534369, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.8441185, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 24772\n",
+ "Discriminator Loss: tf.Tensor(0.7357374, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.33931518, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 24773\n",
+ "Discriminator Loss: tf.Tensor(1.0690722, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.93209153, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 24774\n",
+ "Discriminator Loss: tf.Tensor(0.4893478, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.73565, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 24775\n",
+ "Discriminator Loss: tf.Tensor(1.2753956, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.0758126, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 24776\n",
+ "Discriminator Loss: tf.Tensor(0.8179866, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.28305128, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 24777\n",
+ "Discriminator Loss: tf.Tensor(0.8401864, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.7996475, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 24778\n",
+ "Discriminator Loss: tf.Tensor(0.8459017, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.28735974, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 24779\n",
+ "Discriminator Loss: tf.Tensor(0.45132184, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.3238145, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 24780\n",
+ "Discriminator Loss: tf.Tensor(0.509405, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.90087944, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 24781\n",
+ "Discriminator Loss: tf.Tensor(0.67696846, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.1683365, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 24782\n",
+ "Discriminator Loss: tf.Tensor(0.49069887, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.8544283, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 24783\n",
+ "Discriminator Loss: tf.Tensor(0.89922595, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.9357697, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 24784\n",
+ "Discriminator Loss: tf.Tensor(0.8830461, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.15891914, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 24785\n",
+ "Discriminator Loss: tf.Tensor(1.2300857, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.6921989, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 24786\n",
+ "Discriminator Loss: tf.Tensor(0.8247863, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.3975413, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 24787\n",
+ "Discriminator Loss: tf.Tensor(1.0273519, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.1038073, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 24788\n",
+ "Discriminator Loss: tf.Tensor(0.44513792, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.977681, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 24789\n",
+ "Discriminator Loss: tf.Tensor(0.33108258, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.1174282, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 24790\n",
+ "Discriminator Loss: tf.Tensor(0.580088, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.3168226, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 24791\n",
+ "Discriminator Loss: tf.Tensor(0.31289667, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.73982334, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 24792\n",
+ "Discriminator Loss: tf.Tensor(1.3078051, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.570829, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 24793\n",
+ "Discriminator Loss: tf.Tensor(0.6265636, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.5639787, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 24794\n",
+ "Discriminator Loss: tf.Tensor(0.79705274, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.1459651, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 24795\n",
+ "Discriminator Loss: tf.Tensor(0.6679723, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.71703225, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 24796\n",
+ "Discriminator Loss: tf.Tensor(0.96122074, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.3469204, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 24797\n",
+ "Discriminator Loss: tf.Tensor(0.7709874, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.32753408, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 24798\n",
+ "Discriminator Loss: tf.Tensor(0.88284206, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.9314372, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 24799\n",
+ "Discriminator Loss: tf.Tensor(0.37519425, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.1023897, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 24800\n",
+ "Discriminator Loss: tf.Tensor(0.42584944, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.2748855, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 24801\n",
+ "Discriminator Loss: tf.Tensor(0.62137973, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.211099, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 24802\n",
+ "Discriminator Loss: tf.Tensor(0.8213748, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.2848501, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 24803\n",
+ "Discriminator Loss: tf.Tensor(1.1502975, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.7511144, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 24804\n",
+ "Discriminator Loss: tf.Tensor(0.6187302, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.5000743, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 24805\n",
+ "Discriminator Loss: tf.Tensor(0.8285644, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.3632134, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 24806\n",
+ "Discriminator Loss: tf.Tensor(0.8281287, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.41849956, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 24807\n",
+ "Discriminator Loss: tf.Tensor(0.92708164, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.3835498, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 24808\n",
+ "Discriminator Loss: tf.Tensor(0.7550913, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.40181413, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 24809\n",
+ "Discriminator Loss: tf.Tensor(1.2911595, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.6802797, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 24810\n",
+ "Discriminator Loss: tf.Tensor(0.56481665, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.47072664, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 24811\n",
+ "Discriminator Loss: tf.Tensor(1.1060112, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.6099192, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 24812\n",
+ "Discriminator Loss: tf.Tensor(0.8605616, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.34017408, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 24813\n",
+ "Discriminator Loss: tf.Tensor(0.7334905, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.0832623, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 24814\n",
+ "Discriminator Loss: tf.Tensor(0.237019, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.1387316, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 24815\n",
+ "Discriminator Loss: tf.Tensor(0.68769586, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.3261391, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 24816\n",
+ "Discriminator Loss: tf.Tensor(0.37557194, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.8457473, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 24817\n",
+ "Discriminator Loss: tf.Tensor(0.98763514, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.5256249, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 24818\n",
+ "Discriminator Loss: tf.Tensor(0.94103056, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.14714767, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 24819\n",
+ "Discriminator Loss: tf.Tensor(0.816598, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.2139453, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 24820\n",
+ "Discriminator Loss: tf.Tensor(1.180478, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.7394931, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 24821\n",
+ "Discriminator Loss: tf.Tensor(0.84647155, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.65665966, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 24822\n",
+ "Discriminator Loss: tf.Tensor(0.64648235, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.1748413, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 24823\n",
+ "Discriminator Loss: tf.Tensor(0.99301577, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.4444675, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 24824\n",
+ "Discriminator Loss: tf.Tensor(0.580783, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.6928296, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 24825\n",
+ "Discriminator Loss: tf.Tensor(0.7492343, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.402791, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 24826\n",
+ "Discriminator Loss: tf.Tensor(0.5596326, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.7100375, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 24827\n",
+ "Discriminator Loss: tf.Tensor(0.91680163, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.3959837, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 24828\n",
+ "Discriminator Loss: tf.Tensor(0.5812371, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.90454704, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 24829\n",
+ "Discriminator Loss: tf.Tensor(0.5818845, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.549354, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 24830\n",
+ "Discriminator Loss: tf.Tensor(0.84278655, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.25088644, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 24831\n",
+ "Discriminator Loss: tf.Tensor(1.4425819, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.7403389, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 24832\n",
+ "Discriminator Loss: tf.Tensor(0.78154165, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.5263675, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 24833\n",
+ "Discriminator Loss: tf.Tensor(1.1613216, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.4917587, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 24834\n",
+ "Discriminator Loss: tf.Tensor(0.52970725, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.7139127, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 24835\n",
+ "Discriminator Loss: tf.Tensor(0.64919794, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.7245731, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 24836\n",
+ "Discriminator Loss: tf.Tensor(0.9631667, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.1749748, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 24837\n",
+ "Discriminator Loss: tf.Tensor(0.593009, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.7215086, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 24838\n",
+ "Discriminator Loss: tf.Tensor(0.4527117, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.7705613, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 24839\n",
+ "Discriminator Loss: tf.Tensor(1.217191, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.4779425, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 24840\n",
+ "Discriminator Loss: tf.Tensor(0.56745106, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.6374091, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 24841\n",
+ "Discriminator Loss: tf.Tensor(0.6472308, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.4831785, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 24842\n",
+ "Discriminator Loss: tf.Tensor(0.63635, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.0635592, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 24843\n",
+ "Discriminator Loss: tf.Tensor(0.23723963, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.3256302, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 24844\n",
+ "Discriminator Loss: tf.Tensor(0.60962874, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.0749383, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 24845\n",
+ "Discriminator Loss: tf.Tensor(0.6988766, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.78553295, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 24846\n",
+ "Discriminator Loss: tf.Tensor(1.7350826, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.1413548, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 24847\n",
+ "Discriminator Loss: tf.Tensor(1.0349383, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.1880412, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 24848\n",
+ "Discriminator Loss: tf.Tensor(1.0515015, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.0089192, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 24849\n",
+ "Discriminator Loss: tf.Tensor(0.8438747, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.6089105, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 24850\n",
+ "Discriminator Loss: tf.Tensor(0.84060854, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.2447836, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 24851\n",
+ "Discriminator Loss: tf.Tensor(0.6547224, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.3898616, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 24852\n",
+ "Discriminator Loss: tf.Tensor(1.1043072, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.5646071, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 24853\n",
+ "Discriminator Loss: tf.Tensor(0.8995299, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.22807549, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 24854\n",
+ "Discriminator Loss: tf.Tensor(0.5210285, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.3676594, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 24855\n",
+ "Discriminator Loss: tf.Tensor(0.5907111, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.63223356, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 24856\n",
+ "Discriminator Loss: tf.Tensor(1.0675069, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.6459633, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 24857\n",
+ "Discriminator Loss: tf.Tensor(0.7099529, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.48488402, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 24858\n",
+ "Discriminator Loss: tf.Tensor(0.53916395, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.4456295, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 24859\n",
+ "Discriminator Loss: tf.Tensor(0.71675843, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.75852877, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 24860\n",
+ "Discriminator Loss: tf.Tensor(0.88666135, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.9609998, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 24861\n",
+ "Discriminator Loss: tf.Tensor(0.19842489, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.93349093, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 24862\n",
+ "Discriminator Loss: tf.Tensor(1.1078277, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.7653893, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 24863\n",
+ "Discriminator Loss: tf.Tensor(0.72896314, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.4580101, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 24864\n",
+ "Discriminator Loss: tf.Tensor(0.9199126, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.3903761, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 24865\n",
+ "Discriminator Loss: tf.Tensor(0.78338724, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.4024411, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 24866\n",
+ "Discriminator Loss: tf.Tensor(0.64989805, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.3547057, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 24867\n",
+ "Discriminator Loss: tf.Tensor(0.7409347, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.4682251, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 24868\n",
+ "Discriminator Loss: tf.Tensor(1.0650537, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.4214281, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 24869\n",
+ "Discriminator Loss: tf.Tensor(0.94475174, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.3930447, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 24870\n",
+ "Discriminator Loss: tf.Tensor(0.778448, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.4442095, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 24871\n",
+ "Discriminator Loss: tf.Tensor(0.5503821, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.7751258, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 24872\n",
+ "Discriminator Loss: tf.Tensor(0.96175003, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.1876144, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 24873\n",
+ "Discriminator Loss: tf.Tensor(0.59594065, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.62891734, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 24874\n",
+ "Discriminator Loss: tf.Tensor(0.68200564, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.4772469, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 24875\n",
+ "Discriminator Loss: tf.Tensor(0.66140264, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.2530069, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 24876\n",
+ "Discriminator Loss: tf.Tensor(0.7689101, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.71319675, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 24877\n",
+ "Discriminator Loss: tf.Tensor(0.89053667, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.7463948, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 24878\n",
+ "Discriminator Loss: tf.Tensor(0.87086856, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.163425, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 24879\n",
+ "Discriminator Loss: tf.Tensor(1.1485093, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.7906556, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 24880\n",
+ "Discriminator Loss: tf.Tensor(0.6994054, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.6450107, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 24881\n",
+ "Discriminator Loss: tf.Tensor(0.8198323, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.4114221, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 24882\n",
+ "Discriminator Loss: tf.Tensor(0.7298516, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.47354102, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 24883\n",
+ "Discriminator Loss: tf.Tensor(0.4773677, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.3940278, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 24884\n",
+ "Discriminator Loss: tf.Tensor(0.6896465, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.7615885, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 24885\n",
+ "Discriminator Loss: tf.Tensor(0.6032118, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.2170223, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 24886\n",
+ "Discriminator Loss: tf.Tensor(0.33131576, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.9301316, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 24887\n",
+ "Discriminator Loss: tf.Tensor(1.3609588, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.8385195, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 24888\n",
+ "Discriminator Loss: tf.Tensor(0.85954684, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.37640592, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 24889\n",
+ "Discriminator Loss: tf.Tensor(0.6871386, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.1361859, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 24890\n",
+ "Discriminator Loss: tf.Tensor(1.0149276, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.2836777, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 24891\n",
+ "Discriminator Loss: tf.Tensor(0.91232586, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.5797712, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 24892\n",
+ "Discriminator Loss: tf.Tensor(0.36120418, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.69338554, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 24893\n",
+ "Discriminator Loss: tf.Tensor(1.1796727, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.3921095, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 24894\n",
+ "Discriminator Loss: tf.Tensor(0.49296665, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.89948773, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 24895\n",
+ "Discriminator Loss: tf.Tensor(0.45387298, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.6085892, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 24896\n",
+ "Discriminator Loss: tf.Tensor(0.755448, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.59269506, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 24897\n",
+ "Discriminator Loss: tf.Tensor(0.9997512, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.6281109, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 24898\n",
+ "Discriminator Loss: tf.Tensor(0.58922625, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.88090295, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 24899\n",
+ "Discriminator Loss: tf.Tensor(0.56537867, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.3157172, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 24900\n",
+ "Discriminator Loss: tf.Tensor(1.1704282, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.100252956, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 24901\n",
+ "Discriminator Loss: tf.Tensor(1.1495407, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.5984224, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 24902\n",
+ "Discriminator Loss: tf.Tensor(0.81818163, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.32637063, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 24903\n",
+ "Discriminator Loss: tf.Tensor(0.5976906, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.8032068, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 24904\n",
+ "Discriminator Loss: tf.Tensor(0.9273313, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.28635055, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 24905\n",
+ "Discriminator Loss: tf.Tensor(0.47255403, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.4586121, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 24906\n",
+ "Discriminator Loss: tf.Tensor(0.51452553, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.69221854, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 24907\n",
+ "Discriminator Loss: tf.Tensor(1.0670687, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.9781399, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 24908\n",
+ "Discriminator Loss: tf.Tensor(1.0066769, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.3698108, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 24909\n",
+ "Discriminator Loss: tf.Tensor(0.77576745, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.2712628, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 24910\n",
+ "Discriminator Loss: tf.Tensor(0.77526706, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.67867154, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 24911\n",
+ "Discriminator Loss: tf.Tensor(0.46347684, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.6983465, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 24912\n",
+ "Discriminator Loss: tf.Tensor(0.9226634, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.4364587, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 24913\n",
+ "Discriminator Loss: tf.Tensor(0.80320877, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.2962056, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 24914\n",
+ "Discriminator Loss: tf.Tensor(0.8801337, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.3439624, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 24915\n",
+ "Discriminator Loss: tf.Tensor(0.5747584, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.5905558, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 24916\n",
+ "Discriminator Loss: tf.Tensor(0.7154901, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.5464418, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 24917\n",
+ "Discriminator Loss: tf.Tensor(0.65120393, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.6400971, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 24918\n",
+ "Discriminator Loss: tf.Tensor(0.52686954, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.6807068, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 24919\n",
+ "Discriminator Loss: tf.Tensor(0.8711473, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.5984249, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 24920\n",
+ "Discriminator Loss: tf.Tensor(0.81257355, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.1615785, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 24921\n",
+ "Discriminator Loss: tf.Tensor(0.5202053, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.6827395, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 24922\n",
+ "Discriminator Loss: tf.Tensor(0.7246394, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.9777704, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 24923\n",
+ "Discriminator Loss: tf.Tensor(0.83760536, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.27592075, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 24924\n",
+ "Discriminator Loss: tf.Tensor(1.0264637, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.7807169, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 24925\n",
+ "Discriminator Loss: tf.Tensor(0.34006682, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.75896406, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 24926\n",
+ "Discriminator Loss: tf.Tensor(1.0646986, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.5216271, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 24927\n",
+ "Discriminator Loss: tf.Tensor(1.0699246, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.5251975, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 24928\n",
+ "Discriminator Loss: tf.Tensor(0.6495951, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.4105011, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 24929\n",
+ "Discriminator Loss: tf.Tensor(0.715533, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.34483397, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 24930\n",
+ "Discriminator Loss: tf.Tensor(0.8355938, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.6197926, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 24931\n",
+ "Discriminator Loss: tf.Tensor(0.8425342, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.39505044, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 24932\n",
+ "Discriminator Loss: tf.Tensor(0.73256016, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.4881233, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 24933\n",
+ "Discriminator Loss: tf.Tensor(0.46997815, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.63270783, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 24934\n",
+ "Discriminator Loss: tf.Tensor(0.64679945, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.5978507, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 24935\n",
+ "Discriminator Loss: tf.Tensor(0.25649628, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.987412, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 24936\n",
+ "Discriminator Loss: tf.Tensor(1.1918705, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.7917385, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 24937\n",
+ "Discriminator Loss: tf.Tensor(0.6673197, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.3577458, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 24938\n",
+ "Discriminator Loss: tf.Tensor(1.0373693, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.4253145, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 24939\n",
+ "Discriminator Loss: tf.Tensor(1.018395, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.08123926, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 24940\n",
+ "Discriminator Loss: tf.Tensor(0.6236415, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.2267766, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 24941\n",
+ "Discriminator Loss: tf.Tensor(0.40320927, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.9117386, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 24942\n",
+ "Discriminator Loss: tf.Tensor(0.8528023, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.455522, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 24943\n",
+ "Discriminator Loss: tf.Tensor(0.7343691, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.54628235, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 24944\n",
+ "Discriminator Loss: tf.Tensor(1.3184927, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.6469444, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 24945\n",
+ "Discriminator Loss: tf.Tensor(1.088575, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.13752581, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 24946\n",
+ "Discriminator Loss: tf.Tensor(0.6858603, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.7753027, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 24947\n",
+ "Discriminator Loss: tf.Tensor(0.7758435, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.014784, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 24948\n",
+ "Discriminator Loss: tf.Tensor(0.44526386, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.9423435, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 24949\n",
+ "Discriminator Loss: tf.Tensor(0.5593761, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.6822491, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 24950\n",
+ "Discriminator Loss: tf.Tensor(0.62883246, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.6328725, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 24951\n",
+ "Discriminator Loss: tf.Tensor(1.3287506, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.8533583, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 24952\n",
+ "Discriminator Loss: tf.Tensor(0.7948143, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.3882017, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 24953\n",
+ "Discriminator Loss: tf.Tensor(0.6680449, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.6315726, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 24954\n",
+ "Discriminator Loss: tf.Tensor(0.7444464, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.30788186, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 24955\n",
+ "Discriminator Loss: tf.Tensor(1.2833877, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.6992975, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 24956\n",
+ "Discriminator Loss: tf.Tensor(0.7054973, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.5646993, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 24957\n",
+ "Discriminator Loss: tf.Tensor(0.55512816, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.2069651, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 24958\n",
+ "Discriminator Loss: tf.Tensor(0.50236565, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.4639698, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 24959\n",
+ "Discriminator Loss: tf.Tensor(0.5690267, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.1215199, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 24960\n",
+ "Discriminator Loss: tf.Tensor(1.1962907, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.85554796, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 24961\n",
+ "Discriminator Loss: tf.Tensor(0.50417894, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.2333117, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 24962\n",
+ "Discriminator Loss: tf.Tensor(1.1009603, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.14304076, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 24963\n",
+ "Discriminator Loss: tf.Tensor(1.3034288, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.6620407, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 24964\n",
+ "Discriminator Loss: tf.Tensor(0.8088633, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.38010475, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 24965\n",
+ "Discriminator Loss: tf.Tensor(1.1370063, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.1051744, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 24966\n",
+ "Discriminator Loss: tf.Tensor(0.5884431, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.66393095, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 24967\n",
+ "Discriminator Loss: tf.Tensor(0.59275943, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.5132583, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 24968\n",
+ "Discriminator Loss: tf.Tensor(0.6401621, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.6425297, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 24969\n",
+ "Discriminator Loss: tf.Tensor(1.1270263, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.6696733, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 24970\n",
+ "Discriminator Loss: tf.Tensor(0.6462979, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.42615935, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 24971\n",
+ "Discriminator Loss: tf.Tensor(0.6304737, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.4879028, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 24972\n",
+ "Discriminator Loss: tf.Tensor(0.7609989, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.43043804, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 24973\n",
+ "Discriminator Loss: tf.Tensor(0.6447903, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.1970992, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 24974\n",
+ "Discriminator Loss: tf.Tensor(0.21448055, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.0229484, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 24975\n",
+ "Discriminator Loss: tf.Tensor(0.7467655, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.8669891, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 24976\n",
+ "Discriminator Loss: tf.Tensor(0.53729606, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.77766114, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 24977\n",
+ "Discriminator Loss: tf.Tensor(0.9266073, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.3851404, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 24978\n",
+ "Discriminator Loss: tf.Tensor(0.5490552, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.60715604, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 24979\n",
+ "Discriminator Loss: tf.Tensor(1.0982277, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.6501155, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 24980\n",
+ "Discriminator Loss: tf.Tensor(1.0643847, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.035742074, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 24981\n",
+ "Discriminator Loss: tf.Tensor(0.64554745, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.4473363, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 24982\n",
+ "Discriminator Loss: tf.Tensor(1.0263624, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.11105457, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 24983\n",
+ "Discriminator Loss: tf.Tensor(0.96173114, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.0359981, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 24984\n",
+ "Discriminator Loss: tf.Tensor(0.6352379, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.3797693, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 24985\n",
+ "Discriminator Loss: tf.Tensor(0.5003088, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.66222364, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 24986\n",
+ "Discriminator Loss: tf.Tensor(1.451236, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.3995974, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 24987\n",
+ "Discriminator Loss: tf.Tensor(0.6195859, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.61204404, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 24988\n",
+ "Discriminator Loss: tf.Tensor(1.3042794, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.9488864, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 24989\n",
+ "Discriminator Loss: tf.Tensor(0.86053157, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.28318948, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 24990\n",
+ "Discriminator Loss: tf.Tensor(0.85565317, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.3491644, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 24991\n",
+ "Discriminator Loss: tf.Tensor(0.7403205, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.2885394, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 24992\n",
+ "Discriminator Loss: tf.Tensor(0.7321805, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.2832966, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 24993\n",
+ "Discriminator Loss: tf.Tensor(0.14934587, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.0597271, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 24994\n",
+ "Discriminator Loss: tf.Tensor(0.7508539, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.6449966, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 24995\n",
+ "Discriminator Loss: tf.Tensor(0.36186683, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.031243, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 24996\n",
+ "Discriminator Loss: tf.Tensor(0.5257798, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.4903826, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 24997\n",
+ "Discriminator Loss: tf.Tensor(0.2922877, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.337416, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 24998\n",
+ "Discriminator Loss: tf.Tensor(1.223319, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.6348692, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 24999\n",
+ "Discriminator Loss: tf.Tensor(1.1233171, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.06275617, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 25000\n",
+ "Discriminator Loss: tf.Tensor(0.7543918, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.175573, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 25001\n",
+ "Discriminator Loss: tf.Tensor(0.5072249, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.7990539, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 25002\n",
+ "Discriminator Loss: tf.Tensor(0.9561191, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.7187252, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 25003\n",
+ "Discriminator Loss: tf.Tensor(0.96418655, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.22858663, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 25004\n",
+ "Discriminator Loss: tf.Tensor(0.5857869, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.2326707, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 25005\n",
+ "Discriminator Loss: tf.Tensor(0.55039376, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.6819245, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 25006\n",
+ "Discriminator Loss: tf.Tensor(0.8360443, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.7652497, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 25007\n",
+ "Discriminator Loss: tf.Tensor(0.72347736, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.3453873, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 25008\n",
+ "Discriminator Loss: tf.Tensor(0.634474, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.5372684, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 25009\n",
+ "Discriminator Loss: tf.Tensor(0.9202132, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.3872101, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 25010\n",
+ "Discriminator Loss: tf.Tensor(0.77554876, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.34194037, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 25011\n",
+ "Discriminator Loss: tf.Tensor(0.8784753, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.511243, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 25012\n",
+ "Discriminator Loss: tf.Tensor(0.5048698, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.71377873, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 25013\n",
+ "Discriminator Loss: tf.Tensor(0.6095333, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.254863, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 25014\n",
+ "Discriminator Loss: tf.Tensor(0.7676222, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.4952, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 25015\n",
+ "Discriminator Loss: tf.Tensor(1.1097462, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.8470173, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 25016\n",
+ "Discriminator Loss: tf.Tensor(0.5289979, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.6977873, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 25017\n",
+ "Discriminator Loss: tf.Tensor(0.8374431, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.8436583, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 25018\n",
+ "Discriminator Loss: tf.Tensor(0.5306308, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.6371526, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 25019\n",
+ "Discriminator Loss: tf.Tensor(1.1750354, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.7825452, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 25020\n",
+ "Discriminator Loss: tf.Tensor(0.711238, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.5121081, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 25021\n",
+ "Discriminator Loss: tf.Tensor(0.47865474, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.7437134, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 25022\n",
+ "Discriminator Loss: tf.Tensor(0.88630396, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.29394415, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 25023\n",
+ "Discriminator Loss: tf.Tensor(0.92862535, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.2115135, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 25024\n",
+ "Discriminator Loss: tf.Tensor(0.23369575, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.90435857, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 25025\n",
+ "Discriminator Loss: tf.Tensor(0.48715848, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.7349976, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 25026\n",
+ "Discriminator Loss: tf.Tensor(0.756963, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.5882351, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 25027\n",
+ "Discriminator Loss: tf.Tensor(0.44131908, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.6993074, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 25028\n",
+ "Discriminator Loss: tf.Tensor(0.49921107, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.9623168, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 25029\n",
+ "Discriminator Loss: tf.Tensor(0.98892653, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.3344508, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 25030\n",
+ "Discriminator Loss: tf.Tensor(0.7652402, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.0130364, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 25031\n",
+ "Discriminator Loss: tf.Tensor(0.6158222, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.7083721, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 25032\n",
+ "Discriminator Loss: tf.Tensor(1.5273693, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.7901998, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 25033\n",
+ "Discriminator Loss: tf.Tensor(0.76439464, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.6619512, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 25034\n",
+ "Discriminator Loss: tf.Tensor(0.65253806, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.8450156, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 25035\n",
+ "Discriminator Loss: tf.Tensor(0.58856666, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.0568289, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 25036\n",
+ "Discriminator Loss: tf.Tensor(1.2143633, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.9943703, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 25037\n",
+ "Discriminator Loss: tf.Tensor(0.7947444, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.5344277, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 25038\n",
+ "Discriminator Loss: tf.Tensor(1.4119787, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.033446, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 25039\n",
+ "Discriminator Loss: tf.Tensor(0.9348136, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.4264307, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 25040\n",
+ "Discriminator Loss: tf.Tensor(0.5049017, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.0981938, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 25041\n",
+ "Discriminator Loss: tf.Tensor(0.47974256, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.1454297, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 25042\n",
+ "Discriminator Loss: tf.Tensor(0.7466935, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.5463195, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 25043\n",
+ "Discriminator Loss: tf.Tensor(0.8416456, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.29663032, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 25044\n",
+ "Discriminator Loss: tf.Tensor(0.99501836, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.922565, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 25045\n",
+ "Discriminator Loss: tf.Tensor(0.6813037, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.53876275, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 25046\n",
+ "Discriminator Loss: tf.Tensor(1.1803676, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.9657094, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 25047\n",
+ "Discriminator Loss: tf.Tensor(0.3728849, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.7963193, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 25048\n",
+ "Discriminator Loss: tf.Tensor(1.0861076, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.4278597, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 25049\n",
+ "Discriminator Loss: tf.Tensor(0.62627566, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.40417588, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 25050\n",
+ "Discriminator Loss: tf.Tensor(0.80039406, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.0535733, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 25051\n",
+ "Discriminator Loss: tf.Tensor(0.88939476, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.0436412, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 25052\n",
+ "Discriminator Loss: tf.Tensor(0.81998014, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.98632884, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 25053\n",
+ "Discriminator Loss: tf.Tensor(0.42495275, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.2210625, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 25054\n",
+ "Discriminator Loss: tf.Tensor(0.92151946, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.563012, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 25055\n",
+ "Discriminator Loss: tf.Tensor(0.82621896, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.22163449, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 25056\n",
+ "Discriminator Loss: tf.Tensor(1.1312596, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.457189, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 25057\n",
+ "Discriminator Loss: tf.Tensor(0.9885927, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.1524886, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 25058\n",
+ "Discriminator Loss: tf.Tensor(0.5914948, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.0194485, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 25059\n",
+ "Discriminator Loss: tf.Tensor(0.4790475, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.053938, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 25060\n",
+ "Discriminator Loss: tf.Tensor(0.76008976, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.5390717, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 25061\n",
+ "Discriminator Loss: tf.Tensor(1.0987853, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.00035915276, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 25062\n",
+ "Discriminator Loss: tf.Tensor(0.7166158, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.7243513, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 25063\n",
+ "Discriminator Loss: tf.Tensor(0.29474348, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.813514, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 25064\n",
+ "Discriminator Loss: tf.Tensor(1.1582224, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.94091815, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 25065\n",
+ "Discriminator Loss: tf.Tensor(0.87477005, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.669041, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 25066\n",
+ "Discriminator Loss: tf.Tensor(1.1790941, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.032743644, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 25067\n",
+ "Discriminator Loss: tf.Tensor(0.7174424, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.2309633, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 25068\n",
+ "Discriminator Loss: tf.Tensor(0.585512, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.98752624, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 25069\n",
+ "Discriminator Loss: tf.Tensor(1.0600884, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.1176364, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 25070\n",
+ "Discriminator Loss: tf.Tensor(0.9513484, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.14011951, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 25071\n",
+ "Discriminator Loss: tf.Tensor(1.090203, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.5381433, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 25072\n",
+ "Discriminator Loss: tf.Tensor(0.6067811, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.46423793, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 25073\n",
+ "Discriminator Loss: tf.Tensor(0.71023, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.4698385, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 25074\n",
+ "Discriminator Loss: tf.Tensor(0.22138333, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.93224764, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 25075\n",
+ "Discriminator Loss: tf.Tensor(1.0719987, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.4776206, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 25076\n",
+ "Discriminator Loss: tf.Tensor(0.8207425, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.28619555, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 25077\n",
+ "Discriminator Loss: tf.Tensor(1.0088491, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.473156, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 25078\n",
+ "Discriminator Loss: tf.Tensor(0.80660135, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.3802202, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 25079\n",
+ "Discriminator Loss: tf.Tensor(0.68277717, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.8794708, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 25080\n",
+ "Discriminator Loss: tf.Tensor(1.016299, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.23408692, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 25081\n",
+ "Discriminator Loss: tf.Tensor(1.0056868, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.0316268, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 25082\n",
+ "Discriminator Loss: tf.Tensor(0.6666049, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.5806311, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 25083\n",
+ "Discriminator Loss: tf.Tensor(0.9074796, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.19185789, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 25084\n",
+ "Discriminator Loss: tf.Tensor(1.1368937, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.5261151, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 25085\n",
+ "Discriminator Loss: tf.Tensor(0.6980275, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.5177646, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 25086\n",
+ "Discriminator Loss: tf.Tensor(0.8399087, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.8431613, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 25087\n",
+ "Discriminator Loss: tf.Tensor(0.48307353, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.4981369, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 25088\n",
+ "Discriminator Loss: tf.Tensor(0.43776816, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.0091048, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 25089\n",
+ "Discriminator Loss: tf.Tensor(0.5455531, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.7405963, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 25090\n",
+ "Discriminator Loss: tf.Tensor(1.2132273, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.9333978, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 25091\n",
+ "Discriminator Loss: tf.Tensor(0.9755875, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.10486134, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 25092\n",
+ "Discriminator Loss: tf.Tensor(0.78290606, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.588627, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 25093\n",
+ "Discriminator Loss: tf.Tensor(0.62154466, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.46357572, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 25094\n",
+ "Discriminator Loss: tf.Tensor(1.045099, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.2535398, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 25095\n",
+ "Discriminator Loss: tf.Tensor(0.59246564, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.7048566, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 25096\n",
+ "Discriminator Loss: tf.Tensor(0.43233022, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.9271035, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 25097\n",
+ "Discriminator Loss: tf.Tensor(0.24146587, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.5215517, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 25098\n",
+ "Discriminator Loss: tf.Tensor(0.7058028, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.63330775, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 25099\n",
+ "Discriminator Loss: tf.Tensor(1.9761773, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.7884992, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 25100\n",
+ "Discriminator Loss: tf.Tensor(0.7984416, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.32713675, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 25101\n",
+ "Discriminator Loss: tf.Tensor(1.1427692, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.3261728, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 25102\n",
+ "Discriminator Loss: tf.Tensor(0.6720074, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.534102, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 25103\n",
+ "Discriminator Loss: tf.Tensor(1.1555252, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.6436439, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 25104\n",
+ "Discriminator Loss: tf.Tensor(0.7623615, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.3549819, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 25105\n",
+ "Discriminator Loss: tf.Tensor(0.98973393, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.2582626, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 25106\n",
+ "Discriminator Loss: tf.Tensor(0.8707042, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.24029656, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 25107\n",
+ "Discriminator Loss: tf.Tensor(0.59575623, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.3561736, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 25108\n",
+ "Discriminator Loss: tf.Tensor(0.8228641, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.3847997, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 25109\n",
+ "Discriminator Loss: tf.Tensor(0.92574596, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.2724972, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 25110\n",
+ "Discriminator Loss: tf.Tensor(0.43713242, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.9778983, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 25111\n",
+ "Discriminator Loss: tf.Tensor(0.73361504, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.8456175, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 25112\n",
+ "Discriminator Loss: tf.Tensor(1.2162026, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.2370166, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 25113\n",
+ "Discriminator Loss: tf.Tensor(0.8242092, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.40200981, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 25114\n",
+ "Discriminator Loss: tf.Tensor(1.25833, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.473319, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 25115\n",
+ "Discriminator Loss: tf.Tensor(0.37807536, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.78080344, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 25116\n",
+ "Discriminator Loss: tf.Tensor(0.8510926, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.3624016, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 25117\n",
+ "Discriminator Loss: tf.Tensor(0.51247334, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.60999656, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 25118\n",
+ "Discriminator Loss: tf.Tensor(1.0910566, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.5849637, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 25119\n",
+ "Discriminator Loss: tf.Tensor(0.80496794, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.617718, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 25120\n",
+ "Discriminator Loss: tf.Tensor(1.0280284, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.4075071, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 25121\n",
+ "Discriminator Loss: tf.Tensor(0.8387968, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.31325513, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 25122\n",
+ "Discriminator Loss: tf.Tensor(0.8382233, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.6889957, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 25123\n",
+ "Discriminator Loss: tf.Tensor(0.67274517, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.6742759, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 25124\n",
+ "Discriminator Loss: tf.Tensor(0.43087196, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.1776217, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 25125\n",
+ "Discriminator Loss: tf.Tensor(0.94152236, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.1440393, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 25126\n",
+ "Discriminator Loss: tf.Tensor(0.618578, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.7701896, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 25127\n",
+ "Discriminator Loss: tf.Tensor(1.2216114, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.6832856, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 25128\n",
+ "Discriminator Loss: tf.Tensor(1.0037584, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.060513508, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 25129\n",
+ "Discriminator Loss: tf.Tensor(1.203371, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.7617906, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 25130\n",
+ "Discriminator Loss: tf.Tensor(1.1034108, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.22212149, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 25131\n",
+ "Discriminator Loss: tf.Tensor(0.96278834, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.77129173, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 25132\n",
+ "Discriminator Loss: tf.Tensor(0.26785147, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.1843051, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 25133\n",
+ "Discriminator Loss: tf.Tensor(0.5603134, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.7847474, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 25134\n",
+ "Discriminator Loss: tf.Tensor(1.1387417, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.1172464, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 25135\n",
+ "Discriminator Loss: tf.Tensor(1.3522044, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.048210632, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 25136\n",
+ "Discriminator Loss: tf.Tensor(0.7443298, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.268304, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 25137\n",
+ "Discriminator Loss: tf.Tensor(0.7261893, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.33419296, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 25138\n",
+ "Discriminator Loss: tf.Tensor(0.8911687, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.144924, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 25139\n",
+ "Discriminator Loss: tf.Tensor(0.8310695, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.35057268, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 25140\n",
+ "Discriminator Loss: tf.Tensor(0.4901651, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.2781113, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 25141\n",
+ "Discriminator Loss: tf.Tensor(0.5642032, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.84481055, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 25142\n",
+ "Discriminator Loss: tf.Tensor(1.0140069, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.6882063, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 25143\n",
+ "Discriminator Loss: tf.Tensor(0.9387406, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.1343497, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 25144\n",
+ "Discriminator Loss: tf.Tensor(1.0737993, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.3454329, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 25145\n",
+ "Discriminator Loss: tf.Tensor(0.7206981, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.40577295, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 25146\n",
+ "Discriminator Loss: tf.Tensor(1.2968242, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.0883745, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 25147\n",
+ "Discriminator Loss: tf.Tensor(0.620493, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.6154004, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 25148\n",
+ "Discriminator Loss: tf.Tensor(0.62211215, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.1231164, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 25149\n",
+ "Discriminator Loss: tf.Tensor(0.6955148, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.2955283, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 25150\n",
+ "Discriminator Loss: tf.Tensor(0.6319829, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.47404698, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 25151\n",
+ "Discriminator Loss: tf.Tensor(1.4945674, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.22358, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 25152\n",
+ "Discriminator Loss: tf.Tensor(0.7658861, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.5924923, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 25153\n",
+ "Discriminator Loss: tf.Tensor(0.6737415, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.9035565, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 25154\n",
+ "Discriminator Loss: tf.Tensor(0.18365934, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.3201956, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 25155\n",
+ "Discriminator Loss: tf.Tensor(0.23038313, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.1454115, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 25156\n",
+ "Discriminator Loss: tf.Tensor(1.2016925, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.7040052, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 25157\n",
+ "Discriminator Loss: tf.Tensor(1.0805186, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.10992101, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 25158\n",
+ "Discriminator Loss: tf.Tensor(1.2386687, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.694141, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 25159\n",
+ "Discriminator Loss: tf.Tensor(0.92606646, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.31735137, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 25160\n",
+ "Discriminator Loss: tf.Tensor(0.7444506, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.557463, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 25161\n",
+ "Discriminator Loss: tf.Tensor(0.8022387, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.5594848, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 25162\n",
+ "Discriminator Loss: tf.Tensor(0.9106346, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.9747135, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 25163\n",
+ "Discriminator Loss: tf.Tensor(0.7286158, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.73862267, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 25164\n",
+ "Discriminator Loss: tf.Tensor(0.64891726, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.346108, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 25165\n",
+ "Discriminator Loss: tf.Tensor(0.8907479, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.5713577, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 25166\n",
+ "Discriminator Loss: tf.Tensor(0.96011066, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.1361836, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 25167\n",
+ "Discriminator Loss: tf.Tensor(0.6449399, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.75539327, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 25168\n",
+ "Discriminator Loss: tf.Tensor(0.8830046, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.2263674, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 25169\n",
+ "Discriminator Loss: tf.Tensor(0.53627986, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.70711666, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 25170\n",
+ "Discriminator Loss: tf.Tensor(1.2600324, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.7289677, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 25171\n",
+ "Discriminator Loss: tf.Tensor(0.8537969, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.2735997, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 25172\n",
+ "Discriminator Loss: tf.Tensor(0.76196337, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.2489516, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 25173\n",
+ "Discriminator Loss: tf.Tensor(1.1081359, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.06311367, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 25174\n",
+ "Discriminator Loss: tf.Tensor(0.8752862, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.3645324, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 25175\n",
+ "Discriminator Loss: tf.Tensor(0.62950826, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.45227435, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 25176\n",
+ "Discriminator Loss: tf.Tensor(0.9732498, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.71724, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 25177\n",
+ "Discriminator Loss: tf.Tensor(0.6341496, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.49585378, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 25178\n",
+ "Discriminator Loss: tf.Tensor(0.5067848, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.5498257, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 25179\n",
+ "Discriminator Loss: tf.Tensor(0.53318214, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.57126665, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 25180\n",
+ "Discriminator Loss: tf.Tensor(1.2182661, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.9510919, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 25181\n",
+ "Discriminator Loss: tf.Tensor(1.0214225, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.17053558, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 25182\n",
+ "Discriminator Loss: tf.Tensor(0.7087622, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.5356938, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 25183\n",
+ "Discriminator Loss: tf.Tensor(0.70146245, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.5523681, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 25184\n",
+ "Discriminator Loss: tf.Tensor(0.93489313, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.3155487, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 25185\n",
+ "Discriminator Loss: tf.Tensor(0.50093365, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.7230571, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 25186\n",
+ "Discriminator Loss: tf.Tensor(0.6857798, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.6265515, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 25187\n",
+ "Discriminator Loss: tf.Tensor(0.4182351, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.6352989, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 25188\n",
+ "Discriminator Loss: tf.Tensor(1.3900588, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.1808832, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 25189\n",
+ "Discriminator Loss: tf.Tensor(0.40709558, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.82319635, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 25190\n",
+ "Discriminator Loss: tf.Tensor(0.68408424, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.2077552, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 25191\n",
+ "Discriminator Loss: tf.Tensor(0.7089391, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.7429812, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 25192\n",
+ "Discriminator Loss: tf.Tensor(0.6733099, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.7483917, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 25193\n",
+ "Discriminator Loss: tf.Tensor(0.5546883, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.592578, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 25194\n",
+ "Discriminator Loss: tf.Tensor(0.7634518, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.3698378, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 25195\n",
+ "Discriminator Loss: tf.Tensor(0.73644596, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.3384092, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 25196\n",
+ "Discriminator Loss: tf.Tensor(0.99358547, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.64434, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 25197\n",
+ "Discriminator Loss: tf.Tensor(0.8337983, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.43065247, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 25198\n",
+ "Discriminator Loss: tf.Tensor(0.8646444, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.5166079, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 25199\n",
+ "Discriminator Loss: tf.Tensor(1.1740876, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.27295792, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 25200\n",
+ "Discriminator Loss: tf.Tensor(0.6791985, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.78249234, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 25201\n",
+ "Discriminator Loss: tf.Tensor(0.32789457, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.3834082, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 25202\n",
+ "Discriminator Loss: tf.Tensor(0.72109294, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.4642252, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 25203\n",
+ "Discriminator Loss: tf.Tensor(0.8679815, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.23353946, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 25204\n",
+ "Discriminator Loss: tf.Tensor(1.203714, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.2079157, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 25205\n",
+ "Discriminator Loss: tf.Tensor(0.5745491, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.6623969, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 25206\n",
+ "Discriminator Loss: tf.Tensor(0.766217, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.5884203, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 25207\n",
+ "Discriminator Loss: tf.Tensor(0.6136005, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.52540195, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 25208\n",
+ "Discriminator Loss: tf.Tensor(1.1169891, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.6218246, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 25209\n",
+ "Discriminator Loss: tf.Tensor(1.0102019, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.2706392, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 25210\n",
+ "Discriminator Loss: tf.Tensor(0.5858501, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.1945715, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 25211\n",
+ "Discriminator Loss: tf.Tensor(0.40399048, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.6786051, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 25212\n",
+ "Discriminator Loss: tf.Tensor(1.3583286, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.0864227, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 25213\n",
+ "Discriminator Loss: tf.Tensor(0.85891336, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.22206883, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 25214\n",
+ "Discriminator Loss: tf.Tensor(0.6414517, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.3203756, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 25215\n",
+ "Discriminator Loss: tf.Tensor(0.61994505, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.5797325, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 25216\n",
+ "Discriminator Loss: tf.Tensor(0.7723963, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.9689061, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 25217\n",
+ "Discriminator Loss: tf.Tensor(0.68707323, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.93593174, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 25218\n",
+ "Discriminator Loss: tf.Tensor(0.31421113, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.1929036, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 25219\n",
+ "Discriminator Loss: tf.Tensor(0.6209162, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.61946785, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 25220\n",
+ "Discriminator Loss: tf.Tensor(1.6199906, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.9273425, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 25221\n",
+ "Discriminator Loss: tf.Tensor(0.79902333, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.4480233, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 25222\n",
+ "Discriminator Loss: tf.Tensor(1.1465516, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.0927774, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 25223\n",
+ "Discriminator Loss: tf.Tensor(0.99494433, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.2838916, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 25224\n",
+ "Discriminator Loss: tf.Tensor(0.7401731, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.4387134, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 25225\n",
+ "Discriminator Loss: tf.Tensor(0.6334829, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.4685816, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 25226\n",
+ "Discriminator Loss: tf.Tensor(1.006203, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.4304466, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 25227\n",
+ "Discriminator Loss: tf.Tensor(0.6635928, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.43588173, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 25228\n",
+ "Discriminator Loss: tf.Tensor(1.2361044, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.04515, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 25229\n",
+ "Discriminator Loss: tf.Tensor(1.1327174, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.2313735, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 25230\n",
+ "Discriminator Loss: tf.Tensor(0.75716424, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.2699217, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 25231\n",
+ "Discriminator Loss: tf.Tensor(0.40578407, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.64242357, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 25232\n",
+ "Discriminator Loss: tf.Tensor(0.942793, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.9465023, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 25233\n",
+ "Discriminator Loss: tf.Tensor(0.8197157, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.41550437, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 25234\n",
+ "Discriminator Loss: tf.Tensor(0.8450179, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.027141, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 25235\n",
+ "Discriminator Loss: tf.Tensor(0.5021418, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.9771462, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 25236\n",
+ "Discriminator Loss: tf.Tensor(0.37430108, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.0926408, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 25237\n",
+ "Discriminator Loss: tf.Tensor(0.50738585, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.1588482, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 25238\n",
+ "Discriminator Loss: tf.Tensor(0.6964455, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.9003594, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 25239\n",
+ "Discriminator Loss: tf.Tensor(0.8380718, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.4911972, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 25240\n",
+ "Discriminator Loss: tf.Tensor(1.036101, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.024938554, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 25241\n",
+ "Discriminator Loss: tf.Tensor(1.0506446, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.4104648, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 25242\n",
+ "Discriminator Loss: tf.Tensor(0.825241, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.38603505, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 25243\n",
+ "Discriminator Loss: tf.Tensor(1.0085539, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.7151841, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 25244\n",
+ "Discriminator Loss: tf.Tensor(0.5925345, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.6536041, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 25245\n",
+ "Discriminator Loss: tf.Tensor(0.5625751, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.3483194, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 25246\n",
+ "Discriminator Loss: tf.Tensor(0.6486356, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.67974424, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 25247\n",
+ "Discriminator Loss: tf.Tensor(1.0311053, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.6233133, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 25248\n",
+ "Discriminator Loss: tf.Tensor(0.79358554, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.49706462, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 25249\n",
+ "Discriminator Loss: tf.Tensor(1.0584377, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.2990772, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 25250\n",
+ "Discriminator Loss: tf.Tensor(0.50307566, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.6821437, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 25251\n",
+ "Discriminator Loss: tf.Tensor(1.0972536, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.7631832, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 25252\n",
+ "Discriminator Loss: tf.Tensor(0.62644094, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.6614267, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 25253\n",
+ "Discriminator Loss: tf.Tensor(0.48625463, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.3174871, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 25254\n",
+ "Discriminator Loss: tf.Tensor(0.6038177, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.79474753, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 25255\n",
+ "Discriminator Loss: tf.Tensor(1.4370689, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.2567205, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 25256\n",
+ "Discriminator Loss: tf.Tensor(0.86991423, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.45027184, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 25257\n",
+ "Discriminator Loss: tf.Tensor(0.87353784, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.9687305, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 25258\n",
+ "Discriminator Loss: tf.Tensor(0.56787896, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.0647521, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 25259\n",
+ "Discriminator Loss: tf.Tensor(0.6681696, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.4270121, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 25260\n",
+ "Discriminator Loss: tf.Tensor(0.84034276, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.54941624, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 25261\n",
+ "Discriminator Loss: tf.Tensor(0.65936476, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.6742979, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 25262\n",
+ "Discriminator Loss: tf.Tensor(0.9072603, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.24603717, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 25263\n",
+ "Discriminator Loss: tf.Tensor(0.86824286, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.325149, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 25264\n",
+ "Discriminator Loss: tf.Tensor(0.36433035, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.9174757, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 25265\n",
+ "Discriminator Loss: tf.Tensor(0.36873734, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.9453047, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 25266\n",
+ "Discriminator Loss: tf.Tensor(1.1984107, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.8397089, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 25267\n",
+ "Discriminator Loss: tf.Tensor(1.096009, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.036530238, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 25268\n",
+ "Discriminator Loss: tf.Tensor(1.0813926, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.0601457, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 25269\n",
+ "Discriminator Loss: tf.Tensor(0.824664, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.41936338, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 25270\n",
+ "Discriminator Loss: tf.Tensor(1.087254, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.1045083, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 25271\n",
+ "Discriminator Loss: tf.Tensor(0.7336583, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.90746325, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 25272\n",
+ "Discriminator Loss: tf.Tensor(0.5873457, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.7438037, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 25273\n",
+ "Discriminator Loss: tf.Tensor(1.178195, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.2749312, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 25274\n",
+ "Discriminator Loss: tf.Tensor(1.2100261, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.017338397, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 25275\n",
+ "Discriminator Loss: tf.Tensor(1.0820093, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.3544711, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 25276\n",
+ "Discriminator Loss: tf.Tensor(1.0321996, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.04615696, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 25277\n",
+ "Discriminator Loss: tf.Tensor(0.718641, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.1742457, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 25278\n",
+ "Discriminator Loss: tf.Tensor(0.42232344, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.9432325, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 25279\n",
+ "Discriminator Loss: tf.Tensor(0.32590577, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.3023401, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 25280\n",
+ "Discriminator Loss: tf.Tensor(0.5408672, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.92641765, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 25281\n",
+ "Discriminator Loss: tf.Tensor(1.1882546, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.6188558, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 25282\n",
+ "Discriminator Loss: tf.Tensor(0.84167016, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.36822513, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 25283\n",
+ "Discriminator Loss: tf.Tensor(1.0568763, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.3540211, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 25284\n",
+ "Discriminator Loss: tf.Tensor(0.96931535, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.075811245, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 25285\n",
+ "Discriminator Loss: tf.Tensor(1.1028453, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.6127514, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 25286\n",
+ "Discriminator Loss: tf.Tensor(0.79699194, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.4007647, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 25287\n",
+ "Discriminator Loss: tf.Tensor(0.76197183, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.2395409, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 25288\n",
+ "Discriminator Loss: tf.Tensor(0.98833823, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.07137897, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 25289\n",
+ "Discriminator Loss: tf.Tensor(1.3562164, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.7610952, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 25290\n",
+ "Discriminator Loss: tf.Tensor(1.0761673, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.13196585, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 25291\n",
+ "Discriminator Loss: tf.Tensor(0.533641, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.035581, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 25292\n",
+ "Discriminator Loss: tf.Tensor(0.44897914, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.0675253, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 25293\n",
+ "Discriminator Loss: tf.Tensor(0.834069, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.0812265, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 25294\n",
+ "Discriminator Loss: tf.Tensor(0.7317814, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.0335058, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 25295\n",
+ "Discriminator Loss: tf.Tensor(0.7908943, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.6048946, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 25296\n",
+ "Discriminator Loss: tf.Tensor(1.0262021, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.073095, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 25297\n",
+ "Discriminator Loss: tf.Tensor(0.809695, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.3219655, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 25298\n",
+ "Discriminator Loss: tf.Tensor(0.74244064, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.37717977, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 25299\n",
+ "Discriminator Loss: tf.Tensor(1.1414115, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.3915067, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 25300\n",
+ "Discriminator Loss: tf.Tensor(0.57164997, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.5633912, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 25301\n",
+ "Discriminator Loss: tf.Tensor(1.0663323, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.753462, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 25302\n",
+ "Discriminator Loss: tf.Tensor(0.6105958, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.49564564, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 25303\n",
+ "Discriminator Loss: tf.Tensor(0.7032852, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.1766773, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 25304\n",
+ "Discriminator Loss: tf.Tensor(0.5344629, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.82438153, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 25305\n",
+ "Discriminator Loss: tf.Tensor(0.8560683, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.477759, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 25306\n",
+ "Discriminator Loss: tf.Tensor(0.9797258, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.067848064, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 25307\n",
+ "Discriminator Loss: tf.Tensor(1.3807427, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.6802398, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 25308\n",
+ "Discriminator Loss: tf.Tensor(0.72129893, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.46633253, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 25309\n",
+ "Discriminator Loss: tf.Tensor(0.6511694, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.2845792, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 25310\n",
+ "Discriminator Loss: tf.Tensor(0.8699964, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.6420905, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 25311\n",
+ "Discriminator Loss: tf.Tensor(0.37661442, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.145864, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 25312\n",
+ "Discriminator Loss: tf.Tensor(0.44468108, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.8959086, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 25313\n",
+ "Discriminator Loss: tf.Tensor(0.87455297, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.6498884, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 25314\n",
+ "Discriminator Loss: tf.Tensor(0.70651066, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.5580254, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 25315\n",
+ "Discriminator Loss: tf.Tensor(1.0206852, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.2308377, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 25316\n",
+ "Discriminator Loss: tf.Tensor(0.8947687, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.587696, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 25317\n",
+ "Discriminator Loss: tf.Tensor(1.6660419, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.1239746, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 25318\n",
+ "Discriminator Loss: tf.Tensor(0.90490305, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.18584867, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 25319\n",
+ "Discriminator Loss: tf.Tensor(1.0868338, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.3501858, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 25320\n",
+ "Discriminator Loss: tf.Tensor(0.93106616, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.19121243, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 25321\n",
+ "Discriminator Loss: tf.Tensor(0.7253107, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.0358405, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 25322\n",
+ "Discriminator Loss: tf.Tensor(0.6024484, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.81768626, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 25323\n",
+ "Discriminator Loss: tf.Tensor(0.63761586, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.7272562, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 25324\n",
+ "Discriminator Loss: tf.Tensor(0.676052, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.5553518, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 25325\n",
+ "Discriminator Loss: tf.Tensor(1.0885173, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.8285011, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 25326\n",
+ "Discriminator Loss: tf.Tensor(0.6154037, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.6295126, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 25327\n",
+ "Discriminator Loss: tf.Tensor(0.7919786, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.1679333, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 25328\n",
+ "Discriminator Loss: tf.Tensor(0.69074744, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.83345634, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 25329\n",
+ "Discriminator Loss: tf.Tensor(0.8499876, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.3701416, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 25330\n",
+ "Discriminator Loss: tf.Tensor(0.7130881, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.49932444, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 25331\n",
+ "Discriminator Loss: tf.Tensor(0.4382258, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.4904014, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 25332\n",
+ "Discriminator Loss: tf.Tensor(0.48755437, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.2387551, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 25333\n",
+ "Discriminator Loss: tf.Tensor(0.994033, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.55488247, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 25334\n",
+ "Discriminator Loss: tf.Tensor(1.0991848, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.7261883, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 25335\n",
+ "Discriminator Loss: tf.Tensor(0.74025613, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.3424302, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 25336\n",
+ "Discriminator Loss: tf.Tensor(0.89632964, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.4689423, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 25337\n",
+ "Discriminator Loss: tf.Tensor(0.47899938, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.69034404, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 25338\n",
+ "Discriminator Loss: tf.Tensor(1.193725, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.2058804, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 25339\n",
+ "Discriminator Loss: tf.Tensor(0.53517675, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.72463083, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 25340\n",
+ "Discriminator Loss: tf.Tensor(0.5683659, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.77636, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 25341\n",
+ "Discriminator Loss: tf.Tensor(0.58382535, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.7347819, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 25342\n",
+ "Discriminator Loss: tf.Tensor(0.9982314, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.9406573, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 25343\n",
+ "Discriminator Loss: tf.Tensor(0.620905, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.3584801, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 25344\n",
+ "Discriminator Loss: tf.Tensor(0.3823849, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.1447457, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 25345\n",
+ "Discriminator Loss: tf.Tensor(0.49589217, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.6877739, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 25346\n",
+ "Discriminator Loss: tf.Tensor(1.6814392, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.2258224, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 25347\n",
+ "Discriminator Loss: tf.Tensor(0.59116536, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.5211739, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 25348\n",
+ "Discriminator Loss: tf.Tensor(0.9287492, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.6400323, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 25349\n",
+ "Discriminator Loss: tf.Tensor(0.51338625, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.89652973, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 25350\n",
+ "Discriminator Loss: tf.Tensor(0.9222747, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.82756406, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 25351\n",
+ "Discriminator Loss: tf.Tensor(0.7332251, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.4707056, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 25352\n",
+ "Discriminator Loss: tf.Tensor(0.42116857, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.63847905, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 25353\n",
+ "Discriminator Loss: tf.Tensor(0.9585054, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.7261724, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 25354\n",
+ "Discriminator Loss: tf.Tensor(0.40754196, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.7811556, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 25355\n",
+ "Discriminator Loss: tf.Tensor(0.26733837, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.2725347, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 25356\n",
+ "Discriminator Loss: tf.Tensor(1.0274837, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.90247566, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 25357\n",
+ "Discriminator Loss: tf.Tensor(0.47364545, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.3939079, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 25358\n",
+ "Discriminator Loss: tf.Tensor(0.8060104, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.582947, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 25359\n",
+ "Discriminator Loss: tf.Tensor(1.4779837, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.2872066, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 25360\n",
+ "Discriminator Loss: tf.Tensor(0.44618428, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.1906717, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 25361\n",
+ "Discriminator Loss: tf.Tensor(0.4860793, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.916234, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 25362\n",
+ "Discriminator Loss: tf.Tensor(0.78898597, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.0152372, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 25363\n",
+ "Discriminator Loss: tf.Tensor(0.684417, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.8590204, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 25364\n",
+ "Discriminator Loss: tf.Tensor(1.0257709, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.05706, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 25365\n",
+ "Discriminator Loss: tf.Tensor(1.181388, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.045599356, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 25366\n",
+ "Discriminator Loss: tf.Tensor(0.8985809, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.2852557, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 25367\n",
+ "Discriminator Loss: tf.Tensor(0.56166846, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.4893551, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 25368\n",
+ "Discriminator Loss: tf.Tensor(0.85960734, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.8027025, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 25369\n",
+ "Discriminator Loss: tf.Tensor(1.0235019, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.06586818, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 25370\n",
+ "Discriminator Loss: tf.Tensor(0.95514596, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.5375067, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 25371\n",
+ "Discriminator Loss: tf.Tensor(0.84155035, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.29643354, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 25372\n",
+ "Discriminator Loss: tf.Tensor(0.8636583, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.3266108, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 25373\n",
+ "Discriminator Loss: tf.Tensor(1.0739976, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.3304001, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 25374\n",
+ "Discriminator Loss: tf.Tensor(0.6346002, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.2698681, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 25375\n",
+ "Discriminator Loss: tf.Tensor(0.660119, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.7583583, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 25376\n",
+ "Discriminator Loss: tf.Tensor(0.6804011, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.5098902, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 25377\n",
+ "Discriminator Loss: tf.Tensor(0.6587454, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.62334377, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 25378\n",
+ "Discriminator Loss: tf.Tensor(0.947618, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.7160425, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 25379\n",
+ "Discriminator Loss: tf.Tensor(1.0474706, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.05266663, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 25380\n",
+ "Discriminator Loss: tf.Tensor(1.3740406, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.6698056, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 25381\n",
+ "Discriminator Loss: tf.Tensor(0.9365056, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.2632865, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 25382\n",
+ "Discriminator Loss: tf.Tensor(0.7009385, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.2086902, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 25383\n",
+ "Discriminator Loss: tf.Tensor(0.5752143, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.46987867, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 25384\n",
+ "Discriminator Loss: tf.Tensor(0.64098036, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.7171879, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 25385\n",
+ "Discriminator Loss: tf.Tensor(0.776453, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.54415244, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 25386\n",
+ "Discriminator Loss: tf.Tensor(0.3709846, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.6112041, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 25387\n",
+ "Discriminator Loss: tf.Tensor(0.2732337, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.1174555, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 25388\n",
+ "Discriminator Loss: tf.Tensor(0.84605455, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.5272897, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 25389\n",
+ "Discriminator Loss: tf.Tensor(0.71955216, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.45884022, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 25390\n",
+ "Discriminator Loss: tf.Tensor(0.5896361, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.6889607, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 25391\n",
+ "Discriminator Loss: tf.Tensor(0.5753972, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.70489, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 25392\n",
+ "Discriminator Loss: tf.Tensor(0.9972155, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.5837463, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 25393\n",
+ "Discriminator Loss: tf.Tensor(0.4801955, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.8585067, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 25394\n",
+ "Discriminator Loss: tf.Tensor(0.84388185, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.5731827, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 25395\n",
+ "Discriminator Loss: tf.Tensor(0.967661, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.1599011, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 25396\n",
+ "Discriminator Loss: tf.Tensor(0.9330049, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.4597992, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 25397\n",
+ "Discriminator Loss: tf.Tensor(0.6022447, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.5579191, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 25398\n",
+ "Discriminator Loss: tf.Tensor(0.7716096, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.8179288, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 25399\n",
+ "Discriminator Loss: tf.Tensor(1.0808494, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.13734908, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 25400\n",
+ "Discriminator Loss: tf.Tensor(0.78410864, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.2725832, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 25401\n",
+ "Discriminator Loss: tf.Tensor(0.34602708, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.1133897, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 25402\n",
+ "Discriminator Loss: tf.Tensor(0.71292925, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.9897847, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 25403\n",
+ "Discriminator Loss: tf.Tensor(0.78982985, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.9472418, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 25404\n",
+ "Discriminator Loss: tf.Tensor(1.0726609, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.8819107, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 25405\n",
+ "Discriminator Loss: tf.Tensor(0.891918, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.4140966, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 25406\n",
+ "Discriminator Loss: tf.Tensor(0.97345185, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.9574197, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 25407\n",
+ "Discriminator Loss: tf.Tensor(0.8083885, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.6543651, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 25408\n",
+ "Discriminator Loss: tf.Tensor(0.67168045, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.1330858, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 25409\n",
+ "Discriminator Loss: tf.Tensor(0.6534927, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.6986993, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 25410\n",
+ "Discriminator Loss: tf.Tensor(0.6201575, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.5815209, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 25411\n",
+ "Discriminator Loss: tf.Tensor(0.58376765, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.45908666, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 25412\n",
+ "Discriminator Loss: tf.Tensor(1.1094383, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.8021284, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 25413\n",
+ "Discriminator Loss: tf.Tensor(0.5210588, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.5263212, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 25414\n",
+ "Discriminator Loss: tf.Tensor(1.1449757, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.4522576, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 25415\n",
+ "Discriminator Loss: tf.Tensor(0.48467517, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.704988, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 25416\n",
+ "Discriminator Loss: tf.Tensor(0.8445733, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.8946606, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 25417\n",
+ "Discriminator Loss: tf.Tensor(0.518409, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.5553809, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 25418\n",
+ "Discriminator Loss: tf.Tensor(0.93969816, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.6253754, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 25419\n",
+ "Discriminator Loss: tf.Tensor(0.459068, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.6525546, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 25420\n",
+ "Discriminator Loss: tf.Tensor(0.8628026, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.5798565, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 25421\n",
+ "Discriminator Loss: tf.Tensor(0.5433589, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.580486, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 25422\n",
+ "Discriminator Loss: tf.Tensor(0.9417087, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.030837, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 25423\n",
+ "Discriminator Loss: tf.Tensor(0.806911, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.33929744, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 25424\n",
+ "Discriminator Loss: tf.Tensor(1.2141929, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.8929085, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 25425\n",
+ "Discriminator Loss: tf.Tensor(0.8485246, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.25308913, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 25426\n",
+ "Discriminator Loss: tf.Tensor(0.6083695, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.2915936, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 25427\n",
+ "Discriminator Loss: tf.Tensor(0.5160086, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.7614699, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 25428\n",
+ "Discriminator Loss: tf.Tensor(1.0487022, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.5274574, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 25429\n",
+ "Discriminator Loss: tf.Tensor(0.69018006, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.3957591, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 25430\n",
+ "Discriminator Loss: tf.Tensor(0.7415082, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.5615593, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 25431\n",
+ "Discriminator Loss: tf.Tensor(0.44561717, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.7725763, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 25432\n",
+ "Discriminator Loss: tf.Tensor(0.6513841, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.0468262, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 25433\n",
+ "Discriminator Loss: tf.Tensor(0.3240022, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.9337683, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 25434\n",
+ "Discriminator Loss: tf.Tensor(0.71550983, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.3432192, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 25435\n",
+ "Discriminator Loss: tf.Tensor(0.83658326, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.6039481, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 25436\n",
+ "Discriminator Loss: tf.Tensor(0.95209265, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.3809061, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 25437\n",
+ "Discriminator Loss: tf.Tensor(0.5519154, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.6655795, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 25438\n",
+ "Discriminator Loss: tf.Tensor(0.62739956, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.3861564, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 25439\n",
+ "Discriminator Loss: tf.Tensor(0.5327878, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.80107564, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 25440\n",
+ "Discriminator Loss: tf.Tensor(0.92117727, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.9469924, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 25441\n",
+ "Discriminator Loss: tf.Tensor(0.4388281, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.6202166, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 25442\n",
+ "Discriminator Loss: tf.Tensor(0.80261886, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.3992395, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 25443\n",
+ "Discriminator Loss: tf.Tensor(0.7128258, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.421857, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 25444\n",
+ "Discriminator Loss: tf.Tensor(0.8327669, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.9436436, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 25445\n",
+ "Discriminator Loss: tf.Tensor(0.44964677, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.85810375, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 25446\n",
+ "Discriminator Loss: tf.Tensor(0.30969924, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.5680302, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 25447\n",
+ "Discriminator Loss: tf.Tensor(0.52482325, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.1796305, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 25448\n",
+ "Discriminator Loss: tf.Tensor(0.45622602, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.2969776, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 25449\n",
+ "Discriminator Loss: tf.Tensor(0.7517093, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.29415435, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 25450\n",
+ "Discriminator Loss: tf.Tensor(1.6347966, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.107112, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 25451\n",
+ "Discriminator Loss: tf.Tensor(0.7788908, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.43786284, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 25452\n",
+ "Discriminator Loss: tf.Tensor(0.8794316, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.3088354, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 25453\n",
+ "Discriminator Loss: tf.Tensor(0.45657742, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.66052765, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 25454\n",
+ "Discriminator Loss: tf.Tensor(0.7648854, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.3248106, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 25455\n",
+ "Discriminator Loss: tf.Tensor(0.7571971, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.6137509, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 25456\n",
+ "Discriminator Loss: tf.Tensor(1.1092038, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.302472, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 25457\n",
+ "Discriminator Loss: tf.Tensor(1.0005323, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.3842164, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 25458\n",
+ "Discriminator Loss: tf.Tensor(0.49970862, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.1789889, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 25459\n",
+ "Discriminator Loss: tf.Tensor(0.42579842, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.8379285, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 25460\n",
+ "Discriminator Loss: tf.Tensor(1.1309837, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.2946825, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 25461\n",
+ "Discriminator Loss: tf.Tensor(0.9335628, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.5516365, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 25462\n",
+ "Discriminator Loss: tf.Tensor(0.77599776, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.6139731, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 25463\n",
+ "Discriminator Loss: tf.Tensor(0.92726976, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.10323546, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 25464\n",
+ "Discriminator Loss: tf.Tensor(0.68517524, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.4469718, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 25465\n",
+ "Discriminator Loss: tf.Tensor(0.70440394, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.6415637, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 25466\n",
+ "Discriminator Loss: tf.Tensor(0.55862916, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.5494541, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 25467\n",
+ "Discriminator Loss: tf.Tensor(0.4989736, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.87379646, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 25468\n",
+ "Discriminator Loss: tf.Tensor(0.442414, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.1729816, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 25469\n",
+ "Discriminator Loss: tf.Tensor(0.9287493, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.49801505, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 25470\n",
+ "Discriminator Loss: tf.Tensor(0.7903967, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.4374038, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 25471\n",
+ "Discriminator Loss: tf.Tensor(1.1682509, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.010496284, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 25472\n",
+ "Discriminator Loss: tf.Tensor(0.48734784, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.4831408, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 25473\n",
+ "Discriminator Loss: tf.Tensor(0.7264977, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.0734826, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 25474\n",
+ "Discriminator Loss: tf.Tensor(0.52746266, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.0899109, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 25475\n",
+ "Discriminator Loss: tf.Tensor(0.67238504, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.6655737, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 25476\n",
+ "Discriminator Loss: tf.Tensor(0.8130666, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.31846258, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 25477\n",
+ "Discriminator Loss: tf.Tensor(1.1558464, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.5956306, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 25478\n",
+ "Discriminator Loss: tf.Tensor(0.6300926, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.50318205, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 25479\n",
+ "Discriminator Loss: tf.Tensor(0.7562506, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.6121006, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 25480\n",
+ "Discriminator Loss: tf.Tensor(0.89154935, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.4602752, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 25481\n",
+ "Discriminator Loss: tf.Tensor(0.93873787, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.2281525, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 25482\n",
+ "Discriminator Loss: tf.Tensor(0.8194394, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.8043611, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 25483\n",
+ "Discriminator Loss: tf.Tensor(0.5782544, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.8350141, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 25484\n",
+ "Discriminator Loss: tf.Tensor(0.56904703, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.5243055, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 25485\n",
+ "Discriminator Loss: tf.Tensor(0.8773793, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.18234569, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 25486\n",
+ "Discriminator Loss: tf.Tensor(1.0808133, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.8200136, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 25487\n",
+ "Discriminator Loss: tf.Tensor(0.86337477, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.6396788, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 25488\n",
+ "Discriminator Loss: tf.Tensor(0.66505885, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.537055, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 25489\n",
+ "Discriminator Loss: tf.Tensor(0.69468474, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.35792828, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 25490\n",
+ "Discriminator Loss: tf.Tensor(0.8450475, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.4782246, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 25491\n",
+ "Discriminator Loss: tf.Tensor(0.7204724, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.400771, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 25492\n",
+ "Discriminator Loss: tf.Tensor(1.1565996, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.4904058, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 25493\n",
+ "Discriminator Loss: tf.Tensor(0.7065245, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.7427562, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 25494\n",
+ "Discriminator Loss: tf.Tensor(0.62517023, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.73531, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 25495\n",
+ "Discriminator Loss: tf.Tensor(0.4547311, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.6402134, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 25496\n",
+ "Discriminator Loss: tf.Tensor(0.4405918, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.77510613, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 25497\n",
+ "Discriminator Loss: tf.Tensor(0.67313194, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.4363642, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 25498\n",
+ "Discriminator Loss: tf.Tensor(0.38294157, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.78930765, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 25499\n",
+ "Discriminator Loss: tf.Tensor(1.8624667, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.1526153, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 25500\n",
+ "Discriminator Loss: tf.Tensor(0.5365236, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.7263429, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 25501\n",
+ "Discriminator Loss: tf.Tensor(0.6711552, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.97305757, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 25502\n",
+ "Discriminator Loss: tf.Tensor(1.0517254, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.3025292, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 25503\n",
+ "Discriminator Loss: tf.Tensor(1.13499, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.115048446, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 25504\n",
+ "Discriminator Loss: tf.Tensor(1.196393, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.5115932, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 25505\n",
+ "Discriminator Loss: tf.Tensor(0.56296265, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.49276972, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 25506\n",
+ "Discriminator Loss: tf.Tensor(0.78286266, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.31015, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 25507\n",
+ "Discriminator Loss: tf.Tensor(0.8595594, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.42500997, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 25508\n",
+ "Discriminator Loss: tf.Tensor(0.56147856, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.6429844, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 25509\n",
+ "Discriminator Loss: tf.Tensor(0.8057035, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.6769454, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 25510\n",
+ "Discriminator Loss: tf.Tensor(1.0659945, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.9565207, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 25511\n",
+ "Discriminator Loss: tf.Tensor(0.62695795, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.850307, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 25512\n",
+ "Discriminator Loss: tf.Tensor(0.23727575, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.90876037, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 25513\n",
+ "Discriminator Loss: tf.Tensor(0.9008963, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.9656187, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 25514\n",
+ "Discriminator Loss: tf.Tensor(0.55929494, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.60703945, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 25515\n",
+ "Discriminator Loss: tf.Tensor(0.63204455, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.9978212, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 25516\n",
+ "Discriminator Loss: tf.Tensor(1.0241042, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.39315298, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 25517\n",
+ "Discriminator Loss: tf.Tensor(1.0331427, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.0777979, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 25518\n",
+ "Discriminator Loss: tf.Tensor(0.7890284, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.2826934, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 25519\n",
+ "Discriminator Loss: tf.Tensor(0.41326898, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.1062886, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 25520\n",
+ "Discriminator Loss: tf.Tensor(0.3702377, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.1378522, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 25521\n",
+ "Discriminator Loss: tf.Tensor(0.42623356, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.2230809, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 25522\n",
+ "Discriminator Loss: tf.Tensor(0.82284355, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.7440466, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 25523\n",
+ "Discriminator Loss: tf.Tensor(1.9005787, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.9784349, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 25524\n",
+ "Discriminator Loss: tf.Tensor(1.0850947, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.28307587, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 25525\n",
+ "Discriminator Loss: tf.Tensor(0.70346415, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.93184286, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 25526\n",
+ "Discriminator Loss: tf.Tensor(0.42174143, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.400705, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 25527\n",
+ "Discriminator Loss: tf.Tensor(0.5925553, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.74368364, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 25528\n",
+ "Discriminator Loss: tf.Tensor(0.96763134, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.9499439, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 25529\n",
+ "Discriminator Loss: tf.Tensor(0.55702424, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.61497134, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 25530\n",
+ "Discriminator Loss: tf.Tensor(0.689573, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.3946171, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 25531\n",
+ "Discriminator Loss: tf.Tensor(0.20151189, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.96773094, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 25532\n",
+ "Discriminator Loss: tf.Tensor(1.1093361, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.6843938, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 25533\n",
+ "Discriminator Loss: tf.Tensor(0.84652126, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.39183894, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 25534\n",
+ "Discriminator Loss: tf.Tensor(1.1611855, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.6038502, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 25535\n",
+ "Discriminator Loss: tf.Tensor(1.0810257, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.053100992, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 25536\n",
+ "Discriminator Loss: tf.Tensor(0.97388434, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.7950999, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 25537\n",
+ "Discriminator Loss: tf.Tensor(0.472534, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.677188, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 25538\n",
+ "Discriminator Loss: tf.Tensor(0.6384573, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.3551916, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 25539\n",
+ "Discriminator Loss: tf.Tensor(0.68408704, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.7447121, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 25540\n",
+ "Discriminator Loss: tf.Tensor(0.8978753, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.92577153, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 25541\n",
+ "Discriminator Loss: tf.Tensor(0.70830154, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.65672225, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 25542\n",
+ "Discriminator Loss: tf.Tensor(0.49615008, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.5043964, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 25543\n",
+ "Discriminator Loss: tf.Tensor(0.83708847, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.70542556, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 25544\n",
+ "Discriminator Loss: tf.Tensor(0.62946594, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.0588617, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 25545\n",
+ "Discriminator Loss: tf.Tensor(0.68370986, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.3169129, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 25546\n",
+ "Discriminator Loss: tf.Tensor(0.6517385, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.54865146, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 25547\n",
+ "Discriminator Loss: tf.Tensor(1.2738008, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.844958, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 25548\n",
+ "Discriminator Loss: tf.Tensor(0.9516995, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.18254466, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 25549\n",
+ "Discriminator Loss: tf.Tensor(0.5486224, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.3011007, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 25550\n",
+ "Discriminator Loss: tf.Tensor(0.9487352, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.4744328, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 25551\n",
+ "Discriminator Loss: tf.Tensor(0.9306407, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.81509024, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 25552\n",
+ "Discriminator Loss: tf.Tensor(0.7652294, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.4566017, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 25553\n",
+ "Discriminator Loss: tf.Tensor(0.52073467, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.5798277, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 25554\n",
+ "Discriminator Loss: tf.Tensor(1.0122199, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.6059318, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 25555\n",
+ "Discriminator Loss: tf.Tensor(0.5679409, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.82283515, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 25556\n",
+ "Discriminator Loss: tf.Tensor(0.8666017, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.6073721, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 25557\n",
+ "Discriminator Loss: tf.Tensor(0.31710154, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.8180218, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 25558\n",
+ "Discriminator Loss: tf.Tensor(0.5773015, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.1414744, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 25559\n",
+ "Discriminator Loss: tf.Tensor(0.5534838, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.3756217, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 25560\n",
+ "Discriminator Loss: tf.Tensor(0.7293962, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.4358717, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 25561\n",
+ "Discriminator Loss: tf.Tensor(1.1388763, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.9684038, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 25562\n",
+ "Discriminator Loss: tf.Tensor(0.5022231, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.7238157, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 25563\n",
+ "Discriminator Loss: tf.Tensor(0.73791873, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.6182643, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 25564\n",
+ "Discriminator Loss: tf.Tensor(0.36907935, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.8266203, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 25565\n",
+ "Discriminator Loss: tf.Tensor(1.2305675, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.3581992, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 25566\n",
+ "Discriminator Loss: tf.Tensor(0.7054333, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.7243487, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 25567\n",
+ "Discriminator Loss: tf.Tensor(0.9178518, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.3370136, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 25568\n",
+ "Discriminator Loss: tf.Tensor(0.9589898, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.4134378, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 25569\n",
+ "Discriminator Loss: tf.Tensor(1.246517, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.5196613, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 25570\n",
+ "Discriminator Loss: tf.Tensor(1.0996838, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.00019650285, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 25571\n",
+ "Discriminator Loss: tf.Tensor(0.9237516, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.4040436, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 25572\n",
+ "Discriminator Loss: tf.Tensor(0.7453387, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.446911, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 25573\n",
+ "Discriminator Loss: tf.Tensor(0.4062171, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.1293768, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 25574\n",
+ "Discriminator Loss: tf.Tensor(0.8414173, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.8032271, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 25575\n",
+ "Discriminator Loss: tf.Tensor(0.5584613, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.3735394, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 25576\n",
+ "Discriminator Loss: tf.Tensor(0.6385747, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.9777415, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 25577\n",
+ "Discriminator Loss: tf.Tensor(0.65787846, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.75499773, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 25578\n",
+ "Discriminator Loss: tf.Tensor(0.70315504, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.2944175, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 25579\n",
+ "Discriminator Loss: tf.Tensor(0.97614706, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.3410109, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 25580\n",
+ "Discriminator Loss: tf.Tensor(1.5637541, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.7165333, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 25581\n",
+ "Discriminator Loss: tf.Tensor(0.6961634, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.7729697, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 25582\n",
+ "Discriminator Loss: tf.Tensor(0.8680302, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.0874432, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 25583\n",
+ "Discriminator Loss: tf.Tensor(0.57892054, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.9660031, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 25584\n",
+ "Discriminator Loss: tf.Tensor(0.36270928, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.83504534, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 25585\n",
+ "Discriminator Loss: tf.Tensor(0.5708023, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.3739923, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 25586\n",
+ "Discriminator Loss: tf.Tensor(0.77792656, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.5926959, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 25587\n",
+ "Discriminator Loss: tf.Tensor(1.4239066, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.7140766, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 25588\n",
+ "Discriminator Loss: tf.Tensor(0.8488825, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.29850194, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 25589\n",
+ "Discriminator Loss: tf.Tensor(0.68779457, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.2903392, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 25590\n",
+ "Discriminator Loss: tf.Tensor(0.5414778, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.80719733, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 25591\n",
+ "Discriminator Loss: tf.Tensor(0.9268825, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.4407088, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 25592\n",
+ "Discriminator Loss: tf.Tensor(0.5784964, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.61721355, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 25593\n",
+ "Discriminator Loss: tf.Tensor(1.112469, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.0916898, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 25594\n",
+ "Discriminator Loss: tf.Tensor(0.60735965, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.48787466, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 25595\n",
+ "Discriminator Loss: tf.Tensor(0.8088223, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.439434, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 25596\n",
+ "Discriminator Loss: tf.Tensor(0.53976595, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.5890676, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 25597\n",
+ "Discriminator Loss: tf.Tensor(0.81810737, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.4521326, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 25598\n",
+ "Discriminator Loss: tf.Tensor(0.7906193, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.23607688, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 25599\n",
+ "Discriminator Loss: tf.Tensor(0.8330209, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.4519352, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 25600\n",
+ "Discriminator Loss: tf.Tensor(0.25390399, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.1085352, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 25601\n",
+ "Discriminator Loss: tf.Tensor(0.57485014, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.8661317, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 25602\n",
+ "Discriminator Loss: tf.Tensor(0.77311885, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.58859, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 25603\n",
+ "Discriminator Loss: tf.Tensor(0.26943636, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.86274505, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 25604\n",
+ "Discriminator Loss: tf.Tensor(1.8112113, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.9394394, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 25605\n",
+ "Discriminator Loss: tf.Tensor(0.80095613, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.37169838, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 25606\n",
+ "Discriminator Loss: tf.Tensor(0.9555237, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.2703938, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 25607\n",
+ "Discriminator Loss: tf.Tensor(0.6684911, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.53686064, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 25608\n",
+ "Discriminator Loss: tf.Tensor(0.7199346, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.4602963, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 25609\n",
+ "Discriminator Loss: tf.Tensor(0.7408863, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.4220116, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 25610\n",
+ "Discriminator Loss: tf.Tensor(0.67651737, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.5914248, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 25611\n",
+ "Discriminator Loss: tf.Tensor(0.71170527, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.3966247, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 25612\n",
+ "Discriminator Loss: tf.Tensor(0.7535239, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.0892358, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 25613\n",
+ "Discriminator Loss: tf.Tensor(0.58483416, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.1116014, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 25614\n",
+ "Discriminator Loss: tf.Tensor(0.5522905, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.94036216, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 25615\n",
+ "Discriminator Loss: tf.Tensor(0.92101586, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.78422546, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 25616\n",
+ "Discriminator Loss: tf.Tensor(0.9705765, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.826348, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 25617\n",
+ "Discriminator Loss: tf.Tensor(0.73767567, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.3676634, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 25618\n",
+ "Discriminator Loss: tf.Tensor(1.2691264, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.6479906, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 25619\n",
+ "Discriminator Loss: tf.Tensor(1.0144166, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.114289045, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 25620\n",
+ "Discriminator Loss: tf.Tensor(0.85198736, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.4352018, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 25621\n",
+ "Discriminator Loss: tf.Tensor(0.53140044, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.6310773, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 25622\n",
+ "Discriminator Loss: tf.Tensor(0.6512377, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.91928864, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 25623\n",
+ "Discriminator Loss: tf.Tensor(0.675073, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.3983027, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 25624\n",
+ "Discriminator Loss: tf.Tensor(0.57167846, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.576597, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 25625\n",
+ "Discriminator Loss: tf.Tensor(1.1473358, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.9034256, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 25626\n",
+ "Discriminator Loss: tf.Tensor(0.8273822, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.35674468, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 25627\n",
+ "Discriminator Loss: tf.Tensor(1.2204823, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.4184176, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 25628\n",
+ "Discriminator Loss: tf.Tensor(0.67130667, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.65655065, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 25629\n",
+ "Discriminator Loss: tf.Tensor(0.6459998, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.7429218, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 25630\n",
+ "Discriminator Loss: tf.Tensor(0.69512206, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.54323614, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 25631\n",
+ "Discriminator Loss: tf.Tensor(0.38457298, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.3186378, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 25632\n",
+ "Discriminator Loss: tf.Tensor(0.6032092, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.115662, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 25633\n",
+ "Discriminator Loss: tf.Tensor(0.5518496, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.93235797, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 25634\n",
+ "Discriminator Loss: tf.Tensor(0.5442823, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.1290683, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 25635\n",
+ "Discriminator Loss: tf.Tensor(0.54558784, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.7466192, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 25636\n",
+ "Discriminator Loss: tf.Tensor(1.3890961, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.0246696, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 25637\n",
+ "Discriminator Loss: tf.Tensor(0.6407116, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.50232834, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 25638\n",
+ "Discriminator Loss: tf.Tensor(0.92296195, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.252282, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 25639\n",
+ "Discriminator Loss: tf.Tensor(0.7680015, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.3337963, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 25640\n",
+ "Discriminator Loss: tf.Tensor(0.9479464, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.7995414, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 25641\n",
+ "Discriminator Loss: tf.Tensor(0.5616592, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.80163413, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 25642\n",
+ "Discriminator Loss: tf.Tensor(0.7583347, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.580368, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 25643\n",
+ "Discriminator Loss: tf.Tensor(0.6025703, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.4216002, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 25644\n",
+ "Discriminator Loss: tf.Tensor(1.1100848, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.3663039, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 25645\n",
+ "Discriminator Loss: tf.Tensor(0.879474, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.49553338, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 25646\n",
+ "Discriminator Loss: tf.Tensor(0.59204817, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.2535018, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 25647\n",
+ "Discriminator Loss: tf.Tensor(0.5874043, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.85197073, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 25648\n",
+ "Discriminator Loss: tf.Tensor(0.6022619, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.3919239, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 25649\n",
+ "Discriminator Loss: tf.Tensor(0.1693782, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.4632692, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 25650\n",
+ "Discriminator Loss: tf.Tensor(0.98555046, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.7011656, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 25651\n",
+ "Discriminator Loss: tf.Tensor(2.358478, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.0318637, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 25652\n",
+ "Discriminator Loss: tf.Tensor(0.8709875, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.54565006, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 25653\n",
+ "Discriminator Loss: tf.Tensor(1.2641268, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.8767491, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 25654\n",
+ "Discriminator Loss: tf.Tensor(0.98877543, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.6007586, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 25655\n",
+ "Discriminator Loss: tf.Tensor(0.90301085, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.4931132, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 25656\n",
+ "Discriminator Loss: tf.Tensor(1.0939872, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.2154089, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 25657\n",
+ "Discriminator Loss: tf.Tensor(0.7534734, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.0379261, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 25658\n",
+ "Discriminator Loss: tf.Tensor(0.89507616, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.7091723, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 25659\n",
+ "Discriminator Loss: tf.Tensor(0.5818064, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.0371939, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 25660\n",
+ "Discriminator Loss: tf.Tensor(0.7851912, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.0235119, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 25661\n",
+ "Discriminator Loss: tf.Tensor(0.7869538, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.9841337, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 25662\n",
+ "Discriminator Loss: tf.Tensor(0.87707466, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.2229457, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 25663\n",
+ "Discriminator Loss: tf.Tensor(0.8514117, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.36007348, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 25664\n",
+ "Discriminator Loss: tf.Tensor(1.512422, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.5740781, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 25665\n",
+ "Discriminator Loss: tf.Tensor(0.9967991, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.19357876, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 25666\n",
+ "Discriminator Loss: tf.Tensor(1.0771936, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.2409469, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 25667\n",
+ "Discriminator Loss: tf.Tensor(0.72180974, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.40167832, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 25668\n",
+ "Discriminator Loss: tf.Tensor(1.2717202, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.9490633, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 25669\n",
+ "Discriminator Loss: tf.Tensor(0.5175513, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.925854, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 25670\n",
+ "Discriminator Loss: tf.Tensor(0.58930755, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.9569538, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 25671\n",
+ "Discriminator Loss: tf.Tensor(1.3351114, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.7186521, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 25672\n",
+ "Discriminator Loss: tf.Tensor(1.0580612, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.016898734, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 25673\n",
+ "Discriminator Loss: tf.Tensor(0.88197047, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.84131783, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 25674\n",
+ "Discriminator Loss: tf.Tensor(0.91390765, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.526033, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 25675\n",
+ "Discriminator Loss: tf.Tensor(0.59937394, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.3544582, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 25676\n",
+ "Discriminator Loss: tf.Tensor(0.54571605, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.62336475, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 25677\n",
+ "Discriminator Loss: tf.Tensor(1.3499902, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.3096502, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 25678\n",
+ "Discriminator Loss: tf.Tensor(0.68194973, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.45238268, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 25679\n",
+ "Discriminator Loss: tf.Tensor(0.7285193, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.3370075, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 25680\n",
+ "Discriminator Loss: tf.Tensor(0.34263346, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.91920495, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 25681\n",
+ "Discriminator Loss: tf.Tensor(0.99049735, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.8790869, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 25682\n",
+ "Discriminator Loss: tf.Tensor(0.85036874, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.2678973, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 25683\n",
+ "Discriminator Loss: tf.Tensor(1.0180619, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.3067023, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 25684\n",
+ "Discriminator Loss: tf.Tensor(0.6381766, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.7080466, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 25685\n",
+ "Discriminator Loss: tf.Tensor(0.51549685, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.2974476, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 25686\n",
+ "Discriminator Loss: tf.Tensor(0.7428603, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.9737625, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 25687\n",
+ "Discriminator Loss: tf.Tensor(0.8438575, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.4570242, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 25688\n",
+ "Discriminator Loss: tf.Tensor(0.91073734, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.14680941, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 25689\n",
+ "Discriminator Loss: tf.Tensor(1.075886, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.2714064, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 25690\n",
+ "Discriminator Loss: tf.Tensor(0.72331196, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.6702366, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 25691\n",
+ "Discriminator Loss: tf.Tensor(0.79099995, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.667729, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 25692\n",
+ "Discriminator Loss: tf.Tensor(0.75787175, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.33535329, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 25693\n",
+ "Discriminator Loss: tf.Tensor(0.94343364, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.4292101, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 25694\n",
+ "Discriminator Loss: tf.Tensor(0.62235796, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.48039377, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 25695\n",
+ "Discriminator Loss: tf.Tensor(0.76500475, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.6572739, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 25696\n",
+ "Discriminator Loss: tf.Tensor(0.9550383, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.37063098, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 25697\n",
+ "Discriminator Loss: tf.Tensor(0.67456686, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.400515, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 25698\n",
+ "Discriminator Loss: tf.Tensor(0.83221143, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.19662464, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 25699\n",
+ "Discriminator Loss: tf.Tensor(1.3504417, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.6780361, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 25700\n",
+ "Discriminator Loss: tf.Tensor(0.48811066, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.64041144, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 25701\n",
+ "Discriminator Loss: tf.Tensor(1.4105775, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.1180161, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 25702\n",
+ "Discriminator Loss: tf.Tensor(0.685317, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.252628, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 25703\n",
+ "Discriminator Loss: tf.Tensor(0.59109044, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.99487394, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 25704\n",
+ "Discriminator Loss: tf.Tensor(0.6870732, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.4092579, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 25705\n",
+ "Discriminator Loss: tf.Tensor(0.53257245, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.5901519, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 25706\n",
+ "Discriminator Loss: tf.Tensor(0.50756246, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.7703419, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 25707\n",
+ "Discriminator Loss: tf.Tensor(0.5672587, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.7912104, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 25708\n",
+ "Discriminator Loss: tf.Tensor(1.0547812, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.6098577, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 25709\n",
+ "Discriminator Loss: tf.Tensor(0.60257673, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.4570661, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 25710\n",
+ "Discriminator Loss: tf.Tensor(0.7575777, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.384254, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 25711\n",
+ "Discriminator Loss: tf.Tensor(0.6796465, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.73524094, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 25712\n",
+ "Discriminator Loss: tf.Tensor(0.62085116, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.3181115, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 25713\n",
+ "Discriminator Loss: tf.Tensor(0.31068796, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.0324429, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 25714\n",
+ "Discriminator Loss: tf.Tensor(0.706161, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.6835581, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 25715\n",
+ "Discriminator Loss: tf.Tensor(0.58276093, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.6524531, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 25716\n",
+ "Discriminator Loss: tf.Tensor(1.4545425, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.9126968, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 25717\n",
+ "Discriminator Loss: tf.Tensor(1.0041986, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.23511052, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 25718\n",
+ "Discriminator Loss: tf.Tensor(0.8542714, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.200467, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 25719\n",
+ "Discriminator Loss: tf.Tensor(0.58975035, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.51510984, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 25720\n",
+ "Discriminator Loss: tf.Tensor(0.8536978, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.3134646, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 25721\n",
+ "Discriminator Loss: tf.Tensor(0.42929053, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.8861458, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 25722\n",
+ "Discriminator Loss: tf.Tensor(0.6980975, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.6195384, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 25723\n",
+ "Discriminator Loss: tf.Tensor(0.43810576, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.7916248, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 25724\n",
+ "Discriminator Loss: tf.Tensor(0.8429178, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.7163873, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 25725\n",
+ "Discriminator Loss: tf.Tensor(0.5725159, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.6052779, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 25726\n",
+ "Discriminator Loss: tf.Tensor(0.8679364, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.7598097, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 25727\n",
+ "Discriminator Loss: tf.Tensor(0.77817726, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.6312743, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 25728\n",
+ "Discriminator Loss: tf.Tensor(0.54436576, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.6642812, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 25729\n",
+ "Discriminator Loss: tf.Tensor(0.8282411, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.6065975, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 25730\n",
+ "Discriminator Loss: tf.Tensor(0.901471, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.0468827, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 25731\n",
+ "Discriminator Loss: tf.Tensor(0.8878809, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.35437942, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 25732\n",
+ "Discriminator Loss: tf.Tensor(0.72982824, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.9324545, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 25733\n",
+ "Discriminator Loss: tf.Tensor(0.46268174, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.6066683, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 25734\n",
+ "Discriminator Loss: tf.Tensor(1.046663, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.2565918, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 25735\n",
+ "Discriminator Loss: tf.Tensor(0.80954427, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.83075404, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 25736\n",
+ "Discriminator Loss: tf.Tensor(0.24177387, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.1348835, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 25737\n",
+ "Discriminator Loss: tf.Tensor(0.6844054, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.5809641, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 25738\n",
+ "Discriminator Loss: tf.Tensor(0.90371907, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.33944356, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 25739\n",
+ "Discriminator Loss: tf.Tensor(1.1753342, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.5549879, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 25740\n",
+ "Discriminator Loss: tf.Tensor(0.45539913, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.91862446, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 25741\n",
+ "Discriminator Loss: tf.Tensor(0.5873357, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.118104, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 25742\n",
+ "Discriminator Loss: tf.Tensor(0.3511729, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.8290512, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 25743\n",
+ "Discriminator Loss: tf.Tensor(1.3456428, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.6357168, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 25744\n",
+ "Discriminator Loss: tf.Tensor(0.75668085, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.46284404, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 25745\n",
+ "Discriminator Loss: tf.Tensor(0.57194144, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.5521363, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 25746\n",
+ "Discriminator Loss: tf.Tensor(0.7501498, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.437634, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 25747\n",
+ "Discriminator Loss: tf.Tensor(1.4237399, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.5429004, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 25748\n",
+ "Discriminator Loss: tf.Tensor(0.9475509, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.17926665, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 25749\n",
+ "Discriminator Loss: tf.Tensor(0.81506765, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.0637634, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 25750\n",
+ "Discriminator Loss: tf.Tensor(0.44303763, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.183791, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 25751\n",
+ "Discriminator Loss: tf.Tensor(0.80814654, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.56355923, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 25752\n",
+ "Discriminator Loss: tf.Tensor(0.9057396, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.1033798, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 25753\n",
+ "Discriminator Loss: tf.Tensor(0.9239115, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.31603828, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 25754\n",
+ "Discriminator Loss: tf.Tensor(1.2137693, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.863966, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 25755\n",
+ "Discriminator Loss: tf.Tensor(0.9848309, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.31529537, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 25756\n",
+ "Discriminator Loss: tf.Tensor(1.2134165, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.2020215, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 25757\n",
+ "Discriminator Loss: tf.Tensor(0.3914985, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.82759625, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 25758\n",
+ "Discriminator Loss: tf.Tensor(0.6955534, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.0591241, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 25759\n",
+ "Discriminator Loss: tf.Tensor(0.51499796, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.63612735, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 25760\n",
+ "Discriminator Loss: tf.Tensor(1.5033303, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.921257, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 25761\n",
+ "Discriminator Loss: tf.Tensor(0.8010917, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.32158735, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 25762\n",
+ "Discriminator Loss: tf.Tensor(0.6374335, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.0905852, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 25763\n",
+ "Discriminator Loss: tf.Tensor(0.39330056, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.0846748, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 25764\n",
+ "Discriminator Loss: tf.Tensor(1.2431177, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.3738518, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 25765\n",
+ "Discriminator Loss: tf.Tensor(0.7959402, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.6559343, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 25766\n",
+ "Discriminator Loss: tf.Tensor(0.5237915, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.1070651, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 25767\n",
+ "Discriminator Loss: tf.Tensor(1.1531749, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.3342342, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 25768\n",
+ "Discriminator Loss: tf.Tensor(0.5249351, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.6368173, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 25769\n",
+ "Discriminator Loss: tf.Tensor(1.6736717, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.3830147, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 25770\n",
+ "Discriminator Loss: tf.Tensor(0.5078833, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.6726713, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 25771\n",
+ "Discriminator Loss: tf.Tensor(1.0208038, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.1781584, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 25772\n",
+ "Discriminator Loss: tf.Tensor(0.72417676, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.3967533, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 25773\n",
+ "Discriminator Loss: tf.Tensor(0.88363934, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.5073185, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 25774\n",
+ "Discriminator Loss: tf.Tensor(0.46952522, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.69306415, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 25775\n",
+ "Discriminator Loss: tf.Tensor(0.6340456, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.389418, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 25776\n",
+ "Discriminator Loss: tf.Tensor(0.56405556, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.8008378, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 25777\n",
+ "Discriminator Loss: tf.Tensor(1.0629163, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.2326367, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 25778\n",
+ "Discriminator Loss: tf.Tensor(0.5095277, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.6609739, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 25779\n",
+ "Discriminator Loss: tf.Tensor(0.60402006, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.69482183, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 25780\n",
+ "Discriminator Loss: tf.Tensor(1.0822486, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.5569302, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 25781\n",
+ "Discriminator Loss: tf.Tensor(0.70473856, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.42359474, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 25782\n",
+ "Discriminator Loss: tf.Tensor(0.7844629, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.6079454, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 25783\n",
+ "Discriminator Loss: tf.Tensor(0.8642316, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.22984803, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 25784\n",
+ "Discriminator Loss: tf.Tensor(1.0060321, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.6553847, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 25785\n",
+ "Discriminator Loss: tf.Tensor(0.6960871, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.58785874, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 25786\n",
+ "Discriminator Loss: tf.Tensor(0.54123086, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.6454128, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 25787\n",
+ "Discriminator Loss: tf.Tensor(0.8356867, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.37399912, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 25788\n",
+ "Discriminator Loss: tf.Tensor(0.55647737, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.5175573, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 25789\n",
+ "Discriminator Loss: tf.Tensor(0.8409699, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.7229466, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 25790\n",
+ "Discriminator Loss: tf.Tensor(0.8835, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.4159263, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 25791\n",
+ "Discriminator Loss: tf.Tensor(0.44451386, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.86993915, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 25792\n",
+ "Discriminator Loss: tf.Tensor(0.7990855, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.616179, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 25793\n",
+ "Discriminator Loss: tf.Tensor(1.0479674, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.012460741, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 25794\n",
+ "Discriminator Loss: tf.Tensor(0.84596324, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.6779097, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 25795\n",
+ "Discriminator Loss: tf.Tensor(0.8366685, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.23634994, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 25796\n",
+ "Discriminator Loss: tf.Tensor(0.84873104, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.428785, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 25797\n",
+ "Discriminator Loss: tf.Tensor(0.8741682, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.18970321, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 25798\n",
+ "Discriminator Loss: tf.Tensor(1.0534593, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.4854378, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 25799\n",
+ "Discriminator Loss: tf.Tensor(0.6899016, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.47457173, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 25800\n",
+ "Discriminator Loss: tf.Tensor(0.55703634, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.7456604, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 25801\n",
+ "Discriminator Loss: tf.Tensor(0.6247445, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.89290714, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 25802\n",
+ "Discriminator Loss: tf.Tensor(0.98029536, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.8413017, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 25803\n",
+ "Discriminator Loss: tf.Tensor(0.4133865, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.5605437, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 25804\n",
+ "Discriminator Loss: tf.Tensor(0.5984698, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.7431734, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 25805\n",
+ "Discriminator Loss: tf.Tensor(0.86253136, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.8756357, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 25806\n",
+ "Discriminator Loss: tf.Tensor(0.69867927, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.7511399, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 25807\n",
+ "Discriminator Loss: tf.Tensor(0.38077044, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.1288574, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 25808\n",
+ "Discriminator Loss: tf.Tensor(0.54976714, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.1722275, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 25809\n",
+ "Discriminator Loss: tf.Tensor(0.9592676, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.0153257, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 25810\n",
+ "Discriminator Loss: tf.Tensor(0.880832, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.6931889, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 25811\n",
+ "Discriminator Loss: tf.Tensor(0.8957539, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.4899839, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 25812\n",
+ "Discriminator Loss: tf.Tensor(1.0580145, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.13336416, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 25813\n",
+ "Discriminator Loss: tf.Tensor(0.546676, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.1229883, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 25814\n",
+ "Discriminator Loss: tf.Tensor(0.3614403, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.99717826, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 25815\n",
+ "Discriminator Loss: tf.Tensor(0.4184659, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.2784562, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 25816\n",
+ "Discriminator Loss: tf.Tensor(0.9919855, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.53503186, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 25817\n",
+ "Discriminator Loss: tf.Tensor(0.82564414, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.6466742, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 25818\n",
+ "Discriminator Loss: tf.Tensor(0.5456382, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.6427964, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 25819\n",
+ "Discriminator Loss: tf.Tensor(1.4221561, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.2323248, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 25820\n",
+ "Discriminator Loss: tf.Tensor(1.0410812, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.28756452, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 25821\n",
+ "Discriminator Loss: tf.Tensor(0.9992312, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.4374343, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 25822\n",
+ "Discriminator Loss: tf.Tensor(0.8484752, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.3603439, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 25823\n",
+ "Discriminator Loss: tf.Tensor(0.6526444, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.1347837, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 25824\n",
+ "Discriminator Loss: tf.Tensor(0.53253853, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.6376265, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 25825\n",
+ "Discriminator Loss: tf.Tensor(1.7353363, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.2469845, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 25826\n",
+ "Discriminator Loss: tf.Tensor(0.6464389, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.6501332, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 25827\n",
+ "Discriminator Loss: tf.Tensor(0.7542463, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.4160866, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 25828\n",
+ "Discriminator Loss: tf.Tensor(0.42700046, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.1331086, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 25829\n",
+ "Discriminator Loss: tf.Tensor(0.26101345, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.8463066, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 25830\n",
+ "Discriminator Loss: tf.Tensor(0.7479224, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.7811073, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 25831\n",
+ "Discriminator Loss: tf.Tensor(0.7274648, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.578835, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 25832\n",
+ "Discriminator Loss: tf.Tensor(0.9869939, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.8475288, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 25833\n",
+ "Discriminator Loss: tf.Tensor(0.3809546, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.0606769, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 25834\n",
+ "Discriminator Loss: tf.Tensor(0.8021967, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.6003674, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 25835\n",
+ "Discriminator Loss: tf.Tensor(0.85869473, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.22359054, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 25836\n",
+ "Discriminator Loss: tf.Tensor(0.7731191, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.7775369, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 25837\n",
+ "Discriminator Loss: tf.Tensor(0.7324671, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.69901615, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 25838\n",
+ "Discriminator Loss: tf.Tensor(0.7714205, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.121282, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 25839\n",
+ "Discriminator Loss: tf.Tensor(0.7451397, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.3664937, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 25840\n",
+ "Discriminator Loss: tf.Tensor(0.90552217, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.22757296, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 25841\n",
+ "Discriminator Loss: tf.Tensor(1.2192792, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.6145579, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 25842\n",
+ "Discriminator Loss: tf.Tensor(0.4505064, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.80046874, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 25843\n",
+ "Discriminator Loss: tf.Tensor(0.9245798, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.8585981, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 25844\n",
+ "Discriminator Loss: tf.Tensor(0.61135995, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.48247167, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 25845\n",
+ "Discriminator Loss: tf.Tensor(0.8531648, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.5150384, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 25846\n",
+ "Discriminator Loss: tf.Tensor(1.0870755, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.19853805, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 25847\n",
+ "Discriminator Loss: tf.Tensor(1.2064452, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.616959, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 25848\n",
+ "Discriminator Loss: tf.Tensor(0.5773797, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.6071651, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 25849\n",
+ "Discriminator Loss: tf.Tensor(0.4846447, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.0336576, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 25850\n",
+ "Discriminator Loss: tf.Tensor(1.0807211, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.044139, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 25851\n",
+ "Discriminator Loss: tf.Tensor(1.2564327, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.04029296, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 25852\n",
+ "Discriminator Loss: tf.Tensor(0.98435825, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.3687032, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 25853\n",
+ "Discriminator Loss: tf.Tensor(0.33533958, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.912363, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 25854\n",
+ "Discriminator Loss: tf.Tensor(0.9875411, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.410963, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 25855\n",
+ "Discriminator Loss: tf.Tensor(0.417821, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.6687271, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 25856\n",
+ "Discriminator Loss: tf.Tensor(1.062043, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.5612328, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 25857\n",
+ "Discriminator Loss: tf.Tensor(0.67025316, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.6766438, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 25858\n",
+ "Discriminator Loss: tf.Tensor(0.3171105, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.3213787, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 25859\n",
+ "Discriminator Loss: tf.Tensor(0.7711793, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.537097, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 25860\n",
+ "Discriminator Loss: tf.Tensor(0.59567165, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.9807984, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 25861\n",
+ "Discriminator Loss: tf.Tensor(0.41194713, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.5601529, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 25862\n",
+ "Discriminator Loss: tf.Tensor(0.55225474, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.769485, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 25863\n",
+ "Discriminator Loss: tf.Tensor(0.56106865, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.3614453, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 25864\n",
+ "Discriminator Loss: tf.Tensor(0.786786, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.44711697, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 25865\n",
+ "Discriminator Loss: tf.Tensor(1.8360906, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.9435688, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 25866\n",
+ "Discriminator Loss: tf.Tensor(0.3584087, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.6791332, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 25867\n",
+ "Discriminator Loss: tf.Tensor(1.1161921, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.9881034, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 25868\n",
+ "Discriminator Loss: tf.Tensor(0.50972146, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.7892323, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 25869\n",
+ "Discriminator Loss: tf.Tensor(0.53285223, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.2851297, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 25870\n",
+ "Discriminator Loss: tf.Tensor(0.81698704, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.83174485, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 25871\n",
+ "Discriminator Loss: tf.Tensor(1.1400996, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.2976733, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 25872\n",
+ "Discriminator Loss: tf.Tensor(0.33717746, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.9041248, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 25873\n",
+ "Discriminator Loss: tf.Tensor(0.71748537, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.2645991, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 25874\n",
+ "Discriminator Loss: tf.Tensor(0.8078879, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.30076587, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 25875\n",
+ "Discriminator Loss: tf.Tensor(0.92164487, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.5937638, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 25876\n",
+ "Discriminator Loss: tf.Tensor(0.816264, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.4078335, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 25877\n",
+ "Discriminator Loss: tf.Tensor(1.0823866, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.0853232, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 25878\n",
+ "Discriminator Loss: tf.Tensor(0.7887858, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.45331374, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 25879\n",
+ "Discriminator Loss: tf.Tensor(0.64297915, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.6571789, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 25880\n",
+ "Discriminator Loss: tf.Tensor(1.0539995, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.24951284, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 25881\n",
+ "Discriminator Loss: tf.Tensor(1.0299207, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.6783991, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 25882\n",
+ "Discriminator Loss: tf.Tensor(0.49713668, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.78595823, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 25883\n",
+ "Discriminator Loss: tf.Tensor(1.0309836, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.7157397, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 25884\n",
+ "Discriminator Loss: tf.Tensor(0.85251683, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.25393847, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 25885\n",
+ "Discriminator Loss: tf.Tensor(0.9502098, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.4699354, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 25886\n",
+ "Discriminator Loss: tf.Tensor(0.5674318, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.5470604, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 25887\n",
+ "Discriminator Loss: tf.Tensor(0.3286461, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.2031153, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 25888\n",
+ "Discriminator Loss: tf.Tensor(0.61231446, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.2519196, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 25889\n",
+ "Discriminator Loss: tf.Tensor(0.7681136, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.41466618, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 25890\n",
+ "Discriminator Loss: tf.Tensor(0.60948956, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.4766893, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 25891\n",
+ "Discriminator Loss: tf.Tensor(0.2943028, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.0067011, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 25892\n",
+ "Discriminator Loss: tf.Tensor(1.1493502, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.6419811, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 25893\n",
+ "Discriminator Loss: tf.Tensor(0.70810205, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.466069, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 25894\n",
+ "Discriminator Loss: tf.Tensor(0.9195287, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.4330753, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 25895\n",
+ "Discriminator Loss: tf.Tensor(0.77807635, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.29796818, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 25896\n",
+ "Discriminator Loss: tf.Tensor(0.92070186, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.7014704, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 25897\n",
+ "Discriminator Loss: tf.Tensor(0.55204546, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.5857118, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 25898\n",
+ "Discriminator Loss: tf.Tensor(0.9351692, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.6903654, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 25899\n",
+ "Discriminator Loss: tf.Tensor(0.42188543, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.6645095, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 25900\n",
+ "Discriminator Loss: tf.Tensor(0.7473209, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.6505643, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 25901\n",
+ "Discriminator Loss: tf.Tensor(0.8140404, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.36680543, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 25902\n",
+ "Discriminator Loss: tf.Tensor(0.9782611, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.319507, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 25903\n",
+ "Discriminator Loss: tf.Tensor(0.4611039, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.77014226, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 25904\n",
+ "Discriminator Loss: tf.Tensor(0.5999606, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.3611794, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 25905\n",
+ "Discriminator Loss: tf.Tensor(0.58073366, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.1689391, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 25906\n",
+ "Discriminator Loss: tf.Tensor(0.61084306, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.0181943, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 25907\n",
+ "Discriminator Loss: tf.Tensor(0.85255355, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.4086599, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 25908\n",
+ "Discriminator Loss: tf.Tensor(0.56410956, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.67893916, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 25909\n",
+ "Discriminator Loss: tf.Tensor(1.3563325, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.8086971, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 25910\n",
+ "Discriminator Loss: tf.Tensor(0.6668756, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.630253, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 25911\n",
+ "Discriminator Loss: tf.Tensor(0.99370784, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.8593287, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 25912\n",
+ "Discriminator Loss: tf.Tensor(1.002306, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.78715056, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 25913\n",
+ "Discriminator Loss: tf.Tensor(1.4271696, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.5747013, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 25914\n",
+ "Discriminator Loss: tf.Tensor(1.16499, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.07643197, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 25915\n",
+ "Discriminator Loss: tf.Tensor(1.2710993, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.1004375, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 25916\n",
+ "Discriminator Loss: tf.Tensor(0.8778773, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.24444707, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 25917\n",
+ "Discriminator Loss: tf.Tensor(0.71002233, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.2463305, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 25918\n",
+ "Discriminator Loss: tf.Tensor(0.46402165, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.7345352, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 25919\n",
+ "Discriminator Loss: tf.Tensor(0.40556565, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.3919023, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 25920\n",
+ "Discriminator Loss: tf.Tensor(0.3667174, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.78045756, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 25921\n",
+ "Discriminator Loss: tf.Tensor(1.0928274, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.0686367, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 25922\n",
+ "Discriminator Loss: tf.Tensor(0.8153938, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.5882016, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 25923\n",
+ "Discriminator Loss: tf.Tensor(0.867681, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.5238113, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 25924\n",
+ "Discriminator Loss: tf.Tensor(0.6404491, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.4709929, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 25925\n",
+ "Discriminator Loss: tf.Tensor(0.94080997, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.4370227, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 25926\n",
+ "Discriminator Loss: tf.Tensor(0.6494475, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.4901549, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 25927\n",
+ "Discriminator Loss: tf.Tensor(1.188773, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.684317, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 25928\n",
+ "Discriminator Loss: tf.Tensor(0.80283535, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.34240294, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 25929\n",
+ "Discriminator Loss: tf.Tensor(0.94619286, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.5176115, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 25930\n",
+ "Discriminator Loss: tf.Tensor(1.0925559, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.038379673, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 25931\n",
+ "Discriminator Loss: tf.Tensor(1.0652373, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.670754, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 25932\n",
+ "Discriminator Loss: tf.Tensor(0.65055513, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.46839043, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 25933\n",
+ "Discriminator Loss: tf.Tensor(0.5113183, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.3454603, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 25934\n",
+ "Discriminator Loss: tf.Tensor(0.6302584, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.65447474, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 25935\n",
+ "Discriminator Loss: tf.Tensor(0.98214436, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.5007101, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 25936\n",
+ "Discriminator Loss: tf.Tensor(0.4954211, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.8266887, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 25937\n",
+ "Discriminator Loss: tf.Tensor(0.4398113, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.0261812, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 25938\n",
+ "Discriminator Loss: tf.Tensor(0.3901505, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.2643203, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 25939\n",
+ "Discriminator Loss: tf.Tensor(0.86832553, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.41102955, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 25940\n",
+ "Discriminator Loss: tf.Tensor(1.2256349, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.8389087, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 25941\n",
+ "Discriminator Loss: tf.Tensor(0.8546806, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.5309827, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 25942\n",
+ "Discriminator Loss: tf.Tensor(0.51120263, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.3176879, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 25943\n",
+ "Discriminator Loss: tf.Tensor(0.71900344, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.8461402, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 25944\n",
+ "Discriminator Loss: tf.Tensor(0.77583116, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.5627581, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 25945\n",
+ "Discriminator Loss: tf.Tensor(1.1100061, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.07222193, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 25946\n",
+ "Discriminator Loss: tf.Tensor(1.0274504, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.6812401, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 25947\n",
+ "Discriminator Loss: tf.Tensor(1.0999728, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.2875285, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 25948\n",
+ "Discriminator Loss: tf.Tensor(1.0433936, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.29627186, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 25949\n",
+ "Discriminator Loss: tf.Tensor(0.75102425, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.5958742, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 25950\n",
+ "Discriminator Loss: tf.Tensor(0.52250504, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.76769894, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 25951\n",
+ "Discriminator Loss: tf.Tensor(1.0796475, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.7708172, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 25952\n",
+ "Discriminator Loss: tf.Tensor(0.7341127, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.3081759, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 25953\n",
+ "Discriminator Loss: tf.Tensor(0.65351427, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.7586145, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 25954\n",
+ "Discriminator Loss: tf.Tensor(0.524587, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.57908195, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 25955\n",
+ "Discriminator Loss: tf.Tensor(0.6229379, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.6938757, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 25956\n",
+ "Discriminator Loss: tf.Tensor(0.4206012, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.6876752, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 25957\n",
+ "Discriminator Loss: tf.Tensor(1.0767035, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.9349604, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 25958\n",
+ "Discriminator Loss: tf.Tensor(0.90077716, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.69884187, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 25959\n",
+ "Discriminator Loss: tf.Tensor(0.592075, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.87234205, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 25960\n",
+ "Discriminator Loss: tf.Tensor(0.8988484, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.6238351, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 25961\n",
+ "Discriminator Loss: tf.Tensor(0.97543216, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.15247451, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 25962\n",
+ "Discriminator Loss: tf.Tensor(1.0046042, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.3491697, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 25963\n",
+ "Discriminator Loss: tf.Tensor(0.613987, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.2193877, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 25964\n",
+ "Discriminator Loss: tf.Tensor(0.6379713, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.45430508, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 25965\n",
+ "Discriminator Loss: tf.Tensor(0.87279016, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.7193829, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 25966\n",
+ "Discriminator Loss: tf.Tensor(0.5843218, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.6679929, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 25967\n",
+ "Discriminator Loss: tf.Tensor(0.77358466, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.7853314, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 25968\n",
+ "Discriminator Loss: tf.Tensor(0.6539521, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.62897533, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 25969\n",
+ "Discriminator Loss: tf.Tensor(0.8287245, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.4754758, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 25970\n",
+ "Discriminator Loss: tf.Tensor(0.8561226, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.2792732, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 25971\n",
+ "Discriminator Loss: tf.Tensor(0.6116635, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.5350961, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 25972\n",
+ "Discriminator Loss: tf.Tensor(1.163599, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.159863, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 25973\n",
+ "Discriminator Loss: tf.Tensor(0.49784023, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.60244304, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 25974\n",
+ "Discriminator Loss: tf.Tensor(1.5090982, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.5745893, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 25975\n",
+ "Discriminator Loss: tf.Tensor(0.93017864, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.4840416, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 25976\n",
+ "Discriminator Loss: tf.Tensor(0.75403464, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.0673448, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 25977\n",
+ "Discriminator Loss: tf.Tensor(0.7427886, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.50511783, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 25978\n",
+ "Discriminator Loss: tf.Tensor(0.7626314, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.9696754, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 25979\n",
+ "Discriminator Loss: tf.Tensor(0.5688311, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.7408247, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 25980\n",
+ "Discriminator Loss: tf.Tensor(0.53738457, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.4330231, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 25981\n",
+ "Discriminator Loss: tf.Tensor(0.26003772, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.191032, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 25982\n",
+ "Discriminator Loss: tf.Tensor(0.51120496, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.2496701, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 25983\n",
+ "Discriminator Loss: tf.Tensor(1.2228968, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.8978939, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 25984\n",
+ "Discriminator Loss: tf.Tensor(1.1690845, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.05633241, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 25985\n",
+ "Discriminator Loss: tf.Tensor(1.0961672, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.0502144, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 25986\n",
+ "Discriminator Loss: tf.Tensor(0.9170526, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.5687112, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 25987\n",
+ "Discriminator Loss: tf.Tensor(0.82962626, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.2256672, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 25988\n",
+ "Discriminator Loss: tf.Tensor(0.6116307, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.6285872, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 25989\n",
+ "Discriminator Loss: tf.Tensor(0.44429657, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.5290012, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 25990\n",
+ "Discriminator Loss: tf.Tensor(0.64539766, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.9661363, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 25991\n",
+ "Discriminator Loss: tf.Tensor(0.41946298, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.270408, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 25992\n",
+ "Discriminator Loss: tf.Tensor(0.75438464, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.5927019, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 25993\n",
+ "Discriminator Loss: tf.Tensor(1.0510848, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.03802316, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 25994\n",
+ "Discriminator Loss: tf.Tensor(0.87710893, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.605246, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 25995\n",
+ "Discriminator Loss: tf.Tensor(0.48414022, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.62823564, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 25996\n",
+ "Discriminator Loss: tf.Tensor(1.3089166, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.6609048, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 25997\n",
+ "Discriminator Loss: tf.Tensor(0.97377676, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.19256888, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 25998\n",
+ "Discriminator Loss: tf.Tensor(0.8986876, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.493547, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 25999\n",
+ "Discriminator Loss: tf.Tensor(0.6906577, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.43894163, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 26000\n",
+ "Discriminator Loss: tf.Tensor(0.636573, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.92016107, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 26001\n",
+ "Discriminator Loss: tf.Tensor(0.72404766, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.4179373, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 26002\n",
+ "Discriminator Loss: tf.Tensor(0.6523694, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.2307752, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 26003\n",
+ "Discriminator Loss: tf.Tensor(0.40970743, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.6698833, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 26004\n",
+ "Discriminator Loss: tf.Tensor(1.0972294, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.227331, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 26005\n",
+ "Discriminator Loss: tf.Tensor(0.32726508, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.75024176, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 26006\n",
+ "Discriminator Loss: tf.Tensor(1.1651435, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.2274125, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 26007\n",
+ "Discriminator Loss: tf.Tensor(0.81250036, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.1792836, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 26008\n",
+ "Discriminator Loss: tf.Tensor(0.3714711, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.89176226, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 26009\n",
+ "Discriminator Loss: tf.Tensor(0.78323567, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.521768, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 26010\n",
+ "Discriminator Loss: tf.Tensor(0.5357369, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.0798863, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 26011\n",
+ "Discriminator Loss: tf.Tensor(0.80956024, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.32656923, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 26012\n",
+ "Discriminator Loss: tf.Tensor(1.6837012, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.0796576, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 26013\n",
+ "Discriminator Loss: tf.Tensor(0.94291437, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.15738654, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 26014\n",
+ "Discriminator Loss: tf.Tensor(0.71694994, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.4305004, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 26015\n",
+ "Discriminator Loss: tf.Tensor(0.70095235, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.5921492, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 26016\n",
+ "Discriminator Loss: tf.Tensor(0.6394273, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.5879861, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 26017\n",
+ "Discriminator Loss: tf.Tensor(0.54167205, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.0325538, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 26018\n",
+ "Discriminator Loss: tf.Tensor(0.3792499, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.1031381, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 26019\n",
+ "Discriminator Loss: tf.Tensor(0.415566, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.056286, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 26020\n",
+ "Discriminator Loss: tf.Tensor(1.1131232, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.10073, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 26021\n",
+ "Discriminator Loss: tf.Tensor(0.7213084, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.34666327, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 26022\n",
+ "Discriminator Loss: tf.Tensor(1.0692518, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.4384805, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 26023\n",
+ "Discriminator Loss: tf.Tensor(1.0107027, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.290995, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 26024\n",
+ "Discriminator Loss: tf.Tensor(0.8689624, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.2987014, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 26025\n",
+ "Discriminator Loss: tf.Tensor(1.164207, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.14657994, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 26026\n",
+ "Discriminator Loss: tf.Tensor(0.75572413, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.6076509, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 26027\n",
+ "Discriminator Loss: tf.Tensor(0.66546375, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.3570225, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 26028\n",
+ "Discriminator Loss: tf.Tensor(0.8275337, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.5668211, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 26029\n",
+ "Discriminator Loss: tf.Tensor(0.8437762, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.54770344, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 26030\n",
+ "Discriminator Loss: tf.Tensor(0.54377544, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.5383449, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 26031\n",
+ "Discriminator Loss: tf.Tensor(0.6227413, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.51639915, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 26032\n",
+ "Discriminator Loss: tf.Tensor(1.1791227, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.5351492, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 26033\n",
+ "Discriminator Loss: tf.Tensor(0.46020716, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.60013336, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 26034\n",
+ "Discriminator Loss: tf.Tensor(1.0121361, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.3942043, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 26035\n",
+ "Discriminator Loss: tf.Tensor(0.930553, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.2980254, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 26036\n",
+ "Discriminator Loss: tf.Tensor(0.40970397, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.4743932, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 26037\n",
+ "Discriminator Loss: tf.Tensor(0.38608882, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.0144404, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 26038\n",
+ "Discriminator Loss: tf.Tensor(0.38182306, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.3243023, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 26039\n",
+ "Discriminator Loss: tf.Tensor(0.77093637, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.5176343, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 26040\n",
+ "Discriminator Loss: tf.Tensor(0.8789637, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.8016194, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 26041\n",
+ "Discriminator Loss: tf.Tensor(0.45718455, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.844131, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 26042\n",
+ "Discriminator Loss: tf.Tensor(1.2203797, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.8111826, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 26043\n",
+ "Discriminator Loss: tf.Tensor(1.1022431, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.03307805, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 26044\n",
+ "Discriminator Loss: tf.Tensor(0.987363, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.3669578, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 26045\n",
+ "Discriminator Loss: tf.Tensor(0.8777208, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.39564964, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 26046\n",
+ "Discriminator Loss: tf.Tensor(0.5236032, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.1833366, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 26047\n",
+ "Discriminator Loss: tf.Tensor(0.7876219, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.4868523, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 26048\n",
+ "Discriminator Loss: tf.Tensor(1.0629894, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.15080504, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 26049\n",
+ "Discriminator Loss: tf.Tensor(0.9494342, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.50757843, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 26050\n",
+ "Discriminator Loss: tf.Tensor(1.3581476, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.4362307, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 26051\n",
+ "Discriminator Loss: tf.Tensor(0.97453135, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.13236211, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 26052\n",
+ "Discriminator Loss: tf.Tensor(0.86419976, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.0519172, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 26053\n",
+ "Discriminator Loss: tf.Tensor(0.5040822, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.70067835, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 26054\n",
+ "Discriminator Loss: tf.Tensor(0.7662095, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.7804121, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 26055\n",
+ "Discriminator Loss: tf.Tensor(0.6512969, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.44591784, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 26056\n",
+ "Discriminator Loss: tf.Tensor(0.33466905, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.2524885, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 26057\n",
+ "Discriminator Loss: tf.Tensor(0.5672569, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.2619511, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 26058\n",
+ "Discriminator Loss: tf.Tensor(0.2173934, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.0826205, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 26059\n",
+ "Discriminator Loss: tf.Tensor(0.5906552, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.3087072, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 26060\n",
+ "Discriminator Loss: tf.Tensor(1.3961525, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.6040077, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 26061\n",
+ "Discriminator Loss: tf.Tensor(0.6151025, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.5933543, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 26062\n",
+ "Discriminator Loss: tf.Tensor(0.7180539, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.3490292, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 26063\n",
+ "Discriminator Loss: tf.Tensor(0.5826484, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.8194464, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 26064\n",
+ "Discriminator Loss: tf.Tensor(1.2001058, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.3916258, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 26065\n",
+ "Discriminator Loss: tf.Tensor(0.65009916, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.70422983, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 26066\n",
+ "Discriminator Loss: tf.Tensor(0.8524383, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.6525272, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 26067\n",
+ "Discriminator Loss: tf.Tensor(0.53919524, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.6215011, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 26068\n",
+ "Discriminator Loss: tf.Tensor(1.0579671, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.6117727, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 26069\n",
+ "Discriminator Loss: tf.Tensor(0.6485702, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.49438405, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 26070\n",
+ "Discriminator Loss: tf.Tensor(1.0533936, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.6083168, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 26071\n",
+ "Discriminator Loss: tf.Tensor(0.58829063, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.5972664, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 26072\n",
+ "Discriminator Loss: tf.Tensor(0.5154561, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.674099, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 26073\n",
+ "Discriminator Loss: tf.Tensor(0.4426677, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.6857335, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 26074\n",
+ "Discriminator Loss: tf.Tensor(0.6168692, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.3071975, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 26075\n",
+ "Discriminator Loss: tf.Tensor(0.6325677, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.7243857, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 26076\n",
+ "Discriminator Loss: tf.Tensor(0.46251208, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.5694523, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 26077\n",
+ "Discriminator Loss: tf.Tensor(0.58571863, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.62398505, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 26078\n",
+ "Discriminator Loss: tf.Tensor(1.1410937, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.2038774, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 26079\n",
+ "Discriminator Loss: tf.Tensor(0.88545406, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.23795176, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 26080\n",
+ "Discriminator Loss: tf.Tensor(0.9913732, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.6726538, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 26081\n",
+ "Discriminator Loss: tf.Tensor(0.48208553, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.68449324, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 26082\n",
+ "Discriminator Loss: tf.Tensor(0.9934236, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.1693406, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 26083\n",
+ "Discriminator Loss: tf.Tensor(0.757773, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.34043917, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 26084\n",
+ "Discriminator Loss: tf.Tensor(0.82626796, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.6340758, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 26085\n",
+ "Discriminator Loss: tf.Tensor(0.6306643, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.39849642, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 26086\n",
+ "Discriminator Loss: tf.Tensor(1.0414937, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.6482939, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 26087\n",
+ "Discriminator Loss: tf.Tensor(0.62414896, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.40587518, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 26088\n",
+ "Discriminator Loss: tf.Tensor(1.2071476, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.5839685, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 26089\n",
+ "Discriminator Loss: tf.Tensor(0.79517406, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.44953856, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 26090\n",
+ "Discriminator Loss: tf.Tensor(0.5416411, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.4072002, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 26091\n",
+ "Discriminator Loss: tf.Tensor(0.60855097, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.806456, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 26092\n",
+ "Discriminator Loss: tf.Tensor(0.34735298, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.483662, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 26093\n",
+ "Discriminator Loss: tf.Tensor(0.2606321, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.4691792, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 26094\n",
+ "Discriminator Loss: tf.Tensor(0.7183537, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.6551872, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 26095\n",
+ "Discriminator Loss: tf.Tensor(1.0545849, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.9284607, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 26096\n",
+ "Discriminator Loss: tf.Tensor(0.97856975, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.4127774, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 26097\n",
+ "Discriminator Loss: tf.Tensor(1.2412167, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.3326854, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 26098\n",
+ "Discriminator Loss: tf.Tensor(0.98128355, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.3691329, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 26099\n",
+ "Discriminator Loss: tf.Tensor(0.81396216, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.3844877, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 26100\n",
+ "Discriminator Loss: tf.Tensor(0.5922566, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.47137722, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 26101\n",
+ "Discriminator Loss: tf.Tensor(1.0005417, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.5717632, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 26102\n",
+ "Discriminator Loss: tf.Tensor(0.7717905, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.43650422, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 26103\n",
+ "Discriminator Loss: tf.Tensor(0.84333384, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.311639, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 26104\n",
+ "Discriminator Loss: tf.Tensor(0.37463874, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.71129423, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 26105\n",
+ "Discriminator Loss: tf.Tensor(1.3092282, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(3.4105885, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 26106\n",
+ "Discriminator Loss: tf.Tensor(0.41827533, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.8227682, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 26107\n",
+ "Discriminator Loss: tf.Tensor(0.5367131, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.3243648, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 26108\n",
+ "Discriminator Loss: tf.Tensor(0.71279275, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.2119333, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 26109\n",
+ "Discriminator Loss: tf.Tensor(0.44108075, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.95983297, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 26110\n",
+ "Discriminator Loss: tf.Tensor(0.8630936, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.6743737, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 26111\n",
+ "Discriminator Loss: tf.Tensor(1.0685184, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.0726647, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 26112\n",
+ "Discriminator Loss: tf.Tensor(0.9628111, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.3028233, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 26113\n",
+ "Discriminator Loss: tf.Tensor(0.7548927, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.39618513, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 26114\n",
+ "Discriminator Loss: tf.Tensor(0.8058913, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.2844812, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 26115\n",
+ "Discriminator Loss: tf.Tensor(0.45564342, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.3205478, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 26116\n",
+ "Discriminator Loss: tf.Tensor(0.40790397, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.9506068, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 26117\n",
+ "Discriminator Loss: tf.Tensor(1.1669927, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.2895416, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 26118\n",
+ "Discriminator Loss: tf.Tensor(0.835183, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.39602265, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 26119\n",
+ "Discriminator Loss: tf.Tensor(1.0690353, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.5301892, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 26120\n",
+ "Discriminator Loss: tf.Tensor(0.88692755, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.37143648, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 26121\n",
+ "Discriminator Loss: tf.Tensor(0.9666935, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.3985119, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 26122\n",
+ "Discriminator Loss: tf.Tensor(1.0095341, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.11402593, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 26123\n",
+ "Discriminator Loss: tf.Tensor(0.4020088, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.1099654, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 26124\n",
+ "Discriminator Loss: tf.Tensor(0.65263695, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.8968008, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 26125\n",
+ "Discriminator Loss: tf.Tensor(0.60704, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.6334833, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 26126\n",
+ "Discriminator Loss: tf.Tensor(0.6815154, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.41406712, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 26127\n",
+ "Discriminator Loss: tf.Tensor(1.3818681, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.5361093, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 26128\n",
+ "Discriminator Loss: tf.Tensor(0.4472685, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.68920326, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 26129\n",
+ "Discriminator Loss: tf.Tensor(0.8837714, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.9639746, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 26130\n",
+ "Discriminator Loss: tf.Tensor(0.5442478, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.8189936, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 26131\n",
+ "Discriminator Loss: tf.Tensor(0.72079796, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.3614616, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 26132\n",
+ "Discriminator Loss: tf.Tensor(0.5722015, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.5796421, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 26133\n",
+ "Discriminator Loss: tf.Tensor(0.69744444, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.7860655, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 26134\n",
+ "Discriminator Loss: tf.Tensor(0.57704437, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.56378144, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 26135\n",
+ "Discriminator Loss: tf.Tensor(1.257566, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.8701391, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 26136\n",
+ "Discriminator Loss: tf.Tensor(0.39717352, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.67192054, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 26137\n",
+ "Discriminator Loss: tf.Tensor(0.5884646, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.7226386, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 26138\n",
+ "Discriminator Loss: tf.Tensor(0.74520767, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.80090904, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 26139\n",
+ "Discriminator Loss: tf.Tensor(0.46380618, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.2798359, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 26140\n",
+ "Discriminator Loss: tf.Tensor(0.6369536, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.4937702, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 26141\n",
+ "Discriminator Loss: tf.Tensor(0.623317, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.78280544, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 26142\n",
+ "Discriminator Loss: tf.Tensor(0.4933182, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.2094266, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 26143\n",
+ "Discriminator Loss: tf.Tensor(0.5607345, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.9671723, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 26144\n",
+ "Discriminator Loss: tf.Tensor(1.0779197, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.7741069, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 26145\n",
+ "Discriminator Loss: tf.Tensor(0.33341992, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.7872345, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 26146\n",
+ "Discriminator Loss: tf.Tensor(1.0289861, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.3194325, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 26147\n",
+ "Discriminator Loss: tf.Tensor(0.46270856, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.6674161, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 26148\n",
+ "Discriminator Loss: tf.Tensor(1.268372, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.7420082, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 26149\n",
+ "Discriminator Loss: tf.Tensor(1.2090107, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.057688903, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 26150\n",
+ "Discriminator Loss: tf.Tensor(0.6298889, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.1240761, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 26151\n",
+ "Discriminator Loss: tf.Tensor(0.87634814, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.56450135, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 26152\n",
+ "Discriminator Loss: tf.Tensor(0.33589357, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.3940662, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 26153\n",
+ "Discriminator Loss: tf.Tensor(0.79764485, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.0387281, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 26154\n",
+ "Discriminator Loss: tf.Tensor(0.67583734, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.2953714, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 26155\n",
+ "Discriminator Loss: tf.Tensor(0.36926293, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.86112577, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 26156\n",
+ "Discriminator Loss: tf.Tensor(0.41937762, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.2725729, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 26157\n",
+ "Discriminator Loss: tf.Tensor(0.9511738, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.9513708, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 26158\n",
+ "Discriminator Loss: tf.Tensor(1.1658995, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.87771255, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 26159\n",
+ "Discriminator Loss: tf.Tensor(0.5777547, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.9689277, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 26160\n",
+ "Discriminator Loss: tf.Tensor(0.90155363, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.0071679, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 26161\n",
+ "Discriminator Loss: tf.Tensor(0.7403374, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.0039831, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 26162\n",
+ "Discriminator Loss: tf.Tensor(0.7862131, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.4411398, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 26163\n",
+ "Discriminator Loss: tf.Tensor(1.8719728, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.9363021, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 26164\n",
+ "Discriminator Loss: tf.Tensor(1.0437529, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.3186057, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 26165\n",
+ "Discriminator Loss: tf.Tensor(0.71256363, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.239143, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 26166\n",
+ "Discriminator Loss: tf.Tensor(0.7791503, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.25704488, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 26167\n",
+ "Discriminator Loss: tf.Tensor(1.034853, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.0245279, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 26168\n",
+ "Discriminator Loss: tf.Tensor(0.5572846, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.78630334, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 26169\n",
+ "Discriminator Loss: tf.Tensor(0.66345525, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.4504181, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 26170\n",
+ "Discriminator Loss: tf.Tensor(0.4920236, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.7282279, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 26171\n",
+ "Discriminator Loss: tf.Tensor(0.7456446, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.3511082, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 26172\n",
+ "Discriminator Loss: tf.Tensor(0.35891485, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.026771, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 26173\n",
+ "Discriminator Loss: tf.Tensor(0.7876788, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.3294877, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 26174\n",
+ "Discriminator Loss: tf.Tensor(0.7527745, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.3288177, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 26175\n",
+ "Discriminator Loss: tf.Tensor(1.1073185, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.778767, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 26176\n",
+ "Discriminator Loss: tf.Tensor(1.0245495, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.15387873, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 26177\n",
+ "Discriminator Loss: tf.Tensor(0.5807729, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.20079, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 26178\n",
+ "Discriminator Loss: tf.Tensor(0.46076378, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.9634745, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 26179\n",
+ "Discriminator Loss: tf.Tensor(0.7851313, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.4994642, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 26180\n",
+ "Discriminator Loss: tf.Tensor(0.57883155, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.48511162, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 26181\n",
+ "Discriminator Loss: tf.Tensor(1.2927601, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.2843076, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 26182\n",
+ "Discriminator Loss: tf.Tensor(0.40309355, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.9451844, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 26183\n",
+ "Discriminator Loss: tf.Tensor(1.0379975, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.0796866, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 26184\n",
+ "Discriminator Loss: tf.Tensor(0.59295505, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.49167132, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 26185\n",
+ "Discriminator Loss: tf.Tensor(1.1782029, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.4529437, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 26186\n",
+ "Discriminator Loss: tf.Tensor(0.74530756, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.41044548, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 26187\n",
+ "Discriminator Loss: tf.Tensor(0.9753307, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.3740153, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 26188\n",
+ "Discriminator Loss: tf.Tensor(0.41337642, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.9839203, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 26189\n",
+ "Discriminator Loss: tf.Tensor(0.40010452, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.1583751, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 26190\n",
+ "Discriminator Loss: tf.Tensor(0.30451313, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.4033529, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 26191\n",
+ "Discriminator Loss: tf.Tensor(0.4978236, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.1883808, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 26192\n",
+ "Discriminator Loss: tf.Tensor(0.43936855, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.8597336, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 26193\n",
+ "Discriminator Loss: tf.Tensor(2.0635958, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(3.0387325, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 26194\n",
+ "Discriminator Loss: tf.Tensor(0.65490574, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.7701952, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 26195\n",
+ "Discriminator Loss: tf.Tensor(0.3231414, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.96409583, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 26196\n",
+ "Discriminator Loss: tf.Tensor(1.0820689, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.2252637, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 26197\n",
+ "Discriminator Loss: tf.Tensor(0.4871213, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.1199601, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 26198\n",
+ "Discriminator Loss: tf.Tensor(0.46096, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.6295975, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 26199\n",
+ "Discriminator Loss: tf.Tensor(1.3729066, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.0713584, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 26200\n",
+ "Discriminator Loss: tf.Tensor(0.54890424, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.6068072, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 26201\n",
+ "Discriminator Loss: tf.Tensor(1.0454721, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.7594658, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 26202\n",
+ "Discriminator Loss: tf.Tensor(0.57411194, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.8209496, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 26203\n",
+ "Discriminator Loss: tf.Tensor(0.7563372, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.308612, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 26204\n",
+ "Discriminator Loss: tf.Tensor(0.33825594, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.892041, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 26205\n",
+ "Discriminator Loss: tf.Tensor(0.83556855, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.334701, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 26206\n",
+ "Discriminator Loss: tf.Tensor(0.6768976, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.36944064, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 26207\n",
+ "Discriminator Loss: tf.Tensor(0.97926044, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.627865, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 26208\n",
+ "Discriminator Loss: tf.Tensor(0.74880093, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.36932048, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 26209\n",
+ "Discriminator Loss: tf.Tensor(1.1521881, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.5750089, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 26210\n",
+ "Discriminator Loss: tf.Tensor(0.49743885, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.6602752, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 26211\n",
+ "Discriminator Loss: tf.Tensor(0.49947625, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.570336, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 26212\n",
+ "Discriminator Loss: tf.Tensor(0.59721106, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.7058938, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 26213\n",
+ "Discriminator Loss: tf.Tensor(0.76012343, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.1775476, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 26214\n",
+ "Discriminator Loss: tf.Tensor(0.6948528, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.2720197, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 26215\n",
+ "Discriminator Loss: tf.Tensor(0.52655363, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.0035484, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 26216\n",
+ "Discriminator Loss: tf.Tensor(0.97304976, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.9914941, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 26217\n",
+ "Discriminator Loss: tf.Tensor(0.66427803, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.0195843, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 26218\n",
+ "Discriminator Loss: tf.Tensor(0.90300167, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.1053599, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 26219\n",
+ "Discriminator Loss: tf.Tensor(0.6405433, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.5312984, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 26220\n",
+ "Discriminator Loss: tf.Tensor(1.0265708, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.9669422, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 26221\n",
+ "Discriminator Loss: tf.Tensor(0.3998866, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.8029413, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 26222\n",
+ "Discriminator Loss: tf.Tensor(0.60074526, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.5529217, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 26223\n",
+ "Discriminator Loss: tf.Tensor(0.6537404, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.5527565, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 26224\n",
+ "Discriminator Loss: tf.Tensor(0.63500726, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.516704, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 26225\n",
+ "Discriminator Loss: tf.Tensor(0.80545187, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.35835645, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 26226\n",
+ "Discriminator Loss: tf.Tensor(1.0485462, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.9364649, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 26227\n",
+ "Discriminator Loss: tf.Tensor(0.33665198, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.770206, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 26228\n",
+ "Discriminator Loss: tf.Tensor(1.379219, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.0245289, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 26229\n",
+ "Discriminator Loss: tf.Tensor(0.49048004, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.7361625, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 26230\n",
+ "Discriminator Loss: tf.Tensor(0.586347, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.2805039, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 26231\n",
+ "Discriminator Loss: tf.Tensor(0.6692895, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.60747737, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 26232\n",
+ "Discriminator Loss: tf.Tensor(0.8622594, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.8792105, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 26233\n",
+ "Discriminator Loss: tf.Tensor(0.5517573, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.56833464, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 26234\n",
+ "Discriminator Loss: tf.Tensor(0.65935093, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.5675005, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 26235\n",
+ "Discriminator Loss: tf.Tensor(0.76457393, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.46760225, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 26236\n",
+ "Discriminator Loss: tf.Tensor(1.082506, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.9160105, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 26237\n",
+ "Discriminator Loss: tf.Tensor(0.6161166, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.5109519, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 26238\n",
+ "Discriminator Loss: tf.Tensor(0.91231287, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.6665188, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 26239\n",
+ "Discriminator Loss: tf.Tensor(0.49927384, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.80647254, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 26240\n",
+ "Discriminator Loss: tf.Tensor(1.0283002, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.045454, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 26241\n",
+ "Discriminator Loss: tf.Tensor(0.5660606, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.79446334, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 26242\n",
+ "Discriminator Loss: tf.Tensor(0.6913088, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.037324, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 26243\n",
+ "Discriminator Loss: tf.Tensor(1.1186173, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.77480155, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 26244\n",
+ "Discriminator Loss: tf.Tensor(0.92806363, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.4358306, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 26245\n",
+ "Discriminator Loss: tf.Tensor(0.6439023, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.55065185, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 26246\n",
+ "Discriminator Loss: tf.Tensor(1.3872273, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.7023283, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 26247\n",
+ "Discriminator Loss: tf.Tensor(0.75151896, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.48037803, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 26248\n",
+ "Discriminator Loss: tf.Tensor(0.8533535, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.2629552, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 26249\n",
+ "Discriminator Loss: tf.Tensor(0.8989524, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.60031414, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 26250\n",
+ "Discriminator Loss: tf.Tensor(0.42270187, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.026143, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 26251\n",
+ "Discriminator Loss: tf.Tensor(0.76971316, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.9058781, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 26252\n",
+ "Discriminator Loss: tf.Tensor(0.6543738, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.5379049, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 26253\n",
+ "Discriminator Loss: tf.Tensor(1.3944968, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.0100503, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 26254\n",
+ "Discriminator Loss: tf.Tensor(0.83465606, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.3049645, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 26255\n",
+ "Discriminator Loss: tf.Tensor(0.5352882, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.8862252, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 26256\n",
+ "Discriminator Loss: tf.Tensor(0.3731874, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.0147816, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 26257\n",
+ "Discriminator Loss: tf.Tensor(0.33138645, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.6354723, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 26258\n",
+ "Discriminator Loss: tf.Tensor(1.0942085, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.48363414, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 26259\n",
+ "Discriminator Loss: tf.Tensor(0.7730915, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.5651935, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 26260\n",
+ "Discriminator Loss: tf.Tensor(0.48800984, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.6142722, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 26261\n",
+ "Discriminator Loss: tf.Tensor(1.0008827, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.2607238, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 26262\n",
+ "Discriminator Loss: tf.Tensor(0.48374242, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.6574502, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 26263\n",
+ "Discriminator Loss: tf.Tensor(0.5758551, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.4423958, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 26264\n",
+ "Discriminator Loss: tf.Tensor(0.6438032, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.76881176, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 26265\n",
+ "Discriminator Loss: tf.Tensor(0.6284447, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.4608864, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 26266\n",
+ "Discriminator Loss: tf.Tensor(0.37753788, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.6918395, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 26267\n",
+ "Discriminator Loss: tf.Tensor(0.942794, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.224679, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 26268\n",
+ "Discriminator Loss: tf.Tensor(0.41119504, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.0332965, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 26269\n",
+ "Discriminator Loss: tf.Tensor(0.7401193, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.7183151, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 26270\n",
+ "Discriminator Loss: tf.Tensor(0.50565314, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.6243404, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 26271\n",
+ "Discriminator Loss: tf.Tensor(0.82736003, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.4740193, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 26272\n",
+ "Discriminator Loss: tf.Tensor(1.0999596, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.5419174, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 26273\n",
+ "Discriminator Loss: tf.Tensor(0.8203283, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.29229012, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 26274\n",
+ "Discriminator Loss: tf.Tensor(1.389054, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.8050671, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 26275\n",
+ "Discriminator Loss: tf.Tensor(0.9533235, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.29642406, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 26276\n",
+ "Discriminator Loss: tf.Tensor(0.874241, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.4576362, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 26277\n",
+ "Discriminator Loss: tf.Tensor(0.99794245, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.14727467, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 26278\n",
+ "Discriminator Loss: tf.Tensor(0.98481256, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.2625493, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 26279\n",
+ "Discriminator Loss: tf.Tensor(0.49907663, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.068727, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 26280\n",
+ "Discriminator Loss: tf.Tensor(0.707461, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.0523982, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 26281\n",
+ "Discriminator Loss: tf.Tensor(0.8365533, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.83218545, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 26282\n",
+ "Discriminator Loss: tf.Tensor(0.43656254, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.0244976, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 26283\n",
+ "Discriminator Loss: tf.Tensor(0.2859517, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.1225487, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 26284\n",
+ "Discriminator Loss: tf.Tensor(0.60058326, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.2903224, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 26285\n",
+ "Discriminator Loss: tf.Tensor(0.53841114, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.86564666, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 26286\n",
+ "Discriminator Loss: tf.Tensor(0.7181043, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.3607537, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 26287\n",
+ "Discriminator Loss: tf.Tensor(0.6739441, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.39890996, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 26288\n",
+ "Discriminator Loss: tf.Tensor(1.466497, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.8801588, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 26289\n",
+ "Discriminator Loss: tf.Tensor(0.62871337, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.55017644, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 26290\n",
+ "Discriminator Loss: tf.Tensor(0.7693052, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.264224, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 26291\n",
+ "Discriminator Loss: tf.Tensor(0.40730113, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.7255847, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 26292\n",
+ "Discriminator Loss: tf.Tensor(1.0611665, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.4765835, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 26293\n",
+ "Discriminator Loss: tf.Tensor(0.81280184, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.6589374, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 26294\n",
+ "Discriminator Loss: tf.Tensor(0.71947956, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.4596239, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 26295\n",
+ "Discriminator Loss: tf.Tensor(0.8578581, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.48434415, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 26296\n",
+ "Discriminator Loss: tf.Tensor(1.0619006, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.3098861, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 26297\n",
+ "Discriminator Loss: tf.Tensor(0.32869613, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.9621115, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 26298\n",
+ "Discriminator Loss: tf.Tensor(1.0273513, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.6664289, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 26299\n",
+ "Discriminator Loss: tf.Tensor(0.8240945, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.38351414, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 26300\n",
+ "Discriminator Loss: tf.Tensor(1.1351686, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.0151533, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 26301\n",
+ "Discriminator Loss: tf.Tensor(0.7485336, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.3277117, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 26302\n",
+ "Discriminator Loss: tf.Tensor(1.0402498, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.016045103, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 26303\n",
+ "Discriminator Loss: tf.Tensor(0.8207419, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.3561507, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 26304\n",
+ "Discriminator Loss: tf.Tensor(0.39779148, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.9389574, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 26305\n",
+ "Discriminator Loss: tf.Tensor(0.7586998, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.5035367, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 26306\n",
+ "Discriminator Loss: tf.Tensor(0.937308, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.33996034, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 26307\n",
+ "Discriminator Loss: tf.Tensor(0.61248475, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.203662, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 26308\n",
+ "Discriminator Loss: tf.Tensor(0.45704114, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.7462532, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 26309\n",
+ "Discriminator Loss: tf.Tensor(1.0583696, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.6162165, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 26310\n",
+ "Discriminator Loss: tf.Tensor(0.4115991, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.8613712, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 26311\n",
+ "Discriminator Loss: tf.Tensor(1.2062571, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.4212198, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 26312\n",
+ "Discriminator Loss: tf.Tensor(0.37825653, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.68402123, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 26313\n",
+ "Discriminator Loss: tf.Tensor(1.5225859, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.2756789, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 26314\n",
+ "Discriminator Loss: tf.Tensor(0.36266154, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.691792, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 26315\n",
+ "Discriminator Loss: tf.Tensor(0.97178507, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.6381164, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 26316\n",
+ "Discriminator Loss: tf.Tensor(0.7270651, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.40080225, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 26317\n",
+ "Discriminator Loss: tf.Tensor(1.1239923, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.5131754, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 26318\n",
+ "Discriminator Loss: tf.Tensor(0.7275058, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.3871123, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 26319\n",
+ "Discriminator Loss: tf.Tensor(0.5102707, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.3703121, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 26320\n",
+ "Discriminator Loss: tf.Tensor(0.6638461, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.68854284, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 26321\n",
+ "Discriminator Loss: tf.Tensor(0.5851151, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.2937326, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 26322\n",
+ "Discriminator Loss: tf.Tensor(0.60953057, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.80657864, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 26323\n",
+ "Discriminator Loss: tf.Tensor(1.07498, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.5247453, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 26324\n",
+ "Discriminator Loss: tf.Tensor(0.7374121, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.39700344, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 26325\n",
+ "Discriminator Loss: tf.Tensor(1.0723501, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.6531523, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 26326\n",
+ "Discriminator Loss: tf.Tensor(0.52330184, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.57225114, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 26327\n",
+ "Discriminator Loss: tf.Tensor(1.2765173, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.2577988, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 26328\n",
+ "Discriminator Loss: tf.Tensor(0.61642134, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.7226369, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 26329\n",
+ "Discriminator Loss: tf.Tensor(0.6688202, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.6008276, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 26330\n",
+ "Discriminator Loss: tf.Tensor(0.7444775, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.66003275, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 26331\n",
+ "Discriminator Loss: tf.Tensor(0.83499837, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.1375588, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 26332\n",
+ "Discriminator Loss: tf.Tensor(0.71946985, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.5997388, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 26333\n",
+ "Discriminator Loss: tf.Tensor(1.065058, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.6520677, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 26334\n",
+ "Discriminator Loss: tf.Tensor(1.0789932, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.09418037, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 26335\n",
+ "Discriminator Loss: tf.Tensor(0.64824915, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.2325156, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 26336\n",
+ "Discriminator Loss: tf.Tensor(0.4540722, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.7117625, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 26337\n",
+ "Discriminator Loss: tf.Tensor(0.8240092, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.6796904, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 26338\n",
+ "Discriminator Loss: tf.Tensor(0.95961374, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.265668, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 26339\n",
+ "Discriminator Loss: tf.Tensor(0.69944406, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.3696772, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 26340\n",
+ "Discriminator Loss: tf.Tensor(0.8410681, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.82654953, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 26341\n",
+ "Discriminator Loss: tf.Tensor(0.36381003, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.1776652, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 26342\n",
+ "Discriminator Loss: tf.Tensor(0.9800979, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.0783939, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 26343\n",
+ "Discriminator Loss: tf.Tensor(0.75286174, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.78999, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 26344\n",
+ "Discriminator Loss: tf.Tensor(1.366957, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.6437508, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 26345\n",
+ "Discriminator Loss: tf.Tensor(0.6468555, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.47749138, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 26346\n",
+ "Discriminator Loss: tf.Tensor(1.1675069, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.7485169, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 26347\n",
+ "Discriminator Loss: tf.Tensor(1.1737785, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.13697588, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 26348\n",
+ "Discriminator Loss: tf.Tensor(0.5478403, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.1205734, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 26349\n",
+ "Discriminator Loss: tf.Tensor(0.54051983, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.86577326, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 26350\n",
+ "Discriminator Loss: tf.Tensor(0.5828885, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.1907445, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 26351\n",
+ "Discriminator Loss: tf.Tensor(0.49594635, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.0051969, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 26352\n",
+ "Discriminator Loss: tf.Tensor(0.51144695, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.748413, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 26353\n",
+ "Discriminator Loss: tf.Tensor(0.79014766, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.3861424, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 26354\n",
+ "Discriminator Loss: tf.Tensor(1.0069983, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.0954875, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 26355\n",
+ "Discriminator Loss: tf.Tensor(0.83612406, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.52241, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 26356\n",
+ "Discriminator Loss: tf.Tensor(0.5801787, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.5705996, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 26357\n",
+ "Discriminator Loss: tf.Tensor(1.1001709, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.5902257, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 26358\n",
+ "Discriminator Loss: tf.Tensor(0.706271, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.3310369, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 26359\n",
+ "Discriminator Loss: tf.Tensor(0.66684115, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.395, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 26360\n",
+ "Discriminator Loss: tf.Tensor(0.7197117, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.91246706, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 26361\n",
+ "Discriminator Loss: tf.Tensor(0.3083837, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.3245691, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 26362\n",
+ "Discriminator Loss: tf.Tensor(0.64458317, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.1016736, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 26363\n",
+ "Discriminator Loss: tf.Tensor(1.4582217, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.3897051, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 26364\n",
+ "Discriminator Loss: tf.Tensor(0.5612916, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.0897336, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 26365\n",
+ "Discriminator Loss: tf.Tensor(0.4754826, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.64931536, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 26366\n",
+ "Discriminator Loss: tf.Tensor(0.7019907, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.8709679, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 26367\n",
+ "Discriminator Loss: tf.Tensor(0.6590954, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.61411995, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 26368\n",
+ "Discriminator Loss: tf.Tensor(0.7252126, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.2795551, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 26369\n",
+ "Discriminator Loss: tf.Tensor(0.39695024, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.0792602, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 26370\n",
+ "Discriminator Loss: tf.Tensor(0.39457875, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.0664568, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 26371\n",
+ "Discriminator Loss: tf.Tensor(0.551968, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.8456287, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 26372\n",
+ "Discriminator Loss: tf.Tensor(1.5289006, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.224067, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 26373\n",
+ "Discriminator Loss: tf.Tensor(1.5723544, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.06645442, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 26374\n",
+ "Discriminator Loss: tf.Tensor(1.0427989, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.1299106, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 26375\n",
+ "Discriminator Loss: tf.Tensor(1.1113255, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.12170452, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 26376\n",
+ "Discriminator Loss: tf.Tensor(0.86932904, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.4983305, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 26377\n",
+ "Discriminator Loss: tf.Tensor(1.2756058, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.15741278, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 26378\n",
+ "Discriminator Loss: tf.Tensor(1.0578238, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.9478671, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 26379\n",
+ "Discriminator Loss: tf.Tensor(0.9299534, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.38896036, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 26380\n",
+ "Discriminator Loss: tf.Tensor(0.7653758, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.5716709, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 26381\n",
+ "Discriminator Loss: tf.Tensor(0.8355189, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.4396678, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 26382\n",
+ "Discriminator Loss: tf.Tensor(0.81016374, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.1203372, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 26383\n",
+ "Discriminator Loss: tf.Tensor(0.7555255, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.51564866, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 26384\n",
+ "Discriminator Loss: tf.Tensor(1.3777251, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.6107254, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 26385\n",
+ "Discriminator Loss: tf.Tensor(0.90734035, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.25487417, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 26386\n",
+ "Discriminator Loss: tf.Tensor(0.88049763, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.2943984, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 26387\n",
+ "Discriminator Loss: tf.Tensor(0.56936616, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.7078379, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 26388\n",
+ "Discriminator Loss: tf.Tensor(0.41606754, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.2240402, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 26389\n",
+ "Discriminator Loss: tf.Tensor(0.73340183, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.9503003, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 26390\n",
+ "Discriminator Loss: tf.Tensor(0.8087783, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.86008817, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 26391\n",
+ "Discriminator Loss: tf.Tensor(1.0073855, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.3870273, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 26392\n",
+ "Discriminator Loss: tf.Tensor(0.6962356, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.6759265, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 26393\n",
+ "Discriminator Loss: tf.Tensor(0.8778535, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.1569406, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 26394\n",
+ "Discriminator Loss: tf.Tensor(0.79171014, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.5814457, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 26395\n",
+ "Discriminator Loss: tf.Tensor(0.88689196, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.33081776, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 26396\n",
+ "Discriminator Loss: tf.Tensor(0.9449328, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.8931544, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 26397\n",
+ "Discriminator Loss: tf.Tensor(0.45605797, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.5115541, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 26398\n",
+ "Discriminator Loss: tf.Tensor(0.7973916, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.36554232, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 26399\n",
+ "Discriminator Loss: tf.Tensor(1.0615711, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.9245847, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 26400\n",
+ "Discriminator Loss: tf.Tensor(0.70384187, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.37290147, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 26401\n",
+ "Discriminator Loss: tf.Tensor(1.3841021, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.3960905, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 26402\n",
+ "Discriminator Loss: tf.Tensor(0.5074947, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.76797676, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 26403\n",
+ "Discriminator Loss: tf.Tensor(0.60483325, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.6782413, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 26404\n",
+ "Discriminator Loss: tf.Tensor(0.47803012, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.6892646, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 26405\n",
+ "Discriminator Loss: tf.Tensor(0.8066217, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.8719746, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 26406\n",
+ "Discriminator Loss: tf.Tensor(0.428922, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.6476114, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 26407\n",
+ "Discriminator Loss: tf.Tensor(0.84374976, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.9511442, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 26408\n",
+ "Discriminator Loss: tf.Tensor(0.4448869, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.85463804, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 26409\n",
+ "Discriminator Loss: tf.Tensor(0.8498002, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.5195144, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 26410\n",
+ "Discriminator Loss: tf.Tensor(0.5732065, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.49660993, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 26411\n",
+ "Discriminator Loss: tf.Tensor(1.3523332, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.718235, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 26412\n",
+ "Discriminator Loss: tf.Tensor(1.0492802, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.1378813, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 26413\n",
+ "Discriminator Loss: tf.Tensor(0.91228247, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.3954087, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 26414\n",
+ "Discriminator Loss: tf.Tensor(0.5192491, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.74518013, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 26415\n",
+ "Discriminator Loss: tf.Tensor(1.0726749, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.7039555, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 26416\n",
+ "Discriminator Loss: tf.Tensor(0.7864243, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.269328, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 26417\n",
+ "Discriminator Loss: tf.Tensor(0.63690364, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.555932, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 26418\n",
+ "Discriminator Loss: tf.Tensor(1.0472252, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.2649076, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 26419\n",
+ "Discriminator Loss: tf.Tensor(0.58456594, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.7815206, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 26420\n",
+ "Discriminator Loss: tf.Tensor(0.79629135, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.1971722, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 26421\n",
+ "Discriminator Loss: tf.Tensor(0.875602, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.97892743, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 26422\n",
+ "Discriminator Loss: tf.Tensor(0.42757326, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.0306438, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 26423\n",
+ "Discriminator Loss: tf.Tensor(0.71851474, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.0493957, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 26424\n",
+ "Discriminator Loss: tf.Tensor(1.0210127, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.8414692, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 26425\n",
+ "Discriminator Loss: tf.Tensor(0.8954564, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.26270783, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 26426\n",
+ "Discriminator Loss: tf.Tensor(0.8143754, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.2999734, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 26427\n",
+ "Discriminator Loss: tf.Tensor(0.92775774, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.42518142, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 26428\n",
+ "Discriminator Loss: tf.Tensor(0.7617208, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.4997705, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 26429\n",
+ "Discriminator Loss: tf.Tensor(0.6952685, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.7701748, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 26430\n",
+ "Discriminator Loss: tf.Tensor(0.718428, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.9793646, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 26431\n",
+ "Discriminator Loss: tf.Tensor(0.61384034, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.8653374, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 26432\n",
+ "Discriminator Loss: tf.Tensor(0.4719246, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.1375436, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 26433\n",
+ "Discriminator Loss: tf.Tensor(0.82362354, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.4841675, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 26434\n",
+ "Discriminator Loss: tf.Tensor(1.0119562, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.16036093, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 26435\n",
+ "Discriminator Loss: tf.Tensor(0.48939115, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.3197142, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 26436\n",
+ "Discriminator Loss: tf.Tensor(0.311233, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.85908514, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 26437\n",
+ "Discriminator Loss: tf.Tensor(1.3280082, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.5110582, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 26438\n",
+ "Discriminator Loss: tf.Tensor(0.54659396, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.76332474, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 26439\n",
+ "Discriminator Loss: tf.Tensor(1.240768, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.4390845, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 26440\n",
+ "Discriminator Loss: tf.Tensor(1.0818897, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.030169895, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 26441\n",
+ "Discriminator Loss: tf.Tensor(1.1293687, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.578112, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 26442\n",
+ "Discriminator Loss: tf.Tensor(0.7626539, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.47147134, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 26443\n",
+ "Discriminator Loss: tf.Tensor(1.0313392, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.50420076, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 26444\n",
+ "Discriminator Loss: tf.Tensor(1.0009449, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.9524111, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 26445\n",
+ "Discriminator Loss: tf.Tensor(0.42940068, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.0692493, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 26446\n",
+ "Discriminator Loss: tf.Tensor(0.6679187, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.5710052, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 26447\n",
+ "Discriminator Loss: tf.Tensor(0.5928767, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.5868031, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 26448\n",
+ "Discriminator Loss: tf.Tensor(0.5392844, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.6065627, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 26449\n",
+ "Discriminator Loss: tf.Tensor(0.83881795, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.7328516, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 26450\n",
+ "Discriminator Loss: tf.Tensor(0.7509706, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.57058847, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 26451\n",
+ "Discriminator Loss: tf.Tensor(0.77056944, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.5426737, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 26452\n",
+ "Discriminator Loss: tf.Tensor(0.68504316, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.5438791, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 26453\n",
+ "Discriminator Loss: tf.Tensor(1.033157, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.419643, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 26454\n",
+ "Discriminator Loss: tf.Tensor(0.60077655, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.64483386, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 26455\n",
+ "Discriminator Loss: tf.Tensor(0.38018918, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.1389495, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 26456\n",
+ "Discriminator Loss: tf.Tensor(0.6839831, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.1985451, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 26457\n",
+ "Discriminator Loss: tf.Tensor(0.5724071, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.9020274, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 26458\n",
+ "Discriminator Loss: tf.Tensor(1.0697403, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.1252437, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 26459\n",
+ "Discriminator Loss: tf.Tensor(0.5627364, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.6666643, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 26460\n",
+ "Discriminator Loss: tf.Tensor(0.8862647, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.0903821, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 26461\n",
+ "Discriminator Loss: tf.Tensor(0.3927077, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.250797, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 26462\n",
+ "Discriminator Loss: tf.Tensor(0.47846133, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.0688462, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 26463\n",
+ "Discriminator Loss: tf.Tensor(0.65963674, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.5289494, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 26464\n",
+ "Discriminator Loss: tf.Tensor(1.0961969, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.7788113, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 26465\n",
+ "Discriminator Loss: tf.Tensor(0.7744499, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.5663608, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 26466\n",
+ "Discriminator Loss: tf.Tensor(0.5874698, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.0276679, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 26467\n",
+ "Discriminator Loss: tf.Tensor(0.89284015, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.0659825, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 26468\n",
+ "Discriminator Loss: tf.Tensor(0.9341476, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.1261343, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 26469\n",
+ "Discriminator Loss: tf.Tensor(0.4095009, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.79320866, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 26470\n",
+ "Discriminator Loss: tf.Tensor(1.7847557, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.1369069, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 26471\n",
+ "Discriminator Loss: tf.Tensor(0.97235364, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.24994135, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 26472\n",
+ "Discriminator Loss: tf.Tensor(0.80728364, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.89501095, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 26473\n",
+ "Discriminator Loss: tf.Tensor(1.2904415, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.3927064, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 26474\n",
+ "Discriminator Loss: tf.Tensor(0.96004283, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.880744, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 26475\n",
+ "Discriminator Loss: tf.Tensor(0.5068796, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.6325757, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 26476\n",
+ "Discriminator Loss: tf.Tensor(0.9366909, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.4700884, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 26477\n",
+ "Discriminator Loss: tf.Tensor(0.8238511, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.39409587, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 26478\n",
+ "Discriminator Loss: tf.Tensor(1.00979, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.521997, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 26479\n",
+ "Discriminator Loss: tf.Tensor(0.37868923, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.6623997, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 26480\n",
+ "Discriminator Loss: tf.Tensor(1.3085954, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.2966108, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 26481\n",
+ "Discriminator Loss: tf.Tensor(0.64315236, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.8208906, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 26482\n",
+ "Discriminator Loss: tf.Tensor(0.72035533, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.4835831, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 26483\n",
+ "Discriminator Loss: tf.Tensor(0.9448539, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.08456808, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 26484\n",
+ "Discriminator Loss: tf.Tensor(0.6851093, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.7704762, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 26485\n",
+ "Discriminator Loss: tf.Tensor(0.37726915, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.72975206, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 26486\n",
+ "Discriminator Loss: tf.Tensor(0.39023674, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.0389462, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 26487\n",
+ "Discriminator Loss: tf.Tensor(1.1312453, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.1283824, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 26488\n",
+ "Discriminator Loss: tf.Tensor(0.44409174, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.8189079, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 26489\n",
+ "Discriminator Loss: tf.Tensor(0.48142305, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.2587088, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 26490\n",
+ "Discriminator Loss: tf.Tensor(0.4512193, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.68338466, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 26491\n",
+ "Discriminator Loss: tf.Tensor(0.73209393, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.716523, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 26492\n",
+ "Discriminator Loss: tf.Tensor(0.47235897, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.73721904, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 26493\n",
+ "Discriminator Loss: tf.Tensor(1.0323786, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.1597663, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 26494\n",
+ "Discriminator Loss: tf.Tensor(0.3872851, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.97178704, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 26495\n",
+ "Discriminator Loss: tf.Tensor(0.7573718, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.078437, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 26496\n",
+ "Discriminator Loss: tf.Tensor(0.81822824, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.1086832, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 26497\n",
+ "Discriminator Loss: tf.Tensor(0.60003465, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.783521, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 26498\n",
+ "Discriminator Loss: tf.Tensor(0.589025, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.3713098, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 26499\n",
+ "Discriminator Loss: tf.Tensor(0.5358591, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.4637827, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 26500\n",
+ "Discriminator Loss: tf.Tensor(0.64484626, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.5332193, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 26501\n",
+ "Discriminator Loss: tf.Tensor(1.523417, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.329325, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 26502\n",
+ "Discriminator Loss: tf.Tensor(0.9868951, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.28695473, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 26503\n",
+ "Discriminator Loss: tf.Tensor(1.0346689, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.1968108, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 26504\n",
+ "Discriminator Loss: tf.Tensor(0.7358395, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.39424798, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 26505\n",
+ "Discriminator Loss: tf.Tensor(0.90890837, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.3714365, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 26506\n",
+ "Discriminator Loss: tf.Tensor(0.69371253, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.37110117, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 26507\n",
+ "Discriminator Loss: tf.Tensor(0.9156678, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.3268847, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 26508\n",
+ "Discriminator Loss: tf.Tensor(0.75118953, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.5091129, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 26509\n",
+ "Discriminator Loss: tf.Tensor(0.46066022, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.2147883, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 26510\n",
+ "Discriminator Loss: tf.Tensor(0.40994585, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.75762254, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 26511\n",
+ "Discriminator Loss: tf.Tensor(0.8258743, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.8727942, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 26512\n",
+ "Discriminator Loss: tf.Tensor(0.83826697, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.63462734, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 26513\n",
+ "Discriminator Loss: tf.Tensor(0.24803498, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.2343559, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 26514\n",
+ "Discriminator Loss: tf.Tensor(0.9145564, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.84962064, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 26515\n",
+ "Discriminator Loss: tf.Tensor(1.1868331, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.3161256, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 26516\n",
+ "Discriminator Loss: tf.Tensor(0.7349353, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.33510956, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 26517\n",
+ "Discriminator Loss: tf.Tensor(0.99773073, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.4458328, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 26518\n",
+ "Discriminator Loss: tf.Tensor(0.66087437, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.5317156, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 26519\n",
+ "Discriminator Loss: tf.Tensor(0.9038466, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.5900589, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 26520\n",
+ "Discriminator Loss: tf.Tensor(0.59023327, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.49692273, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 26521\n",
+ "Discriminator Loss: tf.Tensor(0.60975105, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.1365201, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 26522\n",
+ "Discriminator Loss: tf.Tensor(0.33775634, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.93327236, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 26523\n",
+ "Discriminator Loss: tf.Tensor(0.82517815, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.4214249, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 26524\n",
+ "Discriminator Loss: tf.Tensor(0.68459475, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.48370412, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 26525\n",
+ "Discriminator Loss: tf.Tensor(0.77944845, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.7026798, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 26526\n",
+ "Discriminator Loss: tf.Tensor(0.74219346, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.4657991, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 26527\n",
+ "Discriminator Loss: tf.Tensor(0.81823254, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.5872927, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 26528\n",
+ "Discriminator Loss: tf.Tensor(0.42728123, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.7882104, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 26529\n",
+ "Discriminator Loss: tf.Tensor(0.74243045, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.2394074, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 26530\n",
+ "Discriminator Loss: tf.Tensor(0.5671215, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.7127058, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 26531\n",
+ "Discriminator Loss: tf.Tensor(0.9031684, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.9732202, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 26532\n",
+ "Discriminator Loss: tf.Tensor(0.78360593, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.33038825, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 26533\n",
+ "Discriminator Loss: tf.Tensor(1.1826369, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.5543572, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 26534\n",
+ "Discriminator Loss: tf.Tensor(0.718478, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.32171267, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 26535\n",
+ "Discriminator Loss: tf.Tensor(0.9468519, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.193576, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 26536\n",
+ "Discriminator Loss: tf.Tensor(0.3357229, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.7411582, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 26537\n",
+ "Discriminator Loss: tf.Tensor(0.7701323, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.5983515, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 26538\n",
+ "Discriminator Loss: tf.Tensor(0.63900906, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.42106453, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 26539\n",
+ "Discriminator Loss: tf.Tensor(0.73057735, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.6026953, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 26540\n",
+ "Discriminator Loss: tf.Tensor(0.44710284, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.0574204, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 26541\n",
+ "Discriminator Loss: tf.Tensor(0.5474119, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.9892753, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 26542\n",
+ "Discriminator Loss: tf.Tensor(0.6750901, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.3640046, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 26543\n",
+ "Discriminator Loss: tf.Tensor(0.64142454, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.400187, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 26544\n",
+ "Discriminator Loss: tf.Tensor(1.0016263, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.8336083, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 26545\n",
+ "Discriminator Loss: tf.Tensor(0.46358, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.7479527, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 26546\n",
+ "Discriminator Loss: tf.Tensor(0.87111545, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.800645, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 26547\n",
+ "Discriminator Loss: tf.Tensor(0.52128875, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.6550507, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 26548\n",
+ "Discriminator Loss: tf.Tensor(1.0213213, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.0093046, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 26549\n",
+ "Discriminator Loss: tf.Tensor(0.59118813, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.2668892, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 26550\n",
+ "Discriminator Loss: tf.Tensor(0.56930923, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.7627242, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 26551\n",
+ "Discriminator Loss: tf.Tensor(1.3834016, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.3945782, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 26552\n",
+ "Discriminator Loss: tf.Tensor(0.32872716, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.80272865, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 26553\n",
+ "Discriminator Loss: tf.Tensor(0.83959603, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.0691935, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 26554\n",
+ "Discriminator Loss: tf.Tensor(0.742152, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.6933446, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 26555\n",
+ "Discriminator Loss: tf.Tensor(0.41186512, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.3491508, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 26556\n",
+ "Discriminator Loss: tf.Tensor(0.6376176, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.61939216, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 26557\n",
+ "Discriminator Loss: tf.Tensor(0.80913603, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.5075221, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 26558\n",
+ "Discriminator Loss: tf.Tensor(0.527434, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.1458, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 26559\n",
+ "Discriminator Loss: tf.Tensor(0.51369727, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.9206627, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 26560\n",
+ "Discriminator Loss: tf.Tensor(0.9359202, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.4450511, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 26561\n",
+ "Discriminator Loss: tf.Tensor(0.780639, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.4849292, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 26562\n",
+ "Discriminator Loss: tf.Tensor(0.83979046, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.3259841, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 26563\n",
+ "Discriminator Loss: tf.Tensor(0.38169372, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.9163377, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 26564\n",
+ "Discriminator Loss: tf.Tensor(1.1253431, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.793006, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 26565\n",
+ "Discriminator Loss: tf.Tensor(0.6093116, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.8437452, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 26566\n",
+ "Discriminator Loss: tf.Tensor(0.5130939, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.6215369, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 26567\n",
+ "Discriminator Loss: tf.Tensor(1.0551243, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.0180824, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 26568\n",
+ "Discriminator Loss: tf.Tensor(0.54551697, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.5631407, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 26569\n",
+ "Discriminator Loss: tf.Tensor(1.2906594, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.7678537, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 26570\n",
+ "Discriminator Loss: tf.Tensor(0.6880943, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.34599867, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 26571\n",
+ "Discriminator Loss: tf.Tensor(0.75116634, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.5391402, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 26572\n",
+ "Discriminator Loss: tf.Tensor(0.7130698, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.78824633, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 26573\n",
+ "Discriminator Loss: tf.Tensor(0.53235257, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.3545486, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 26574\n",
+ "Discriminator Loss: tf.Tensor(0.40808377, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.7525778, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 26575\n",
+ "Discriminator Loss: tf.Tensor(0.8516637, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.7064471, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 26576\n",
+ "Discriminator Loss: tf.Tensor(0.6542333, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.6265569, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 26577\n",
+ "Discriminator Loss: tf.Tensor(0.65582734, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.6102381, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 26578\n",
+ "Discriminator Loss: tf.Tensor(0.56677765, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.7009141, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 26579\n",
+ "Discriminator Loss: tf.Tensor(1.1471772, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.6418924, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 26580\n",
+ "Discriminator Loss: tf.Tensor(0.74367696, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.37663403, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 26581\n",
+ "Discriminator Loss: tf.Tensor(1.2957144, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.6913198, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 26582\n",
+ "Discriminator Loss: tf.Tensor(0.5871719, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.63891745, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 26583\n",
+ "Discriminator Loss: tf.Tensor(0.6474494, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.3333721, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 26584\n",
+ "Discriminator Loss: tf.Tensor(0.7302115, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.41374603, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 26585\n",
+ "Discriminator Loss: tf.Tensor(0.7774104, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.4163303, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 26586\n",
+ "Discriminator Loss: tf.Tensor(0.6882817, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.65412325, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 26587\n",
+ "Discriminator Loss: tf.Tensor(0.6609192, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.4240717, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 26588\n",
+ "Discriminator Loss: tf.Tensor(0.7709451, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.30575028, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 26589\n",
+ "Discriminator Loss: tf.Tensor(0.956736, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.567782, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 26590\n",
+ "Discriminator Loss: tf.Tensor(0.42841113, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.74772257, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 26591\n",
+ "Discriminator Loss: tf.Tensor(0.48998135, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.5451247, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 26592\n",
+ "Discriminator Loss: tf.Tensor(0.46991944, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.6885729, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 26593\n",
+ "Discriminator Loss: tf.Tensor(1.7474716, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.0216157, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 26594\n",
+ "Discriminator Loss: tf.Tensor(0.64068437, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.55636555, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 26595\n",
+ "Discriminator Loss: tf.Tensor(0.74071205, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.5702114, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 26596\n",
+ "Discriminator Loss: tf.Tensor(0.28172866, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.87512684, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 26597\n",
+ "Discriminator Loss: tf.Tensor(0.8840697, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.8062452, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 26598\n",
+ "Discriminator Loss: tf.Tensor(0.43268195, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.71094495, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 26599\n",
+ "Discriminator Loss: tf.Tensor(0.8356316, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.7482929, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 26600\n",
+ "Discriminator Loss: tf.Tensor(0.6689559, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.5662891, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 26601\n",
+ "Discriminator Loss: tf.Tensor(0.6855625, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.7337675, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 26602\n",
+ "Discriminator Loss: tf.Tensor(0.44864357, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.79242676, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 26603\n",
+ "Discriminator Loss: tf.Tensor(0.83727336, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.7256193, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 26604\n",
+ "Discriminator Loss: tf.Tensor(0.95888716, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.2116227, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 26605\n",
+ "Discriminator Loss: tf.Tensor(1.0576427, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.7236277, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 26606\n",
+ "Discriminator Loss: tf.Tensor(0.5694674, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.5405674, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 26607\n",
+ "Discriminator Loss: tf.Tensor(0.68406963, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.2212518, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 26608\n",
+ "Discriminator Loss: tf.Tensor(0.853691, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.3143495, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 26609\n",
+ "Discriminator Loss: tf.Tensor(0.43682212, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.4084173, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 26610\n",
+ "Discriminator Loss: tf.Tensor(0.36986443, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.8771003, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 26611\n",
+ "Discriminator Loss: tf.Tensor(0.82218635, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.1168165, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 26612\n",
+ "Discriminator Loss: tf.Tensor(1.0192246, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.17549448, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 26613\n",
+ "Discriminator Loss: tf.Tensor(1.1054909, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.5873903, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 26614\n",
+ "Discriminator Loss: tf.Tensor(0.6247277, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.6502686, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 26615\n",
+ "Discriminator Loss: tf.Tensor(0.8165406, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.631756, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 26616\n",
+ "Discriminator Loss: tf.Tensor(0.5077793, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.7345891, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 26617\n",
+ "Discriminator Loss: tf.Tensor(1.3346143, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.8666493, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 26618\n",
+ "Discriminator Loss: tf.Tensor(0.59041244, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.5455602, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 26619\n",
+ "Discriminator Loss: tf.Tensor(0.87887657, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.93601084, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 26620\n",
+ "Discriminator Loss: tf.Tensor(1.0216776, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.56538355, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 26621\n",
+ "Discriminator Loss: tf.Tensor(0.7120675, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.5353327, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 26622\n",
+ "Discriminator Loss: tf.Tensor(0.6202824, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.67348725, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 26623\n",
+ "Discriminator Loss: tf.Tensor(0.64806724, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.5027552, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 26624\n",
+ "Discriminator Loss: tf.Tensor(0.5332116, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.49721375, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 26625\n",
+ "Discriminator Loss: tf.Tensor(1.1734799, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.9061846, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 26626\n",
+ "Discriminator Loss: tf.Tensor(0.6588441, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.5694721, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 26627\n",
+ "Discriminator Loss: tf.Tensor(1.1559056, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.6491338, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 26628\n",
+ "Discriminator Loss: tf.Tensor(0.4424761, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.61612123, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 26629\n",
+ "Discriminator Loss: tf.Tensor(0.80150044, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.4252357, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 26630\n",
+ "Discriminator Loss: tf.Tensor(0.54594314, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.64851475, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 26631\n",
+ "Discriminator Loss: tf.Tensor(0.71466064, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.7332524, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 26632\n",
+ "Discriminator Loss: tf.Tensor(0.6214925, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.5348723, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 26633\n",
+ "Discriminator Loss: tf.Tensor(0.8279865, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.1949216, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 26634\n",
+ "Discriminator Loss: tf.Tensor(0.57577205, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.268192, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 26635\n",
+ "Discriminator Loss: tf.Tensor(0.5766287, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.55319554, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 26636\n",
+ "Discriminator Loss: tf.Tensor(1.3999126, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.8127236, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 26637\n",
+ "Discriminator Loss: tf.Tensor(0.5435748, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.588803, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 26638\n",
+ "Discriminator Loss: tf.Tensor(0.78640485, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.4040747, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 26639\n",
+ "Discriminator Loss: tf.Tensor(0.4572267, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.94770366, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 26640\n",
+ "Discriminator Loss: tf.Tensor(0.31809083, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.0201136, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 26641\n",
+ "Discriminator Loss: tf.Tensor(0.8677578, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.5749665, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 26642\n",
+ "Discriminator Loss: tf.Tensor(0.6522469, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.51058346, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 26643\n",
+ "Discriminator Loss: tf.Tensor(0.56891453, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.6384147, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 26644\n",
+ "Discriminator Loss: tf.Tensor(0.5809106, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.69403195, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 26645\n",
+ "Discriminator Loss: tf.Tensor(0.7631333, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.7068838, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 26646\n",
+ "Discriminator Loss: tf.Tensor(0.97426844, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.2538732, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 26647\n",
+ "Discriminator Loss: tf.Tensor(1.0574527, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.5955583, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 26648\n",
+ "Discriminator Loss: tf.Tensor(0.72287947, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.497928, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 26649\n",
+ "Discriminator Loss: tf.Tensor(1.1797165, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.8905808, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 26650\n",
+ "Discriminator Loss: tf.Tensor(0.7617459, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.40643242, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 26651\n",
+ "Discriminator Loss: tf.Tensor(0.5157632, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.4442655, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 26652\n",
+ "Discriminator Loss: tf.Tensor(0.47425145, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.8408675, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 26653\n",
+ "Discriminator Loss: tf.Tensor(0.502789, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.5382706, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 26654\n",
+ "Discriminator Loss: tf.Tensor(0.4802853, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.0035253, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 26655\n",
+ "Discriminator Loss: tf.Tensor(0.90654224, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.2761713, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 26656\n",
+ "Discriminator Loss: tf.Tensor(0.43660742, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.67097473, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 26657\n",
+ "Discriminator Loss: tf.Tensor(1.186053, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.8038899, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 26658\n",
+ "Discriminator Loss: tf.Tensor(0.63137895, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.49746892, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 26659\n",
+ "Discriminator Loss: tf.Tensor(1.0351781, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.627017, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 26660\n",
+ "Discriminator Loss: tf.Tensor(1.0722173, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.3017994, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 26661\n",
+ "Discriminator Loss: tf.Tensor(1.0043344, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.1722999, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 26662\n",
+ "Discriminator Loss: tf.Tensor(0.6744264, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.4118371, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 26663\n",
+ "Discriminator Loss: tf.Tensor(0.735394, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.2731357, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 26664\n",
+ "Discriminator Loss: tf.Tensor(0.23205563, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.9746294, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 26665\n",
+ "Discriminator Loss: tf.Tensor(0.5946921, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.6574078, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 26666\n",
+ "Discriminator Loss: tf.Tensor(0.66542464, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.6792051, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 26667\n",
+ "Discriminator Loss: tf.Tensor(0.6515536, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.3260857, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 26668\n",
+ "Discriminator Loss: tf.Tensor(0.63090336, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.5649896, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 26669\n",
+ "Discriminator Loss: tf.Tensor(1.1947305, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.1417096, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 26670\n",
+ "Discriminator Loss: tf.Tensor(0.93775237, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.31551626, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 26671\n",
+ "Discriminator Loss: tf.Tensor(0.846219, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.4627304, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 26672\n",
+ "Discriminator Loss: tf.Tensor(0.4327232, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.7195495, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 26673\n",
+ "Discriminator Loss: tf.Tensor(0.6955079, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.3596805, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 26674\n",
+ "Discriminator Loss: tf.Tensor(0.79501337, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.6180406, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 26675\n",
+ "Discriminator Loss: tf.Tensor(0.5191383, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.5357295, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 26676\n",
+ "Discriminator Loss: tf.Tensor(0.77870786, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.4653033, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 26677\n",
+ "Discriminator Loss: tf.Tensor(0.46671557, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.2688698, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 26678\n",
+ "Discriminator Loss: tf.Tensor(0.61736244, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.8245908, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 26679\n",
+ "Discriminator Loss: tf.Tensor(0.7035583, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.92519456, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 26680\n",
+ "Discriminator Loss: tf.Tensor(1.1984714, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.220539, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 26681\n",
+ "Discriminator Loss: tf.Tensor(0.8522672, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.3917892, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 26682\n",
+ "Discriminator Loss: tf.Tensor(1.3112934, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.9671732, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 26683\n",
+ "Discriminator Loss: tf.Tensor(0.74425685, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.40892896, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 26684\n",
+ "Discriminator Loss: tf.Tensor(0.8917154, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.7196064, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 26685\n",
+ "Discriminator Loss: tf.Tensor(0.8892046, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.20681657, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 26686\n",
+ "Discriminator Loss: tf.Tensor(1.3144312, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.1417382, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 26687\n",
+ "Discriminator Loss: tf.Tensor(0.61725223, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.6776932, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 26688\n",
+ "Discriminator Loss: tf.Tensor(0.49155045, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.2909491, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 26689\n",
+ "Discriminator Loss: tf.Tensor(0.5382228, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.9752355, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 26690\n",
+ "Discriminator Loss: tf.Tensor(0.23464094, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.3565412, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 26691\n",
+ "Discriminator Loss: tf.Tensor(0.7716093, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.9814488, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 26692\n",
+ "Discriminator Loss: tf.Tensor(0.5088565, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.2222611, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 26693\n",
+ "Discriminator Loss: tf.Tensor(1.0129691, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.7020065, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 26694\n",
+ "Discriminator Loss: tf.Tensor(0.5338926, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.6529332, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 26695\n",
+ "Discriminator Loss: tf.Tensor(0.49476522, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.9652797, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 26696\n",
+ "Discriminator Loss: tf.Tensor(0.47517166, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.96627235, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 26697\n",
+ "Discriminator Loss: tf.Tensor(0.7178664, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.265807, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 26698\n",
+ "Discriminator Loss: tf.Tensor(0.6893265, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.9977846, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 26699\n",
+ "Discriminator Loss: tf.Tensor(0.9040928, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.7861957, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 26700\n",
+ "Discriminator Loss: tf.Tensor(1.018697, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.77680564, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 26701\n",
+ "Discriminator Loss: tf.Tensor(0.9993415, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.3326406, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 26702\n",
+ "Discriminator Loss: tf.Tensor(0.64147544, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.91815525, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 26703\n",
+ "Discriminator Loss: tf.Tensor(0.494738, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.0130131, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 26704\n",
+ "Discriminator Loss: tf.Tensor(0.17994156, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.2704132, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 26705\n",
+ "Discriminator Loss: tf.Tensor(0.7070358, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.098913, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 26706\n",
+ "Discriminator Loss: tf.Tensor(0.6828125, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.62365365, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 26707\n",
+ "Discriminator Loss: tf.Tensor(0.8658174, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.8432204, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 26708\n",
+ "Discriminator Loss: tf.Tensor(0.69754493, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.49969077, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 26709\n",
+ "Discriminator Loss: tf.Tensor(1.4108906, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.9342976, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 26710\n",
+ "Discriminator Loss: tf.Tensor(0.92850786, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.24567343, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 26711\n",
+ "Discriminator Loss: tf.Tensor(0.78840554, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.3074687, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 26712\n",
+ "Discriminator Loss: tf.Tensor(0.88481706, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.20491111, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 26713\n",
+ "Discriminator Loss: tf.Tensor(0.8731384, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.4264425, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 26714\n",
+ "Discriminator Loss: tf.Tensor(0.7613452, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.42213032, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 26715\n",
+ "Discriminator Loss: tf.Tensor(0.79377824, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.2973381, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 26716\n",
+ "Discriminator Loss: tf.Tensor(1.1471162, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.07464573, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 26717\n",
+ "Discriminator Loss: tf.Tensor(0.3493904, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.1783512, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 26718\n",
+ "Discriminator Loss: tf.Tensor(0.50093347, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.2093728, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 26719\n",
+ "Discriminator Loss: tf.Tensor(0.50026006, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.0356656, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 26720\n",
+ "Discriminator Loss: tf.Tensor(0.44287032, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.0414195, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 26721\n",
+ "Discriminator Loss: tf.Tensor(0.6083444, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.3219932, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 26722\n",
+ "Discriminator Loss: tf.Tensor(1.045498, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.32714832, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 26723\n",
+ "Discriminator Loss: tf.Tensor(1.0441363, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.6143643, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 26724\n",
+ "Discriminator Loss: tf.Tensor(0.5434713, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.79803276, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 26725\n",
+ "Discriminator Loss: tf.Tensor(0.81786495, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.78272134, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 26726\n",
+ "Discriminator Loss: tf.Tensor(0.818384, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.2808007, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 26727\n",
+ "Discriminator Loss: tf.Tensor(0.48410672, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.9706958, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 26728\n",
+ "Discriminator Loss: tf.Tensor(0.8086506, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.9860919, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 26729\n",
+ "Discriminator Loss: tf.Tensor(0.44383997, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.3974596, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 26730\n",
+ "Discriminator Loss: tf.Tensor(0.480017, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.2003938, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 26731\n",
+ "Discriminator Loss: tf.Tensor(0.3230816, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.126414, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 26732\n",
+ "Discriminator Loss: tf.Tensor(0.42780346, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.4240252, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 26733\n",
+ "Discriminator Loss: tf.Tensor(0.80760926, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.35280427, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 26734\n",
+ "Discriminator Loss: tf.Tensor(1.1700563, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.9419308, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 26735\n",
+ "Discriminator Loss: tf.Tensor(0.7319163, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.43931174, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 26736\n",
+ "Discriminator Loss: tf.Tensor(0.81810254, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.4013218, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 26737\n",
+ "Discriminator Loss: tf.Tensor(0.43205613, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.98026204, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 26738\n",
+ "Discriminator Loss: tf.Tensor(0.49230865, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.8028256, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 26739\n",
+ "Discriminator Loss: tf.Tensor(1.8261185, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.3660424, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 26740\n",
+ "Discriminator Loss: tf.Tensor(0.65205145, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.52378774, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 26741\n",
+ "Discriminator Loss: tf.Tensor(1.1065688, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.2905558, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 26742\n",
+ "Discriminator Loss: tf.Tensor(0.7727124, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.2665774, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 26743\n",
+ "Discriminator Loss: tf.Tensor(1.1071807, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.620237, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 26744\n",
+ "Discriminator Loss: tf.Tensor(0.6201937, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.589943, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 26745\n",
+ "Discriminator Loss: tf.Tensor(0.97085655, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.3947105, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 26746\n",
+ "Discriminator Loss: tf.Tensor(0.6772617, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.60540104, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 26747\n",
+ "Discriminator Loss: tf.Tensor(0.47979504, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.1596152, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 26748\n",
+ "Discriminator Loss: tf.Tensor(0.5152235, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.631514, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 26749\n",
+ "Discriminator Loss: tf.Tensor(0.9076804, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.0364504, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 26750\n",
+ "Discriminator Loss: tf.Tensor(0.29961962, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.9330074, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 26751\n",
+ "Discriminator Loss: tf.Tensor(0.5337854, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.1364388, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 26752\n",
+ "Discriminator Loss: tf.Tensor(0.50693893, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.6928127, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 26753\n",
+ "Discriminator Loss: tf.Tensor(1.5030078, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.9336233, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 26754\n",
+ "Discriminator Loss: tf.Tensor(0.67895615, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.51259416, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 26755\n",
+ "Discriminator Loss: tf.Tensor(1.1061187, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.91745144, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 26756\n",
+ "Discriminator Loss: tf.Tensor(0.49832094, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.9830503, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 26757\n",
+ "Discriminator Loss: tf.Tensor(0.4640322, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.0477824, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 26758\n",
+ "Discriminator Loss: tf.Tensor(0.51772326, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.0325347, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 26759\n",
+ "Discriminator Loss: tf.Tensor(0.40923142, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.714284, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 26760\n",
+ "Discriminator Loss: tf.Tensor(0.9288913, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.54425514, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 26761\n",
+ "Discriminator Loss: tf.Tensor(0.920265, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.3807964, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 26762\n",
+ "Discriminator Loss: tf.Tensor(0.68855524, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.0661935, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 26763\n",
+ "Discriminator Loss: tf.Tensor(0.70945203, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.5917656, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 26764\n",
+ "Discriminator Loss: tf.Tensor(1.6142168, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.516953, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 26765\n",
+ "Discriminator Loss: tf.Tensor(0.65554583, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.47772196, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 26766\n",
+ "Discriminator Loss: tf.Tensor(1.3444327, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.1715482, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 26767\n",
+ "Discriminator Loss: tf.Tensor(0.67902684, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.6251705, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 26768\n",
+ "Discriminator Loss: tf.Tensor(0.3544972, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.1359643, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 26769\n",
+ "Discriminator Loss: tf.Tensor(0.49249056, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.4751511, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 26770\n",
+ "Discriminator Loss: tf.Tensor(0.6163267, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.92077154, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 26771\n",
+ "Discriminator Loss: tf.Tensor(0.8460978, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.65092695, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 26772\n",
+ "Discriminator Loss: tf.Tensor(0.83816785, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.5842901, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 26773\n",
+ "Discriminator Loss: tf.Tensor(0.98791033, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.20098959, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 26774\n",
+ "Discriminator Loss: tf.Tensor(0.9112613, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.2183458, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 26775\n",
+ "Discriminator Loss: tf.Tensor(0.9045495, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.6589012, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 26776\n",
+ "Discriminator Loss: tf.Tensor(0.48822165, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.125556, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 26777\n",
+ "Discriminator Loss: tf.Tensor(0.75048006, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.95084745, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 26778\n",
+ "Discriminator Loss: tf.Tensor(0.5964111, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.3877138, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 26779\n",
+ "Discriminator Loss: tf.Tensor(0.46479398, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.9799654, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 26780\n",
+ "Discriminator Loss: tf.Tensor(0.4755227, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.3033679, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 26781\n",
+ "Discriminator Loss: tf.Tensor(0.6026703, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.0163467, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 26782\n",
+ "Discriminator Loss: tf.Tensor(1.2865038, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.5104257, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 26783\n",
+ "Discriminator Loss: tf.Tensor(1.073961, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.089682244, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 26784\n",
+ "Discriminator Loss: tf.Tensor(0.684807, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.197903, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 26785\n",
+ "Discriminator Loss: tf.Tensor(0.7305198, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.3768139, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 26786\n",
+ "Discriminator Loss: tf.Tensor(1.0547616, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.6485366, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 26787\n",
+ "Discriminator Loss: tf.Tensor(0.52783734, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.6418821, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 26788\n",
+ "Discriminator Loss: tf.Tensor(1.3007427, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.6829792, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 26789\n",
+ "Discriminator Loss: tf.Tensor(0.73813695, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.35730207, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 26790\n",
+ "Discriminator Loss: tf.Tensor(1.0863373, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.5333549, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 26791\n",
+ "Discriminator Loss: tf.Tensor(0.75831896, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.6649732, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 26792\n",
+ "Discriminator Loss: tf.Tensor(0.64336234, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.0259968, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 26793\n",
+ "Discriminator Loss: tf.Tensor(0.5554264, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.809099, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 26794\n",
+ "Discriminator Loss: tf.Tensor(0.74272895, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.496666, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 26795\n",
+ "Discriminator Loss: tf.Tensor(0.81775063, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.42083764, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 26796\n",
+ "Discriminator Loss: tf.Tensor(0.48529822, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.581343, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 26797\n",
+ "Discriminator Loss: tf.Tensor(0.672431, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.82041067, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 26798\n",
+ "Discriminator Loss: tf.Tensor(0.5111201, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.5356017, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 26799\n",
+ "Discriminator Loss: tf.Tensor(0.69602096, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.3569306, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 26800\n",
+ "Discriminator Loss: tf.Tensor(0.94223297, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.143095, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 26801\n",
+ "Discriminator Loss: tf.Tensor(0.77985233, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.69540435, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 26802\n",
+ "Discriminator Loss: tf.Tensor(0.39091244, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.3161793, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 26803\n",
+ "Discriminator Loss: tf.Tensor(0.6571334, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.46757352, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 26804\n",
+ "Discriminator Loss: tf.Tensor(1.2252408, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.6697403, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 26805\n",
+ "Discriminator Loss: tf.Tensor(0.67232263, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.46711186, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 26806\n",
+ "Discriminator Loss: tf.Tensor(0.83061266, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.5111741, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 26807\n",
+ "Discriminator Loss: tf.Tensor(0.47377765, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.61055696, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 26808\n",
+ "Discriminator Loss: tf.Tensor(0.9319187, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.9111158, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 26809\n",
+ "Discriminator Loss: tf.Tensor(0.48804164, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.8349232, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 26810\n",
+ "Discriminator Loss: tf.Tensor(0.8926986, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.3825363, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 26811\n",
+ "Discriminator Loss: tf.Tensor(0.46796054, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.8930389, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 26812\n",
+ "Discriminator Loss: tf.Tensor(0.5598464, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.4827334, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 26813\n",
+ "Discriminator Loss: tf.Tensor(0.487837, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.60897976, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 26814\n",
+ "Discriminator Loss: tf.Tensor(1.0047185, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.182635, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 26815\n",
+ "Discriminator Loss: tf.Tensor(0.63615566, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.5696705, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 26816\n",
+ "Discriminator Loss: tf.Tensor(0.7994995, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.0141366, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 26817\n",
+ "Discriminator Loss: tf.Tensor(0.6712241, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.53269506, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 26818\n",
+ "Discriminator Loss: tf.Tensor(1.0644708, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.8042032, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 26819\n",
+ "Discriminator Loss: tf.Tensor(0.779916, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.34115526, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 26820\n",
+ "Discriminator Loss: tf.Tensor(0.8800644, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.8927885, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 26821\n",
+ "Discriminator Loss: tf.Tensor(0.99062437, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.3963993, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 26822\n",
+ "Discriminator Loss: tf.Tensor(0.43739566, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.3671055, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 26823\n",
+ "Discriminator Loss: tf.Tensor(0.35513496, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.8908121, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 26824\n",
+ "Discriminator Loss: tf.Tensor(0.88213867, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.7141742, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 26825\n",
+ "Discriminator Loss: tf.Tensor(0.47911882, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.79852885, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 26826\n",
+ "Discriminator Loss: tf.Tensor(0.74463916, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.4932985, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 26827\n",
+ "Discriminator Loss: tf.Tensor(0.51812, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.7970434, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 26828\n",
+ "Discriminator Loss: tf.Tensor(1.0383673, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.3994907, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 26829\n",
+ "Discriminator Loss: tf.Tensor(0.0901944, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.2157054, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 26830\n",
+ "Discriminator Loss: tf.Tensor(0.58124214, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.1565809, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 26831\n",
+ "Discriminator Loss: tf.Tensor(1.1499449, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.8966848, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 26832\n",
+ "Discriminator Loss: tf.Tensor(0.724663, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.6336846, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 26833\n",
+ "Discriminator Loss: tf.Tensor(1.8434, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.2122893, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 26834\n",
+ "Discriminator Loss: tf.Tensor(1.226195, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.3130592, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 26835\n",
+ "Discriminator Loss: tf.Tensor(0.87892616, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.737292, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 26836\n",
+ "Discriminator Loss: tf.Tensor(1.3103703, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.76315695, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 26837\n",
+ "Discriminator Loss: tf.Tensor(0.7963212, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.758272, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 26838\n",
+ "Discriminator Loss: tf.Tensor(1.0476054, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.2880114, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 26839\n",
+ "Discriminator Loss: tf.Tensor(1.0301585, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.1641943, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 26840\n",
+ "Discriminator Loss: tf.Tensor(1.0744665, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.81745106, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 26841\n",
+ "Discriminator Loss: tf.Tensor(0.77171713, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.76936716, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 26842\n",
+ "Discriminator Loss: tf.Tensor(0.4592699, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.1142011, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 26843\n",
+ "Discriminator Loss: tf.Tensor(0.62292504, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.6404444, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 26844\n",
+ "Discriminator Loss: tf.Tensor(0.6656107, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.7205808, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 26845\n",
+ "Discriminator Loss: tf.Tensor(1.0205579, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.9137686, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 26846\n",
+ "Discriminator Loss: tf.Tensor(0.8182487, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.45498523, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 26847\n",
+ "Discriminator Loss: tf.Tensor(0.75141037, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.4811393, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 26848\n",
+ "Discriminator Loss: tf.Tensor(0.6499587, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.49340007, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 26849\n",
+ "Discriminator Loss: tf.Tensor(1.0153897, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.530584, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 26850\n",
+ "Discriminator Loss: tf.Tensor(1.0326686, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.12504226, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 26851\n",
+ "Discriminator Loss: tf.Tensor(0.6695645, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.2538059, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 26852\n",
+ "Discriminator Loss: tf.Tensor(0.53643215, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.6103702, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 26853\n",
+ "Discriminator Loss: tf.Tensor(1.2940874, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.8125916, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 26854\n",
+ "Discriminator Loss: tf.Tensor(0.52471644, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.60725147, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 26855\n",
+ "Discriminator Loss: tf.Tensor(1.2006705, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.192206, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 26856\n",
+ "Discriminator Loss: tf.Tensor(0.7764023, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.55917686, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 26857\n",
+ "Discriminator Loss: tf.Tensor(1.112603, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.5601169, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 26858\n",
+ "Discriminator Loss: tf.Tensor(0.59256923, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.4630779, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 26859\n",
+ "Discriminator Loss: tf.Tensor(0.77229154, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.3128282, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 26860\n",
+ "Discriminator Loss: tf.Tensor(0.32025942, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.75094247, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 26861\n",
+ "Discriminator Loss: tf.Tensor(0.616928, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.0935643, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 26862\n",
+ "Discriminator Loss: tf.Tensor(0.47288942, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.0023283, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 26863\n",
+ "Discriminator Loss: tf.Tensor(1.1036079, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.82766294, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 26864\n",
+ "Discriminator Loss: tf.Tensor(0.680926, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.58118105, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 26865\n",
+ "Discriminator Loss: tf.Tensor(0.9669844, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.7782092, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 26866\n",
+ "Discriminator Loss: tf.Tensor(0.6059003, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.9334534, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 26867\n",
+ "Discriminator Loss: tf.Tensor(0.57071495, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.77940124, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 26868\n",
+ "Discriminator Loss: tf.Tensor(0.3825637, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.4173514, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 26869\n",
+ "Discriminator Loss: tf.Tensor(0.94874966, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.3290805, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 26870\n",
+ "Discriminator Loss: tf.Tensor(0.71241874, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.69257325, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 26871\n",
+ "Discriminator Loss: tf.Tensor(0.95191646, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.4751824, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 26872\n",
+ "Discriminator Loss: tf.Tensor(0.5139945, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.8913087, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 26873\n",
+ "Discriminator Loss: tf.Tensor(0.6866076, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.96154624, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 26874\n",
+ "Discriminator Loss: tf.Tensor(0.8008045, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.1224023, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 26875\n",
+ "Discriminator Loss: tf.Tensor(0.83684224, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.48293623, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 26876\n",
+ "Discriminator Loss: tf.Tensor(1.4020859, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.25337, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 26877\n",
+ "Discriminator Loss: tf.Tensor(0.96300817, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.44795337, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 26878\n",
+ "Discriminator Loss: tf.Tensor(0.6276536, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.3199188, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 26879\n",
+ "Discriminator Loss: tf.Tensor(1.004073, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.15321578, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 26880\n",
+ "Discriminator Loss: tf.Tensor(1.3415709, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.9087203, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 26881\n",
+ "Discriminator Loss: tf.Tensor(0.60162675, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.8067076, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 26882\n",
+ "Discriminator Loss: tf.Tensor(0.48664474, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.1152184, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 26883\n",
+ "Discriminator Loss: tf.Tensor(0.7781173, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.6454439, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 26884\n",
+ "Discriminator Loss: tf.Tensor(0.5980882, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.629069, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 26885\n",
+ "Discriminator Loss: tf.Tensor(1.2503741, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.9655746, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 26886\n",
+ "Discriminator Loss: tf.Tensor(0.6272326, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.5741928, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 26887\n",
+ "Discriminator Loss: tf.Tensor(0.82331353, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.9011405, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 26888\n",
+ "Discriminator Loss: tf.Tensor(1.1101931, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.1908283, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 26889\n",
+ "Discriminator Loss: tf.Tensor(0.37623256, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.87936574, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 26890\n",
+ "Discriminator Loss: tf.Tensor(0.54593974, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.2012244, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 26891\n",
+ "Discriminator Loss: tf.Tensor(0.87432086, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.20493233, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 26892\n",
+ "Discriminator Loss: tf.Tensor(0.7242723, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.4868685, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 26893\n",
+ "Discriminator Loss: tf.Tensor(0.175823, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.3183842, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 26894\n",
+ "Discriminator Loss: tf.Tensor(0.36052755, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.3045831, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 26895\n",
+ "Discriminator Loss: tf.Tensor(0.88963115, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.93052125, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 26896\n",
+ "Discriminator Loss: tf.Tensor(0.9570244, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.1671079, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 26897\n",
+ "Discriminator Loss: tf.Tensor(0.861517, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.3650113, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 26898\n",
+ "Discriminator Loss: tf.Tensor(1.2976667, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.2278441, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 26899\n",
+ "Discriminator Loss: tf.Tensor(0.9596495, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.26628092, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 26900\n",
+ "Discriminator Loss: tf.Tensor(1.4581761, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.8370262, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 26901\n",
+ "Discriminator Loss: tf.Tensor(0.5958353, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.582625, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 26902\n",
+ "Discriminator Loss: tf.Tensor(0.80589086, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.3364768, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 26903\n",
+ "Discriminator Loss: tf.Tensor(0.60007364, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.63943887, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 26904\n",
+ "Discriminator Loss: tf.Tensor(0.892766, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.3972317, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 26905\n",
+ "Discriminator Loss: tf.Tensor(0.44249386, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.0696483, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 26906\n",
+ "Discriminator Loss: tf.Tensor(0.44669694, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.9191013, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 26907\n",
+ "Discriminator Loss: tf.Tensor(1.0037916, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.1674553, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 26908\n",
+ "Discriminator Loss: tf.Tensor(0.41057616, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.6520672, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 26909\n",
+ "Discriminator Loss: tf.Tensor(1.4802077, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.4383842, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 26910\n",
+ "Discriminator Loss: tf.Tensor(0.74599916, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.36728612, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 26911\n",
+ "Discriminator Loss: tf.Tensor(1.0951234, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.95992583, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 26912\n",
+ "Discriminator Loss: tf.Tensor(0.4807044, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.96950704, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 26913\n",
+ "Discriminator Loss: tf.Tensor(0.3482756, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.9848347, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 26914\n",
+ "Discriminator Loss: tf.Tensor(0.9536742, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.8761268, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 26915\n",
+ "Discriminator Loss: tf.Tensor(0.93292356, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.22046381, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 26916\n",
+ "Discriminator Loss: tf.Tensor(1.0125825, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.3332145, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 26917\n",
+ "Discriminator Loss: tf.Tensor(0.89658284, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.20007102, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 26918\n",
+ "Discriminator Loss: tf.Tensor(0.580301, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.1917547, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 26919\n",
+ "Discriminator Loss: tf.Tensor(0.6875781, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.5374706, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 26920\n",
+ "Discriminator Loss: tf.Tensor(0.706467, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.86303, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 26921\n",
+ "Discriminator Loss: tf.Tensor(0.56073153, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.8703007, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 26922\n",
+ "Discriminator Loss: tf.Tensor(0.6321601, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.6449355, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 26923\n",
+ "Discriminator Loss: tf.Tensor(0.57617176, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.721073, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 26924\n",
+ "Discriminator Loss: tf.Tensor(0.5885537, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.3579913, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 26925\n",
+ "Discriminator Loss: tf.Tensor(0.80545866, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.4668529, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 26926\n",
+ "Discriminator Loss: tf.Tensor(0.7879259, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.3559662, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 26927\n",
+ "Discriminator Loss: tf.Tensor(0.4530383, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.6992696, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 26928\n",
+ "Discriminator Loss: tf.Tensor(0.9243432, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.960858, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 26929\n",
+ "Discriminator Loss: tf.Tensor(0.6145492, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.43730775, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 26930\n",
+ "Discriminator Loss: tf.Tensor(1.4922477, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.4918051, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 26931\n",
+ "Discriminator Loss: tf.Tensor(0.6386372, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.4728904, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 26932\n",
+ "Discriminator Loss: tf.Tensor(1.3081344, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.7057937, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 26933\n",
+ "Discriminator Loss: tf.Tensor(1.2319739, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.018456593, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 26934\n",
+ "Discriminator Loss: tf.Tensor(0.99761, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.0444298, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 26935\n",
+ "Discriminator Loss: tf.Tensor(0.7279371, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.3242232, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 26936\n",
+ "Discriminator Loss: tf.Tensor(0.528903, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.4418808, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 26937\n",
+ "Discriminator Loss: tf.Tensor(0.50190973, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.7698168, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 26938\n",
+ "Discriminator Loss: tf.Tensor(0.5235517, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.3540297, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 26939\n",
+ "Discriminator Loss: tf.Tensor(0.62795794, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.0090523, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 26940\n",
+ "Discriminator Loss: tf.Tensor(0.8114457, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.9238222, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 26941\n",
+ "Discriminator Loss: tf.Tensor(0.18209821, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.2848101, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 26942\n",
+ "Discriminator Loss: tf.Tensor(0.6269247, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.1325876, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 26943\n",
+ "Discriminator Loss: tf.Tensor(0.75603753, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.3485441, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 26944\n",
+ "Discriminator Loss: tf.Tensor(0.6451556, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.6963145, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 26945\n",
+ "Discriminator Loss: tf.Tensor(1.403376, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.9052168, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 26946\n",
+ "Discriminator Loss: tf.Tensor(1.0219505, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.60197014, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 26947\n",
+ "Discriminator Loss: tf.Tensor(0.70594287, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.915302, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 26948\n",
+ "Discriminator Loss: tf.Tensor(0.83365846, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.9767786, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 26949\n",
+ "Discriminator Loss: tf.Tensor(1.2050093, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.033313267, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 26950\n",
+ "Discriminator Loss: tf.Tensor(0.85933614, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.2895714, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 26951\n",
+ "Discriminator Loss: tf.Tensor(0.7654743, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.9747959, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 26952\n",
+ "Discriminator Loss: tf.Tensor(0.5462114, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.3302077, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 26953\n",
+ "Discriminator Loss: tf.Tensor(0.8595393, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.5050603, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 26954\n",
+ "Discriminator Loss: tf.Tensor(1.0324839, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.0080523, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 26955\n",
+ "Discriminator Loss: tf.Tensor(0.62145567, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.6233536, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 26956\n",
+ "Discriminator Loss: tf.Tensor(1.051856, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.6776876, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 26957\n",
+ "Discriminator Loss: tf.Tensor(0.64276564, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.4538363, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 26958\n",
+ "Discriminator Loss: tf.Tensor(0.98754203, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.2940338, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 26959\n",
+ "Discriminator Loss: tf.Tensor(1.8230846, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.37286535, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 26960\n",
+ "Discriminator Loss: tf.Tensor(0.44851795, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.69893885, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 26961\n",
+ "Discriminator Loss: tf.Tensor(1.4983233, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.714023, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 26962\n",
+ "Discriminator Loss: tf.Tensor(0.6880971, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.6203236, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 26963\n",
+ "Discriminator Loss: tf.Tensor(0.75174856, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.2351274, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 26964\n",
+ "Discriminator Loss: tf.Tensor(0.4255545, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.7683897, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 26965\n",
+ "Discriminator Loss: tf.Tensor(0.70495194, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.5933409, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 26966\n",
+ "Discriminator Loss: tf.Tensor(0.5840857, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.45664582, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 26967\n",
+ "Discriminator Loss: tf.Tensor(1.2267182, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.161806, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 26968\n",
+ "Discriminator Loss: tf.Tensor(0.5365932, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.7010841, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 26969\n",
+ "Discriminator Loss: tf.Tensor(0.4382218, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.242942, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 26970\n",
+ "Discriminator Loss: tf.Tensor(1.1109421, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.1098439, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 26971\n",
+ "Discriminator Loss: tf.Tensor(0.470015, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.8377089, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 26972\n",
+ "Discriminator Loss: tf.Tensor(1.3289317, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.8010411, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 26973\n",
+ "Discriminator Loss: tf.Tensor(0.6898356, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.70602417, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 26974\n",
+ "Discriminator Loss: tf.Tensor(0.4491393, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.1835352, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 26975\n",
+ "Discriminator Loss: tf.Tensor(0.69121605, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.83336276, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 26976\n",
+ "Discriminator Loss: tf.Tensor(0.6188611, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.1304444, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 26977\n",
+ "Discriminator Loss: tf.Tensor(0.9201491, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.7456775, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 26978\n",
+ "Discriminator Loss: tf.Tensor(0.7167277, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.3498629, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 26979\n",
+ "Discriminator Loss: tf.Tensor(0.83468956, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.6065063, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 26980\n",
+ "Discriminator Loss: tf.Tensor(0.5910522, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.1445996, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 26981\n",
+ "Discriminator Loss: tf.Tensor(1.1568247, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.032298137, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 26982\n",
+ "Discriminator Loss: tf.Tensor(0.6517812, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.504973, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 26983\n",
+ "Discriminator Loss: tf.Tensor(0.98435616, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.19598961, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 26984\n",
+ "Discriminator Loss: tf.Tensor(0.890789, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.5483211, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 26985\n",
+ "Discriminator Loss: tf.Tensor(0.6196531, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.54270786, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 26986\n",
+ "Discriminator Loss: tf.Tensor(1.1035914, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.5284166, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 26987\n",
+ "Discriminator Loss: tf.Tensor(0.55975246, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.5821068, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 26988\n",
+ "Discriminator Loss: tf.Tensor(1.3762312, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.3141017, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 26989\n",
+ "Discriminator Loss: tf.Tensor(0.25453925, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.09662, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 26990\n",
+ "Discriminator Loss: tf.Tensor(0.96994233, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.8584712, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 26991\n",
+ "Discriminator Loss: tf.Tensor(0.84402764, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.0779413, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 26992\n",
+ "Discriminator Loss: tf.Tensor(0.4574858, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.93350714, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 26993\n",
+ "Discriminator Loss: tf.Tensor(0.6545895, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.2609102, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 26994\n",
+ "Discriminator Loss: tf.Tensor(0.81153655, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.78141004, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 26995\n",
+ "Discriminator Loss: tf.Tensor(1.0168488, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.4856911, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 26996\n",
+ "Discriminator Loss: tf.Tensor(0.949266, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.17073931, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 26997\n",
+ "Discriminator Loss: tf.Tensor(0.92779493, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.3448318, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 26998\n",
+ "Discriminator Loss: tf.Tensor(0.7251895, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.42123696, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 26999\n",
+ "Discriminator Loss: tf.Tensor(0.62810695, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.567748, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 27000\n",
+ "Discriminator Loss: tf.Tensor(0.42297742, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.9127, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 27001\n",
+ "Discriminator Loss: tf.Tensor(0.44853804, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.3230509, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 27002\n",
+ "Discriminator Loss: tf.Tensor(0.81168854, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.5004416, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 27003\n",
+ "Discriminator Loss: tf.Tensor(1.1109776, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.108616, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 27004\n",
+ "Discriminator Loss: tf.Tensor(1.0350584, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.52414995, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 27005\n",
+ "Discriminator Loss: tf.Tensor(0.50369745, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.4587116, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 27006\n",
+ "Discriminator Loss: tf.Tensor(0.6467229, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.4904183, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 27007\n",
+ "Discriminator Loss: tf.Tensor(0.74351674, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.6033916, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 27008\n",
+ "Discriminator Loss: tf.Tensor(0.5494894, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.7769262, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 27009\n",
+ "Discriminator Loss: tf.Tensor(1.1475704, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.2508938, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 27010\n",
+ "Discriminator Loss: tf.Tensor(0.671993, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.7435684, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 27011\n",
+ "Discriminator Loss: tf.Tensor(1.4518423, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.250342, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 27012\n",
+ "Discriminator Loss: tf.Tensor(0.51697206, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.7846856, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 27013\n",
+ "Discriminator Loss: tf.Tensor(0.5923983, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.6020627, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 27014\n",
+ "Discriminator Loss: tf.Tensor(0.7619972, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.3872061, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 27015\n",
+ "Discriminator Loss: tf.Tensor(0.5830077, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.7541962, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 27016\n",
+ "Discriminator Loss: tf.Tensor(0.56162286, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.7104745, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 27017\n",
+ "Discriminator Loss: tf.Tensor(0.9958109, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.7034211, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 27018\n",
+ "Discriminator Loss: tf.Tensor(0.41511708, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.7907088, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 27019\n",
+ "Discriminator Loss: tf.Tensor(0.63602155, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.5111618, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 27020\n",
+ "Discriminator Loss: tf.Tensor(0.60065174, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.62088794, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 27021\n",
+ "Discriminator Loss: tf.Tensor(0.52461314, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.6396915, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 27022\n",
+ "Discriminator Loss: tf.Tensor(0.66379017, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.1003926, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 27023\n",
+ "Discriminator Loss: tf.Tensor(0.691412, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.9203856, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 27024\n",
+ "Discriminator Loss: tf.Tensor(1.319182, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.0203345, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 27025\n",
+ "Discriminator Loss: tf.Tensor(1.0559953, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.43554345, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 27026\n",
+ "Discriminator Loss: tf.Tensor(0.59798837, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.0085889, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 27027\n",
+ "Discriminator Loss: tf.Tensor(0.97646177, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.44314918, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 27028\n",
+ "Discriminator Loss: tf.Tensor(1.0298473, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.5122361, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 27029\n",
+ "Discriminator Loss: tf.Tensor(0.729579, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.4372705, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 27030\n",
+ "Discriminator Loss: tf.Tensor(0.73001313, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.19236, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 27031\n",
+ "Discriminator Loss: tf.Tensor(0.870333, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.30280676, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 27032\n",
+ "Discriminator Loss: tf.Tensor(0.8436836, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.8541079, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 27033\n",
+ "Discriminator Loss: tf.Tensor(0.60619503, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.6981595, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 27034\n",
+ "Discriminator Loss: tf.Tensor(0.27693608, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.5408679, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 27035\n",
+ "Discriminator Loss: tf.Tensor(0.65234786, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.0830836, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 27036\n",
+ "Discriminator Loss: tf.Tensor(0.753665, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.68738246, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 27037\n",
+ "Discriminator Loss: tf.Tensor(0.64598227, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.3897198, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 27038\n",
+ "Discriminator Loss: tf.Tensor(1.1992521, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.03787254, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 27039\n",
+ "Discriminator Loss: tf.Tensor(0.80596244, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.0788866, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 27040\n",
+ "Discriminator Loss: tf.Tensor(0.9553453, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.508975, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 27041\n",
+ "Discriminator Loss: tf.Tensor(0.64724845, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.46808192, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 27042\n",
+ "Discriminator Loss: tf.Tensor(1.135735, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.5200009, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 27043\n",
+ "Discriminator Loss: tf.Tensor(0.43020546, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.7275734, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 27044\n",
+ "Discriminator Loss: tf.Tensor(1.0058693, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.4560827, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 27045\n",
+ "Discriminator Loss: tf.Tensor(0.6689816, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.6515495, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 27046\n",
+ "Discriminator Loss: tf.Tensor(0.7840932, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.96241766, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 27047\n",
+ "Discriminator Loss: tf.Tensor(1.0172992, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.5802101, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 27048\n",
+ "Discriminator Loss: tf.Tensor(0.7986032, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.31533667, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 27049\n",
+ "Discriminator Loss: tf.Tensor(1.1648463, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.9400333, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 27050\n",
+ "Discriminator Loss: tf.Tensor(0.66646695, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.43427977, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 27051\n",
+ "Discriminator Loss: tf.Tensor(0.7140852, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.3839598, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 27052\n",
+ "Discriminator Loss: tf.Tensor(0.89781547, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.27061826, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 27053\n",
+ "Discriminator Loss: tf.Tensor(0.7450199, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.2029854, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 27054\n",
+ "Discriminator Loss: tf.Tensor(0.46280354, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.943109, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 27055\n",
+ "Discriminator Loss: tf.Tensor(0.9881116, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.0894631, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 27056\n",
+ "Discriminator Loss: tf.Tensor(0.4189685, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.2017227, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 27057\n",
+ "Discriminator Loss: tf.Tensor(0.79160416, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.97622347, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 27058\n",
+ "Discriminator Loss: tf.Tensor(0.7822736, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.1977698, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 27059\n",
+ "Discriminator Loss: tf.Tensor(0.8839376, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.51294845, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 27060\n",
+ "Discriminator Loss: tf.Tensor(1.6224835, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.9425527, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 27061\n",
+ "Discriminator Loss: tf.Tensor(0.8548983, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.25774354, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 27062\n",
+ "Discriminator Loss: tf.Tensor(0.97933424, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.0716182, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 27063\n",
+ "Discriminator Loss: tf.Tensor(0.5105604, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.7469917, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 27064\n",
+ "Discriminator Loss: tf.Tensor(0.80811596, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.5357062, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 27065\n",
+ "Discriminator Loss: tf.Tensor(0.74379617, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.48522058, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 27066\n",
+ "Discriminator Loss: tf.Tensor(0.7025377, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.299244, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 27067\n",
+ "Discriminator Loss: tf.Tensor(0.43485773, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.88488704, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 27068\n",
+ "Discriminator Loss: tf.Tensor(0.59706926, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.1670886, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 27069\n",
+ "Discriminator Loss: tf.Tensor(0.48932028, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.206324, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 27070\n",
+ "Discriminator Loss: tf.Tensor(1.0874496, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.0630789, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 27071\n",
+ "Discriminator Loss: tf.Tensor(0.58500636, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.57455164, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 27072\n",
+ "Discriminator Loss: tf.Tensor(1.2564793, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.4822994, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 27073\n",
+ "Discriminator Loss: tf.Tensor(0.80397654, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.3212857, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 27074\n",
+ "Discriminator Loss: tf.Tensor(0.49604166, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.3216757, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 27075\n",
+ "Discriminator Loss: tf.Tensor(0.60428286, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.0292829, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 27076\n",
+ "Discriminator Loss: tf.Tensor(0.58373857, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.905047, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 27077\n",
+ "Discriminator Loss: tf.Tensor(1.1091859, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.4453586, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 27078\n",
+ "Discriminator Loss: tf.Tensor(0.407158, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.8490631, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 27079\n",
+ "Discriminator Loss: tf.Tensor(0.77338815, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.8271681, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 27080\n",
+ "Discriminator Loss: tf.Tensor(0.5423561, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.660361, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 27081\n",
+ "Discriminator Loss: tf.Tensor(0.99552786, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.5074803, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 27082\n",
+ "Discriminator Loss: tf.Tensor(0.39102745, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.1826401, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 27083\n",
+ "Discriminator Loss: tf.Tensor(0.28756446, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.2268785, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 27084\n",
+ "Discriminator Loss: tf.Tensor(1.0233303, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.95731306, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 27085\n",
+ "Discriminator Loss: tf.Tensor(1.2817574, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.3533889, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 27086\n",
+ "Discriminator Loss: tf.Tensor(0.8919128, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.321982, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 27087\n",
+ "Discriminator Loss: tf.Tensor(1.7143371, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.5357008, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 27088\n",
+ "Discriminator Loss: tf.Tensor(1.1724184, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.131011, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 27089\n",
+ "Discriminator Loss: tf.Tensor(0.7998684, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.50672156, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 27090\n",
+ "Discriminator Loss: tf.Tensor(1.1321484, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.4559265, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 27091\n",
+ "Discriminator Loss: tf.Tensor(0.6072129, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.5689985, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 27092\n",
+ "Discriminator Loss: tf.Tensor(0.8977075, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.472702, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 27093\n",
+ "Discriminator Loss: tf.Tensor(0.5081781, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.74686176, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 27094\n",
+ "Discriminator Loss: tf.Tensor(0.598981, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.4177771, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 27095\n",
+ "Discriminator Loss: tf.Tensor(0.7638562, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.2276087, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 27096\n",
+ "Discriminator Loss: tf.Tensor(0.8547137, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.01265, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 27097\n",
+ "Discriminator Loss: tf.Tensor(0.5739018, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.1337099, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 27098\n",
+ "Discriminator Loss: tf.Tensor(0.38145632, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.8901644, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 27099\n",
+ "Discriminator Loss: tf.Tensor(1.1565301, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.601772, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 27100\n",
+ "Discriminator Loss: tf.Tensor(0.7719622, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.32030025, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 27101\n",
+ "Discriminator Loss: tf.Tensor(0.64744645, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.4369236, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 27102\n",
+ "Discriminator Loss: tf.Tensor(0.57153314, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.5381089, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 27103\n",
+ "Discriminator Loss: tf.Tensor(1.0539615, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.3634696, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 27104\n",
+ "Discriminator Loss: tf.Tensor(0.44379306, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.2721462, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 27105\n",
+ "Discriminator Loss: tf.Tensor(0.36293846, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.6962244, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 27106\n",
+ "Discriminator Loss: tf.Tensor(1.231845, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.0686305, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 27107\n",
+ "Discriminator Loss: tf.Tensor(0.6059327, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.87890655, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 27108\n",
+ "Discriminator Loss: tf.Tensor(0.2967736, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.0993053, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 27109\n",
+ "Discriminator Loss: tf.Tensor(0.92936504, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.8826671, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 27110\n",
+ "Discriminator Loss: tf.Tensor(0.570995, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.0634512, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 27111\n",
+ "Discriminator Loss: tf.Tensor(0.60623306, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.2399246, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 27112\n",
+ "Discriminator Loss: tf.Tensor(0.85222447, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.7300191, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 27113\n",
+ "Discriminator Loss: tf.Tensor(1.30339, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.3265289, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 27114\n",
+ "Discriminator Loss: tf.Tensor(0.5615776, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.5993903, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 27115\n",
+ "Discriminator Loss: tf.Tensor(1.3151805, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.6672887, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 27116\n",
+ "Discriminator Loss: tf.Tensor(0.83432823, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.45268464, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 27117\n",
+ "Discriminator Loss: tf.Tensor(0.94215465, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.0857316, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 27118\n",
+ "Discriminator Loss: tf.Tensor(0.7271054, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.98824006, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 27119\n",
+ "Discriminator Loss: tf.Tensor(0.58429545, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.9600625, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 27120\n",
+ "Discriminator Loss: tf.Tensor(1.1989228, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.5034381, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 27121\n",
+ "Discriminator Loss: tf.Tensor(0.8280391, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.27969304, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 27122\n",
+ "Discriminator Loss: tf.Tensor(0.8245457, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.5646696, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 27123\n",
+ "Discriminator Loss: tf.Tensor(0.5944054, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.6297739, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 27124\n",
+ "Discriminator Loss: tf.Tensor(0.9564771, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.8562365, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 27125\n",
+ "Discriminator Loss: tf.Tensor(0.5469425, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.667902, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 27126\n",
+ "Discriminator Loss: tf.Tensor(0.861816, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.3649334, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 27127\n",
+ "Discriminator Loss: tf.Tensor(1.2575302, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.69286567, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 27128\n",
+ "Discriminator Loss: tf.Tensor(0.5817435, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.5378164, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 27129\n",
+ "Discriminator Loss: tf.Tensor(0.8372739, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.3440479, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 27130\n",
+ "Discriminator Loss: tf.Tensor(1.1387084, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.89369136, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 27131\n",
+ "Discriminator Loss: tf.Tensor(0.7403256, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.52684575, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 27132\n",
+ "Discriminator Loss: tf.Tensor(0.5118847, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.3078117, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 27133\n",
+ "Discriminator Loss: tf.Tensor(0.72750133, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.5437534, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 27134\n",
+ "Discriminator Loss: tf.Tensor(0.8859346, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.2217295, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 27135\n",
+ "Discriminator Loss: tf.Tensor(0.60583353, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.3571628, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 27136\n",
+ "Discriminator Loss: tf.Tensor(0.49034053, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.80047876, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 27137\n",
+ "Discriminator Loss: tf.Tensor(0.86723113, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.9729503, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 27138\n",
+ "Discriminator Loss: tf.Tensor(0.5162077, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.60697776, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 27139\n",
+ "Discriminator Loss: tf.Tensor(1.595158, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.3469752, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 27140\n",
+ "Discriminator Loss: tf.Tensor(0.41359508, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.2593354, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 27141\n",
+ "Discriminator Loss: tf.Tensor(0.6840739, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.35254872, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 27142\n",
+ "Discriminator Loss: tf.Tensor(1.0138795, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.8306128, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 27143\n",
+ "Discriminator Loss: tf.Tensor(0.7230506, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.56915313, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 27144\n",
+ "Discriminator Loss: tf.Tensor(0.86826634, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.5412296, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 27145\n",
+ "Discriminator Loss: tf.Tensor(0.6592109, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.47475776, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 27146\n",
+ "Discriminator Loss: tf.Tensor(1.1950239, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.4080334, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 27147\n",
+ "Discriminator Loss: tf.Tensor(0.48286137, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.7420874, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 27148\n",
+ "Discriminator Loss: tf.Tensor(0.74387324, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.3414396, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 27149\n",
+ "Discriminator Loss: tf.Tensor(0.5164976, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.6479865, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 27150\n",
+ "Discriminator Loss: tf.Tensor(1.3999015, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.1711993, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 27151\n",
+ "Discriminator Loss: tf.Tensor(0.74951357, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.54796, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 27152\n",
+ "Discriminator Loss: tf.Tensor(0.68822974, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.9874169, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 27153\n",
+ "Discriminator Loss: tf.Tensor(0.46540007, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.4878656, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 27154\n",
+ "Discriminator Loss: tf.Tensor(0.52569705, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.0191184, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 27155\n",
+ "Discriminator Loss: tf.Tensor(1.0727522, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.7754658, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 27156\n",
+ "Discriminator Loss: tf.Tensor(1.0906762, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.321555, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 27157\n",
+ "Discriminator Loss: tf.Tensor(0.52312934, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.0197309, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 27158\n",
+ "Discriminator Loss: tf.Tensor(0.8741878, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.1746551, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 27159\n",
+ "Discriminator Loss: tf.Tensor(0.21722656, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.1033186, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 27160\n",
+ "Discriminator Loss: tf.Tensor(0.4128752, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.7492488, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 27161\n",
+ "Discriminator Loss: tf.Tensor(1.3001404, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.8303403, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 27162\n",
+ "Discriminator Loss: tf.Tensor(0.98464453, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.42106867, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 27163\n",
+ "Discriminator Loss: tf.Tensor(0.8387925, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.1274083, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 27164\n",
+ "Discriminator Loss: tf.Tensor(0.72956294, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.43715128, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 27165\n",
+ "Discriminator Loss: tf.Tensor(1.1344813, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.2042358, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 27166\n",
+ "Discriminator Loss: tf.Tensor(0.60021347, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.167497, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 27167\n",
+ "Discriminator Loss: tf.Tensor(0.5935601, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.62668663, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 27168\n",
+ "Discriminator Loss: tf.Tensor(1.2095708, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.8591347, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 27169\n",
+ "Discriminator Loss: tf.Tensor(0.40232027, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.68735456, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 27170\n",
+ "Discriminator Loss: tf.Tensor(1.0767622, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.4955759, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 27171\n",
+ "Discriminator Loss: tf.Tensor(1.152427, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.014616862, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 27172\n",
+ "Discriminator Loss: tf.Tensor(0.6585289, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.5346152, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 27173\n",
+ "Discriminator Loss: tf.Tensor(0.58047485, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.5896788, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 27174\n",
+ "Discriminator Loss: tf.Tensor(0.73918474, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.0859071, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 27175\n",
+ "Discriminator Loss: tf.Tensor(0.81240565, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.88232344, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 27176\n",
+ "Discriminator Loss: tf.Tensor(0.4319721, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.1215838, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 27177\n",
+ "Discriminator Loss: tf.Tensor(0.68349814, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.3239894, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 27178\n",
+ "Discriminator Loss: tf.Tensor(0.5220525, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.7497957, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 27179\n",
+ "Discriminator Loss: tf.Tensor(1.0194774, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.3639488, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 27180\n",
+ "Discriminator Loss: tf.Tensor(0.867617, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.5892553, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 27181\n",
+ "Discriminator Loss: tf.Tensor(0.6824647, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.3860706, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 27182\n",
+ "Discriminator Loss: tf.Tensor(0.7082555, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.40175506, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 27183\n",
+ "Discriminator Loss: tf.Tensor(1.1372478, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.8694943, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 27184\n",
+ "Discriminator Loss: tf.Tensor(0.557465, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.86118, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 27185\n",
+ "Discriminator Loss: tf.Tensor(0.34344435, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.1064479, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 27186\n",
+ "Discriminator Loss: tf.Tensor(0.6079443, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.54060835, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 27187\n",
+ "Discriminator Loss: tf.Tensor(1.5173769, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.1967258, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 27188\n",
+ "Discriminator Loss: tf.Tensor(0.65759647, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.58982784, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 27189\n",
+ "Discriminator Loss: tf.Tensor(0.93606395, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.3992697, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 27190\n",
+ "Discriminator Loss: tf.Tensor(0.5018842, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.5593929, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 27191\n",
+ "Discriminator Loss: tf.Tensor(1.1469233, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.1837641, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 27192\n",
+ "Discriminator Loss: tf.Tensor(0.4818012, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.78996044, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 27193\n",
+ "Discriminator Loss: tf.Tensor(0.7136539, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.3108082, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 27194\n",
+ "Discriminator Loss: tf.Tensor(0.43547136, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.0428357, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 27195\n",
+ "Discriminator Loss: tf.Tensor(0.59218484, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.7245479, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 27196\n",
+ "Discriminator Loss: tf.Tensor(0.56045485, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.6587144, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 27197\n",
+ "Discriminator Loss: tf.Tensor(0.70567286, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.5817967, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 27198\n",
+ "Discriminator Loss: tf.Tensor(1.4316157, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.9328194, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 27199\n",
+ "Discriminator Loss: tf.Tensor(0.4884075, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.79648393, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 27200\n",
+ "Discriminator Loss: tf.Tensor(0.88276434, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.9698712, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 27201\n",
+ "Discriminator Loss: tf.Tensor(0.64979315, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.76366425, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 27202\n",
+ "Discriminator Loss: tf.Tensor(0.63403064, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.2628869, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 27203\n",
+ "Discriminator Loss: tf.Tensor(0.42127165, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.2539425, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 27204\n",
+ "Discriminator Loss: tf.Tensor(0.62086844, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.0046624, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 27205\n",
+ "Discriminator Loss: tf.Tensor(0.9356571, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.3361124, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 27206\n",
+ "Discriminator Loss: tf.Tensor(0.7715157, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.5901921, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 27207\n",
+ "Discriminator Loss: tf.Tensor(0.8215797, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.111468, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 27208\n",
+ "Discriminator Loss: tf.Tensor(0.5141876, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.908703, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 27209\n",
+ "Discriminator Loss: tf.Tensor(0.78341055, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.5933939, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 27210\n",
+ "Discriminator Loss: tf.Tensor(0.8748237, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.25057647, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 27211\n",
+ "Discriminator Loss: tf.Tensor(0.9828464, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.5220681, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 27212\n",
+ "Discriminator Loss: tf.Tensor(0.40569434, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.96687365, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 27213\n",
+ "Discriminator Loss: tf.Tensor(0.61758095, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.3218704, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 27214\n",
+ "Discriminator Loss: tf.Tensor(0.7606024, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.55931085, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 27215\n",
+ "Discriminator Loss: tf.Tensor(0.640561, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.3703443, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 27216\n",
+ "Discriminator Loss: tf.Tensor(0.7050371, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.8036769, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 27217\n",
+ "Discriminator Loss: tf.Tensor(0.8365874, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.5161147, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 27218\n",
+ "Discriminator Loss: tf.Tensor(0.8544254, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.21415155, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 27219\n",
+ "Discriminator Loss: tf.Tensor(1.405405, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.9570097, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 27220\n",
+ "Discriminator Loss: tf.Tensor(1.0260952, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.2745541, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 27221\n",
+ "Discriminator Loss: tf.Tensor(0.6734431, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.2572664, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 27222\n",
+ "Discriminator Loss: tf.Tensor(1.0168766, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.262624, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 27223\n",
+ "Discriminator Loss: tf.Tensor(0.8906296, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.0028709, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 27224\n",
+ "Discriminator Loss: tf.Tensor(0.5341959, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.7925052, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 27225\n",
+ "Discriminator Loss: tf.Tensor(1.4638191, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.2077525, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 27226\n",
+ "Discriminator Loss: tf.Tensor(0.7334724, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.7242144, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 27227\n",
+ "Discriminator Loss: tf.Tensor(0.69585663, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.42014393, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 27228\n",
+ "Discriminator Loss: tf.Tensor(1.6021645, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.7700243, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 27229\n",
+ "Discriminator Loss: tf.Tensor(0.7725488, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.4342161, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 27230\n",
+ "Discriminator Loss: tf.Tensor(0.76562166, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.6039108, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 27231\n",
+ "Discriminator Loss: tf.Tensor(0.56817925, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.56445646, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 27232\n",
+ "Discriminator Loss: tf.Tensor(1.1367079, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.508926, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 27233\n",
+ "Discriminator Loss: tf.Tensor(0.49478012, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.7804639, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 27234\n",
+ "Discriminator Loss: tf.Tensor(0.42608112, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.1671667, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 27235\n",
+ "Discriminator Loss: tf.Tensor(0.6806859, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.2588221, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 27236\n",
+ "Discriminator Loss: tf.Tensor(0.87375003, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.15144826, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 27237\n",
+ "Discriminator Loss: tf.Tensor(0.9398473, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.2856655, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 27238\n",
+ "Discriminator Loss: tf.Tensor(0.36807397, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.802238, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 27239\n",
+ "Discriminator Loss: tf.Tensor(0.7105073, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.7152386, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 27240\n",
+ "Discriminator Loss: tf.Tensor(0.46655995, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.7141722, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 27241\n",
+ "Discriminator Loss: tf.Tensor(0.9540951, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.7154369, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 27242\n",
+ "Discriminator Loss: tf.Tensor(0.4747625, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.6295133, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 27243\n",
+ "Discriminator Loss: tf.Tensor(0.96839136, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.8516159, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 27244\n",
+ "Discriminator Loss: tf.Tensor(0.5145459, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.7447831, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 27245\n",
+ "Discriminator Loss: tf.Tensor(0.68467194, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.0967487, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 27246\n",
+ "Discriminator Loss: tf.Tensor(0.5272097, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.6908701, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 27247\n",
+ "Discriminator Loss: tf.Tensor(1.1389385, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.7611872, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 27248\n",
+ "Discriminator Loss: tf.Tensor(0.59960073, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.61793596, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 27249\n",
+ "Discriminator Loss: tf.Tensor(0.62011415, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.239473, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 27250\n",
+ "Discriminator Loss: tf.Tensor(0.71514416, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.32663456, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 27251\n",
+ "Discriminator Loss: tf.Tensor(0.8702765, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.4935403, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 27252\n",
+ "Discriminator Loss: tf.Tensor(0.37601438, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.72252256, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 27253\n",
+ "Discriminator Loss: tf.Tensor(1.1892458, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.8316177, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 27254\n",
+ "Discriminator Loss: tf.Tensor(0.75700724, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.4855374, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 27255\n",
+ "Discriminator Loss: tf.Tensor(0.63377446, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.4840618, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 27256\n",
+ "Discriminator Loss: tf.Tensor(0.72627056, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.7655158, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 27257\n",
+ "Discriminator Loss: tf.Tensor(0.37844586, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.1045138, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 27258\n",
+ "Discriminator Loss: tf.Tensor(0.9498307, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.499692, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 27259\n",
+ "Discriminator Loss: tf.Tensor(0.73870933, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.28864107, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 27260\n",
+ "Discriminator Loss: tf.Tensor(1.0012665, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.3388547, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 27261\n",
+ "Discriminator Loss: tf.Tensor(0.57281, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.65598196, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 27262\n",
+ "Discriminator Loss: tf.Tensor(0.8580948, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.3321697, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 27263\n",
+ "Discriminator Loss: tf.Tensor(0.51169556, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.61397004, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 27264\n",
+ "Discriminator Loss: tf.Tensor(0.66591066, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.8427821, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 27265\n",
+ "Discriminator Loss: tf.Tensor(0.69829464, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.42633125, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 27266\n",
+ "Discriminator Loss: tf.Tensor(0.6757035, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.6133367, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 27267\n",
+ "Discriminator Loss: tf.Tensor(0.7104976, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.57339853, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 27268\n",
+ "Discriminator Loss: tf.Tensor(1.2523509, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.7359453, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 27269\n",
+ "Discriminator Loss: tf.Tensor(0.6465123, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.37941456, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 27270\n",
+ "Discriminator Loss: tf.Tensor(0.9715244, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.3394991, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 27271\n",
+ "Discriminator Loss: tf.Tensor(0.6191329, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.47336516, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 27272\n",
+ "Discriminator Loss: tf.Tensor(0.8213364, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.8303486, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 27273\n",
+ "Discriminator Loss: tf.Tensor(0.55105805, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.5542775, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 27274\n",
+ "Discriminator Loss: tf.Tensor(1.0080596, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.5351772, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 27275\n",
+ "Discriminator Loss: tf.Tensor(0.46877265, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.59341305, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 27276\n",
+ "Discriminator Loss: tf.Tensor(0.63740957, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.5580257, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 27277\n",
+ "Discriminator Loss: tf.Tensor(0.47648638, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.6463693, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 27278\n",
+ "Discriminator Loss: tf.Tensor(0.87084186, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.2417427, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 27279\n",
+ "Discriminator Loss: tf.Tensor(0.747057, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.7992751, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 27280\n",
+ "Discriminator Loss: tf.Tensor(0.6175084, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.2176267, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 27281\n",
+ "Discriminator Loss: tf.Tensor(0.41524577, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.81518, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 27282\n",
+ "Discriminator Loss: tf.Tensor(0.64721507, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.93212795, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 27283\n",
+ "Discriminator Loss: tf.Tensor(0.7203922, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.9226087, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 27284\n",
+ "Discriminator Loss: tf.Tensor(0.91969097, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.6117705, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 27285\n",
+ "Discriminator Loss: tf.Tensor(0.8366957, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.32217285, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 27286\n",
+ "Discriminator Loss: tf.Tensor(0.8453175, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.2407302, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 27287\n",
+ "Discriminator Loss: tf.Tensor(0.70351523, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.6752622, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 27288\n",
+ "Discriminator Loss: tf.Tensor(0.8219446, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.7558498, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 27289\n",
+ "Discriminator Loss: tf.Tensor(0.61509365, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.5656591, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 27290\n",
+ "Discriminator Loss: tf.Tensor(0.95919734, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.7076496, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 27291\n",
+ "Discriminator Loss: tf.Tensor(0.52374524, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.9029932, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 27292\n",
+ "Discriminator Loss: tf.Tensor(0.64711374, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.84246, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 27293\n",
+ "Discriminator Loss: tf.Tensor(0.6085068, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.3668882, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 27294\n",
+ "Discriminator Loss: tf.Tensor(0.49718565, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.8323986, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 27295\n",
+ "Discriminator Loss: tf.Tensor(0.70191693, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.677539, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 27296\n",
+ "Discriminator Loss: tf.Tensor(0.7239684, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.60666794, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 27297\n",
+ "Discriminator Loss: tf.Tensor(1.4974041, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.993423, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 27298\n",
+ "Discriminator Loss: tf.Tensor(0.90287364, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.40437365, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 27299\n",
+ "Discriminator Loss: tf.Tensor(0.529933, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.4147943, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 27300\n",
+ "Discriminator Loss: tf.Tensor(0.43381628, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.82131404, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 27301\n",
+ "Discriminator Loss: tf.Tensor(0.78905517, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.1389917, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 27302\n",
+ "Discriminator Loss: tf.Tensor(0.48704493, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.72330195, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 27303\n",
+ "Discriminator Loss: tf.Tensor(0.7647295, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.4991862, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 27304\n",
+ "Discriminator Loss: tf.Tensor(0.5809893, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.53508645, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 27305\n",
+ "Discriminator Loss: tf.Tensor(1.471726, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.9302527, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 27306\n",
+ "Discriminator Loss: tf.Tensor(0.5978334, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.5747427, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 27307\n",
+ "Discriminator Loss: tf.Tensor(1.3535714, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.1755337, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 27308\n",
+ "Discriminator Loss: tf.Tensor(0.44333857, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.69142103, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 27309\n",
+ "Discriminator Loss: tf.Tensor(0.7259159, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.2949344, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 27310\n",
+ "Discriminator Loss: tf.Tensor(0.2614784, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.8171621, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 27311\n",
+ "Discriminator Loss: tf.Tensor(1.5822595, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.3635721, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 27312\n",
+ "Discriminator Loss: tf.Tensor(0.31170145, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.87387234, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 27313\n",
+ "Discriminator Loss: tf.Tensor(0.60737634, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.4905902, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 27314\n",
+ "Discriminator Loss: tf.Tensor(0.70369816, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.41851828, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 27315\n",
+ "Discriminator Loss: tf.Tensor(0.66231513, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.4946195, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 27316\n",
+ "Discriminator Loss: tf.Tensor(0.61467606, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.56955993, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 27317\n",
+ "Discriminator Loss: tf.Tensor(0.89491653, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.2620062, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 27318\n",
+ "Discriminator Loss: tf.Tensor(0.4854027, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.8067649, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 27319\n",
+ "Discriminator Loss: tf.Tensor(1.2087967, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.7739986, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 27320\n",
+ "Discriminator Loss: tf.Tensor(1.0196449, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.29314885, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 27321\n",
+ "Discriminator Loss: tf.Tensor(0.46854055, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.3406891, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 27322\n",
+ "Discriminator Loss: tf.Tensor(0.52524, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.6584328, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 27323\n",
+ "Discriminator Loss: tf.Tensor(1.0913293, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.788823, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 27324\n",
+ "Discriminator Loss: tf.Tensor(0.4732695, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.6165144, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 27325\n",
+ "Discriminator Loss: tf.Tensor(1.2084646, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.9635148, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 27326\n",
+ "Discriminator Loss: tf.Tensor(0.46171576, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.3227822, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 27327\n",
+ "Discriminator Loss: tf.Tensor(0.78089416, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.6288413, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 27328\n",
+ "Discriminator Loss: tf.Tensor(0.5049605, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.6789802, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 27329\n",
+ "Discriminator Loss: tf.Tensor(1.5233592, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.1185744, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 27330\n",
+ "Discriminator Loss: tf.Tensor(0.4694082, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.80566627, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 27331\n",
+ "Discriminator Loss: tf.Tensor(0.817703, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.429719, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 27332\n",
+ "Discriminator Loss: tf.Tensor(0.5735975, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.44621548, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 27333\n",
+ "Discriminator Loss: tf.Tensor(0.37115264, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.3568364, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 27334\n",
+ "Discriminator Loss: tf.Tensor(0.7031209, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.71823263, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 27335\n",
+ "Discriminator Loss: tf.Tensor(0.8049569, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.6803226, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 27336\n",
+ "Discriminator Loss: tf.Tensor(0.8071579, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.5089951, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 27337\n",
+ "Discriminator Loss: tf.Tensor(0.7047688, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.7841958, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 27338\n",
+ "Discriminator Loss: tf.Tensor(0.8139146, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.39022556, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 27339\n",
+ "Discriminator Loss: tf.Tensor(1.2149885, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.4173163, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 27340\n",
+ "Discriminator Loss: tf.Tensor(0.52581245, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.57780784, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 27341\n",
+ "Discriminator Loss: tf.Tensor(1.1002357, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.5075482, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 27342\n",
+ "Discriminator Loss: tf.Tensor(0.6845218, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.7860184, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 27343\n",
+ "Discriminator Loss: tf.Tensor(0.983552, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.5090741, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 27344\n",
+ "Discriminator Loss: tf.Tensor(0.8236375, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.3714446, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 27345\n",
+ "Discriminator Loss: tf.Tensor(1.0905223, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.020729044, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 27346\n",
+ "Discriminator Loss: tf.Tensor(0.5541715, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.3482662, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 27347\n",
+ "Discriminator Loss: tf.Tensor(0.4498487, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.954992, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 27348\n",
+ "Discriminator Loss: tf.Tensor(0.6767412, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.4480468, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 27349\n",
+ "Discriminator Loss: tf.Tensor(0.51537746, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.88243294, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 27350\n",
+ "Discriminator Loss: tf.Tensor(0.8471234, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.3080431, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 27351\n",
+ "Discriminator Loss: tf.Tensor(0.6466655, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.5591665, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 27352\n",
+ "Discriminator Loss: tf.Tensor(0.6590836, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.7065611, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 27353\n",
+ "Discriminator Loss: tf.Tensor(0.303972, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.090577, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 27354\n",
+ "Discriminator Loss: tf.Tensor(0.43838862, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.1470839, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 27355\n",
+ "Discriminator Loss: tf.Tensor(0.5373664, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.1369685, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 27356\n",
+ "Discriminator Loss: tf.Tensor(0.4230121, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.2703615, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 27357\n",
+ "Discriminator Loss: tf.Tensor(1.1645223, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.1450642, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 27358\n",
+ "Discriminator Loss: tf.Tensor(1.1299539, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.3252459, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 27359\n",
+ "Discriminator Loss: tf.Tensor(1.2751211, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.3919992, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 27360\n",
+ "Discriminator Loss: tf.Tensor(0.94538647, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.25603148, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 27361\n",
+ "Discriminator Loss: tf.Tensor(0.86585706, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.0473224, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 27362\n",
+ "Discriminator Loss: tf.Tensor(0.60201883, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.9260097, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 27363\n",
+ "Discriminator Loss: tf.Tensor(0.5756887, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.3403277, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 27364\n",
+ "Discriminator Loss: tf.Tensor(0.69095016, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.53619325, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 27365\n",
+ "Discriminator Loss: tf.Tensor(0.6120772, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.4266967, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 27366\n",
+ "Discriminator Loss: tf.Tensor(0.5575157, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.6468811, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 27367\n",
+ "Discriminator Loss: tf.Tensor(1.0974023, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.3685395, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 27368\n",
+ "Discriminator Loss: tf.Tensor(1.0826304, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.11504977, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 27369\n",
+ "Discriminator Loss: tf.Tensor(0.7647505, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.5965906, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 27370\n",
+ "Discriminator Loss: tf.Tensor(0.540975, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.519631, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 27371\n",
+ "Discriminator Loss: tf.Tensor(1.1900011, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.2895346, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 27372\n",
+ "Discriminator Loss: tf.Tensor(0.28379324, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.1043968, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 27373\n",
+ "Discriminator Loss: tf.Tensor(0.6947449, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.524236, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 27374\n",
+ "Discriminator Loss: tf.Tensor(1.3244342, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.229846, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 27375\n",
+ "Discriminator Loss: tf.Tensor(0.9851749, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.3560075, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 27376\n",
+ "Discriminator Loss: tf.Tensor(0.5327391, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.2072545, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 27377\n",
+ "Discriminator Loss: tf.Tensor(0.7277244, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.62013596, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 27378\n",
+ "Discriminator Loss: tf.Tensor(0.79056156, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.5570391, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 27379\n",
+ "Discriminator Loss: tf.Tensor(0.8256281, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.53054017, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 27380\n",
+ "Discriminator Loss: tf.Tensor(0.7863984, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.3717905, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 27381\n",
+ "Discriminator Loss: tf.Tensor(0.9196363, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.42248997, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 27382\n",
+ "Discriminator Loss: tf.Tensor(1.1429119, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.8979393, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 27383\n",
+ "Discriminator Loss: tf.Tensor(0.78202945, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.38890973, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 27384\n",
+ "Discriminator Loss: tf.Tensor(0.5457408, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.1410578, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 27385\n",
+ "Discriminator Loss: tf.Tensor(0.7589992, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.44316533, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 27386\n",
+ "Discriminator Loss: tf.Tensor(1.50493, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.0421221, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 27387\n",
+ "Discriminator Loss: tf.Tensor(0.59851485, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.6947169, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 27388\n",
+ "Discriminator Loss: tf.Tensor(0.5518486, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.8890527, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 27389\n",
+ "Discriminator Loss: tf.Tensor(0.67206645, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.2082051, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 27390\n",
+ "Discriminator Loss: tf.Tensor(0.6119889, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.5208656, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 27391\n",
+ "Discriminator Loss: tf.Tensor(0.9981512, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.4127134, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 27392\n",
+ "Discriminator Loss: tf.Tensor(0.5006027, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.1222476, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 27393\n",
+ "Discriminator Loss: tf.Tensor(0.57053196, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.9310648, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 27394\n",
+ "Discriminator Loss: tf.Tensor(0.8420486, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.1254078, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 27395\n",
+ "Discriminator Loss: tf.Tensor(0.5106957, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.9305339, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 27396\n",
+ "Discriminator Loss: tf.Tensor(2.0402448, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.3200505, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 27397\n",
+ "Discriminator Loss: tf.Tensor(0.7217195, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.48645487, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 27398\n",
+ "Discriminator Loss: tf.Tensor(0.96691287, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.2020632, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 27399\n",
+ "Discriminator Loss: tf.Tensor(0.7872885, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.2599843, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 27400\n",
+ "Discriminator Loss: tf.Tensor(0.8186738, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.8714482, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 27401\n",
+ "Discriminator Loss: tf.Tensor(0.64794797, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.6269716, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 27402\n",
+ "Discriminator Loss: tf.Tensor(0.9494414, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.2472119, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 27403\n",
+ "Discriminator Loss: tf.Tensor(0.7185054, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.40929437, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 27404\n",
+ "Discriminator Loss: tf.Tensor(1.0992185, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.763816, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 27405\n",
+ "Discriminator Loss: tf.Tensor(0.6275526, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.6503391, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 27406\n",
+ "Discriminator Loss: tf.Tensor(0.6140949, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.3878816, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 27407\n",
+ "Discriminator Loss: tf.Tensor(0.74274445, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.54250646, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 27408\n",
+ "Discriminator Loss: tf.Tensor(1.3867743, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.8959593, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 27409\n",
+ "Discriminator Loss: tf.Tensor(0.61683536, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.4573004, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 27410\n",
+ "Discriminator Loss: tf.Tensor(0.94974315, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.7070504, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 27411\n",
+ "Discriminator Loss: tf.Tensor(0.84178203, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.6557935, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 27412\n",
+ "Discriminator Loss: tf.Tensor(0.5035376, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.3181063, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 27413\n",
+ "Discriminator Loss: tf.Tensor(0.66324645, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.42368826, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 27414\n",
+ "Discriminator Loss: tf.Tensor(0.35160795, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.3247383, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 27415\n",
+ "Discriminator Loss: tf.Tensor(0.90397596, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.7274025, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 27416\n",
+ "Discriminator Loss: tf.Tensor(0.98311496, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.5263271, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 27417\n",
+ "Discriminator Loss: tf.Tensor(0.6588356, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.5201196, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 27418\n",
+ "Discriminator Loss: tf.Tensor(1.0067154, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.6459352, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 27419\n",
+ "Discriminator Loss: tf.Tensor(1.07195, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.08780068, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 27420\n",
+ "Discriminator Loss: tf.Tensor(0.6407171, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.4029382, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 27421\n",
+ "Discriminator Loss: tf.Tensor(0.8557332, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.24711232, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 27422\n",
+ "Discriminator Loss: tf.Tensor(0.7747239, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.2021971, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 27423\n",
+ "Discriminator Loss: tf.Tensor(0.740307, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.8017709, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 27424\n",
+ "Discriminator Loss: tf.Tensor(0.4967411, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.5621023, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 27425\n",
+ "Discriminator Loss: tf.Tensor(0.60985833, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.61859703, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 27426\n",
+ "Discriminator Loss: tf.Tensor(1.2410226, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.7722727, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 27427\n",
+ "Discriminator Loss: tf.Tensor(0.547702, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.5405705, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 27428\n",
+ "Discriminator Loss: tf.Tensor(1.0244517, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.8004135, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 27429\n",
+ "Discriminator Loss: tf.Tensor(0.6320528, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.52410287, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 27430\n",
+ "Discriminator Loss: tf.Tensor(1.0337234, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.322243, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 27431\n",
+ "Discriminator Loss: tf.Tensor(0.3555259, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.8671071, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 27432\n",
+ "Discriminator Loss: tf.Tensor(0.42094153, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.9388437, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 27433\n",
+ "Discriminator Loss: tf.Tensor(0.9232209, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.562528, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 27434\n",
+ "Discriminator Loss: tf.Tensor(0.8733816, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.3808171, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 27435\n",
+ "Discriminator Loss: tf.Tensor(0.5994612, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.0078441, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 27436\n",
+ "Discriminator Loss: tf.Tensor(0.42543542, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.1076133, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 27437\n",
+ "Discriminator Loss: tf.Tensor(0.52660143, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.4260057, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 27438\n",
+ "Discriminator Loss: tf.Tensor(0.6524435, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.1494137, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 27439\n",
+ "Discriminator Loss: tf.Tensor(0.55641305, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.8519084, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 27440\n",
+ "Discriminator Loss: tf.Tensor(0.4580929, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.7817211, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 27441\n",
+ "Discriminator Loss: tf.Tensor(0.7916254, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.7229592, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 27442\n",
+ "Discriminator Loss: tf.Tensor(0.9335762, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.8939209, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 27443\n",
+ "Discriminator Loss: tf.Tensor(0.90655804, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.5419699, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 27444\n",
+ "Discriminator Loss: tf.Tensor(0.77126896, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.25856534, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 27445\n",
+ "Discriminator Loss: tf.Tensor(0.9829217, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.1996775, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 27446\n",
+ "Discriminator Loss: tf.Tensor(0.94131505, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.18004698, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 27447\n",
+ "Discriminator Loss: tf.Tensor(1.5279016, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.3361803, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 27448\n",
+ "Discriminator Loss: tf.Tensor(0.67142737, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.5821571, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 27449\n",
+ "Discriminator Loss: tf.Tensor(1.0086963, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.1957401, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 27450\n",
+ "Discriminator Loss: tf.Tensor(0.6521433, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.6374844, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 27451\n",
+ "Discriminator Loss: tf.Tensor(1.0133991, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.8081795, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 27452\n",
+ "Discriminator Loss: tf.Tensor(0.4571197, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.6663957, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 27453\n",
+ "Discriminator Loss: tf.Tensor(0.72354066, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.6763052, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 27454\n",
+ "Discriminator Loss: tf.Tensor(0.9267316, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.5011379, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 27455\n",
+ "Discriminator Loss: tf.Tensor(0.6223818, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.91453964, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 27456\n",
+ "Discriminator Loss: tf.Tensor(0.38311762, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.0687466, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 27457\n",
+ "Discriminator Loss: tf.Tensor(0.72928536, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.6995016, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 27458\n",
+ "Discriminator Loss: tf.Tensor(0.5474645, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.5604019, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 27459\n",
+ "Discriminator Loss: tf.Tensor(0.9126322, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.1645483, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 27460\n",
+ "Discriminator Loss: tf.Tensor(0.44753414, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.8929184, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 27461\n",
+ "Discriminator Loss: tf.Tensor(0.8293048, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.1485177, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 27462\n",
+ "Discriminator Loss: tf.Tensor(0.5652292, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.75401944, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 27463\n",
+ "Discriminator Loss: tf.Tensor(0.3623969, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.3929237, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 27464\n",
+ "Discriminator Loss: tf.Tensor(0.7843843, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.3801832, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 27465\n",
+ "Discriminator Loss: tf.Tensor(1.1128204, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.7774754, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 27466\n",
+ "Discriminator Loss: tf.Tensor(0.5628371, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.67812705, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 27467\n",
+ "Discriminator Loss: tf.Tensor(0.6992233, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.4092988, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 27468\n",
+ "Discriminator Loss: tf.Tensor(0.5585959, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.67349654, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 27469\n",
+ "Discriminator Loss: tf.Tensor(0.8467402, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.2965254, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 27470\n",
+ "Discriminator Loss: tf.Tensor(0.5626546, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.0998996, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 27471\n",
+ "Discriminator Loss: tf.Tensor(0.52811694, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.2490153, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 27472\n",
+ "Discriminator Loss: tf.Tensor(0.59809566, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.7953878, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 27473\n",
+ "Discriminator Loss: tf.Tensor(1.4071553, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.148901, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 27474\n",
+ "Discriminator Loss: tf.Tensor(1.0205345, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.23561083, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 27475\n",
+ "Discriminator Loss: tf.Tensor(0.6183988, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.1527611, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 27476\n",
+ "Discriminator Loss: tf.Tensor(0.87757033, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.24697138, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 27477\n",
+ "Discriminator Loss: tf.Tensor(1.6739957, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.6798788, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 27478\n",
+ "Discriminator Loss: tf.Tensor(0.809622, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.4593149, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 27479\n",
+ "Discriminator Loss: tf.Tensor(0.79408956, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.2667189, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 27480\n",
+ "Discriminator Loss: tf.Tensor(0.3453067, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.86102384, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 27481\n",
+ "Discriminator Loss: tf.Tensor(0.6218126, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.5081024, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 27482\n",
+ "Discriminator Loss: tf.Tensor(0.7748926, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.36596873, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 27483\n",
+ "Discriminator Loss: tf.Tensor(1.0180743, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.464372, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 27484\n",
+ "Discriminator Loss: tf.Tensor(0.7041437, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.47197556, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 27485\n",
+ "Discriminator Loss: tf.Tensor(0.7234479, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.613584, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 27486\n",
+ "Discriminator Loss: tf.Tensor(0.7086512, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.70534205, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 27487\n",
+ "Discriminator Loss: tf.Tensor(0.5441412, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.2732117, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 27488\n",
+ "Discriminator Loss: tf.Tensor(0.39912373, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.81577873, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 27489\n",
+ "Discriminator Loss: tf.Tensor(1.2232754, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.9598624, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 27490\n",
+ "Discriminator Loss: tf.Tensor(0.6247753, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.6471928, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 27491\n",
+ "Discriminator Loss: tf.Tensor(0.8077054, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.1353022, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 27492\n",
+ "Discriminator Loss: tf.Tensor(0.42538023, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.6975016, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 27493\n",
+ "Discriminator Loss: tf.Tensor(1.2754862, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.8914782, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 27494\n",
+ "Discriminator Loss: tf.Tensor(0.8205073, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.5001438, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 27495\n",
+ "Discriminator Loss: tf.Tensor(1.0981207, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.5633913, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 27496\n",
+ "Discriminator Loss: tf.Tensor(0.8221781, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.323246, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 27497\n",
+ "Discriminator Loss: tf.Tensor(0.8980901, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.0460103, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 27498\n",
+ "Discriminator Loss: tf.Tensor(0.9249834, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.2740104, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 27499\n",
+ "Discriminator Loss: tf.Tensor(0.72675174, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.2678326, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 27500\n",
+ "Discriminator Loss: tf.Tensor(0.84503835, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.40236536, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 27501\n",
+ "Discriminator Loss: tf.Tensor(0.4077341, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.4998244, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 27502\n",
+ "Discriminator Loss: tf.Tensor(0.72008634, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.6030143, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 27503\n",
+ "Discriminator Loss: tf.Tensor(0.66570073, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.6569616, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 27504\n",
+ "Discriminator Loss: tf.Tensor(0.63879025, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.465417, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 27505\n",
+ "Discriminator Loss: tf.Tensor(0.7637713, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.8646735, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 27506\n",
+ "Discriminator Loss: tf.Tensor(0.4658671, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.6697584, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 27507\n",
+ "Discriminator Loss: tf.Tensor(0.9857704, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.8197535, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 27508\n",
+ "Discriminator Loss: tf.Tensor(0.58186597, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.0257592, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 27509\n",
+ "Discriminator Loss: tf.Tensor(0.7695592, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.0864748, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 27510\n",
+ "Discriminator Loss: tf.Tensor(0.94492006, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.3742925, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 27511\n",
+ "Discriminator Loss: tf.Tensor(0.71405274, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.6082199, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 27512\n",
+ "Discriminator Loss: tf.Tensor(0.6620519, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.1353072, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 27513\n",
+ "Discriminator Loss: tf.Tensor(0.83691853, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.0703061, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 27514\n",
+ "Discriminator Loss: tf.Tensor(0.5505077, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.1350332, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 27515\n",
+ "Discriminator Loss: tf.Tensor(0.66293925, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.222062, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 27516\n",
+ "Discriminator Loss: tf.Tensor(0.73237365, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.39322743, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 27517\n",
+ "Discriminator Loss: tf.Tensor(1.1383295, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.6241373, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 27518\n",
+ "Discriminator Loss: tf.Tensor(0.57575256, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.5472414, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 27519\n",
+ "Discriminator Loss: tf.Tensor(0.8361372, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.95670086, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 27520\n",
+ "Discriminator Loss: tf.Tensor(0.606178, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.66727525, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 27521\n",
+ "Discriminator Loss: tf.Tensor(1.5610305, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.2195504, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 27522\n",
+ "Discriminator Loss: tf.Tensor(0.6378466, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.5139528, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 27523\n",
+ "Discriminator Loss: tf.Tensor(1.2911938, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.050305, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 27524\n",
+ "Discriminator Loss: tf.Tensor(0.3699171, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.88218373, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 27525\n",
+ "Discriminator Loss: tf.Tensor(0.7076192, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.8044056, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 27526\n",
+ "Discriminator Loss: tf.Tensor(0.52563787, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.8052427, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 27527\n",
+ "Discriminator Loss: tf.Tensor(1.1243168, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.6852525, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 27528\n",
+ "Discriminator Loss: tf.Tensor(0.4437835, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.67305595, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 27529\n",
+ "Discriminator Loss: tf.Tensor(1.0228117, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.9171132, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 27530\n",
+ "Discriminator Loss: tf.Tensor(0.43598014, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.71398854, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 27531\n",
+ "Discriminator Loss: tf.Tensor(1.0930755, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.6596727, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 27532\n",
+ "Discriminator Loss: tf.Tensor(0.48043716, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.731627, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 27533\n",
+ "Discriminator Loss: tf.Tensor(0.9460053, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.0185136, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 27534\n",
+ "Discriminator Loss: tf.Tensor(0.6315781, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.56986547, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 27535\n",
+ "Discriminator Loss: tf.Tensor(1.1030612, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.6817487, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 27536\n",
+ "Discriminator Loss: tf.Tensor(0.6470133, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.59086955, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 27537\n",
+ "Discriminator Loss: tf.Tensor(0.717474, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.5644907, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 27538\n",
+ "Discriminator Loss: tf.Tensor(0.69979465, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.48412254, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 27539\n",
+ "Discriminator Loss: tf.Tensor(0.95278615, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.56835, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 27540\n",
+ "Discriminator Loss: tf.Tensor(0.49223265, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.60510033, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 27541\n",
+ "Discriminator Loss: tf.Tensor(1.054788, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.3515714, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 27542\n",
+ "Discriminator Loss: tf.Tensor(0.74477655, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.5552709, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 27543\n",
+ "Discriminator Loss: tf.Tensor(1.1464443, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.9507442, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 27544\n",
+ "Discriminator Loss: tf.Tensor(1.1878837, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.45833337, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 27545\n",
+ "Discriminator Loss: tf.Tensor(0.9854862, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.3164005, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 27546\n",
+ "Discriminator Loss: tf.Tensor(0.7479259, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.37753367, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 27547\n",
+ "Discriminator Loss: tf.Tensor(0.8144957, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.3814899, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 27548\n",
+ "Discriminator Loss: tf.Tensor(0.35572666, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.1901011, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 27549\n",
+ "Discriminator Loss: tf.Tensor(0.86116636, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.68374294, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 27550\n",
+ "Discriminator Loss: tf.Tensor(1.2345241, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.6125383, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 27551\n",
+ "Discriminator Loss: tf.Tensor(0.7874517, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.34911886, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 27552\n",
+ "Discriminator Loss: tf.Tensor(0.77472335, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.4228879, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 27553\n",
+ "Discriminator Loss: tf.Tensor(0.63766617, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.51730686, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 27554\n",
+ "Discriminator Loss: tf.Tensor(0.6983953, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.7001095, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 27555\n",
+ "Discriminator Loss: tf.Tensor(0.5381412, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.52340794, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 27556\n",
+ "Discriminator Loss: tf.Tensor(0.98484254, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.4736029, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 27557\n",
+ "Discriminator Loss: tf.Tensor(0.5924144, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.87759835, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 27558\n",
+ "Discriminator Loss: tf.Tensor(0.7163605, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.61423, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 27559\n",
+ "Discriminator Loss: tf.Tensor(0.5101423, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.0347797, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 27560\n",
+ "Discriminator Loss: tf.Tensor(0.42668268, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.98431516, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 27561\n",
+ "Discriminator Loss: tf.Tensor(0.8982173, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.5103039, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 27562\n",
+ "Discriminator Loss: tf.Tensor(1.0191145, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.37791955, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 27563\n",
+ "Discriminator Loss: tf.Tensor(0.48292106, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.5726727, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 27564\n",
+ "Discriminator Loss: tf.Tensor(0.72418696, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.5518332, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 27565\n",
+ "Discriminator Loss: tf.Tensor(0.9796067, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.9396025, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 27566\n",
+ "Discriminator Loss: tf.Tensor(0.8609065, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.5636087, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 27567\n",
+ "Discriminator Loss: tf.Tensor(0.8412771, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.1703863, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 27568\n",
+ "Discriminator Loss: tf.Tensor(0.4360117, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.5876055, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 27569\n",
+ "Discriminator Loss: tf.Tensor(2.0294747, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.1696026, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 27570\n",
+ "Discriminator Loss: tf.Tensor(0.3704476, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.7296438, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 27571\n",
+ "Discriminator Loss: tf.Tensor(1.0461491, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.2733446, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 27572\n",
+ "Discriminator Loss: tf.Tensor(0.83299, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.2035852, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 27573\n",
+ "Discriminator Loss: tf.Tensor(0.9572735, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.8251172, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 27574\n",
+ "Discriminator Loss: tf.Tensor(0.62147236, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.4997318, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 27575\n",
+ "Discriminator Loss: tf.Tensor(0.5585055, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.0380697, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 27576\n",
+ "Discriminator Loss: tf.Tensor(0.6128241, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.4338937, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 27577\n",
+ "Discriminator Loss: tf.Tensor(0.36939707, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.6880161, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 27578\n",
+ "Discriminator Loss: tf.Tensor(2.5094244, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.91686, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 27579\n",
+ "Discriminator Loss: tf.Tensor(0.79950136, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.5250331, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 27580\n",
+ "Discriminator Loss: tf.Tensor(0.5812924, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.1811738, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 27581\n",
+ "Discriminator Loss: tf.Tensor(0.27087522, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.9729423, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 27582\n",
+ "Discriminator Loss: tf.Tensor(0.45742404, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.2354704, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 27583\n",
+ "Discriminator Loss: tf.Tensor(0.8374154, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.54032797, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 27584\n",
+ "Discriminator Loss: tf.Tensor(0.8296257, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.1903677, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 27585\n",
+ "Discriminator Loss: tf.Tensor(0.6738708, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.8008659, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 27586\n",
+ "Discriminator Loss: tf.Tensor(0.26564473, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.6832991, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 27587\n",
+ "Discriminator Loss: tf.Tensor(0.3780526, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.9601205, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 27588\n",
+ "Discriminator Loss: tf.Tensor(1.3396999, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.9547058, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 27589\n",
+ "Discriminator Loss: tf.Tensor(0.7330878, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.48552242, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 27590\n",
+ "Discriminator Loss: tf.Tensor(1.05504, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.4021126, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 27591\n",
+ "Discriminator Loss: tf.Tensor(0.7048024, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.52515966, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 27592\n",
+ "Discriminator Loss: tf.Tensor(0.83969104, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.5923697, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 27593\n",
+ "Discriminator Loss: tf.Tensor(0.46559858, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.68375105, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 27594\n",
+ "Discriminator Loss: tf.Tensor(0.8252498, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.7245051, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 27595\n",
+ "Discriminator Loss: tf.Tensor(1.0380545, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.35219, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 27596\n",
+ "Discriminator Loss: tf.Tensor(1.1314702, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.8488041, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 27597\n",
+ "Discriminator Loss: tf.Tensor(0.43055442, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.80683374, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 27598\n",
+ "Discriminator Loss: tf.Tensor(1.2412868, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.8122791, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 27599\n",
+ "Discriminator Loss: tf.Tensor(0.7238257, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.79504377, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 27600\n",
+ "Discriminator Loss: tf.Tensor(0.37860414, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.91967875, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 27601\n",
+ "Discriminator Loss: tf.Tensor(0.70963675, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.126656, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 27602\n",
+ "Discriminator Loss: tf.Tensor(0.5993993, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.029368, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 27603\n",
+ "Discriminator Loss: tf.Tensor(0.7197124, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.5431534, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 27604\n",
+ "Discriminator Loss: tf.Tensor(0.6617197, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.38294342, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 27605\n",
+ "Discriminator Loss: tf.Tensor(0.6575751, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.7841023, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 27606\n",
+ "Discriminator Loss: tf.Tensor(0.7786582, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.4954534, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 27607\n",
+ "Discriminator Loss: tf.Tensor(1.1828473, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.4039245, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 27608\n",
+ "Discriminator Loss: tf.Tensor(0.43220705, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.0578736, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 27609\n",
+ "Discriminator Loss: tf.Tensor(0.6030745, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.52944237, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 27610\n",
+ "Discriminator Loss: tf.Tensor(1.1933591, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.7083706, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 27611\n",
+ "Discriminator Loss: tf.Tensor(0.6785756, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.4850256, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 27612\n",
+ "Discriminator Loss: tf.Tensor(0.28241086, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.2294412, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 27613\n",
+ "Discriminator Loss: tf.Tensor(0.97725725, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.0952055, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 27614\n",
+ "Discriminator Loss: tf.Tensor(0.70589614, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.5765293, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 27615\n",
+ "Discriminator Loss: tf.Tensor(1.203675, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.5887699, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 27616\n",
+ "Discriminator Loss: tf.Tensor(1.0255462, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.07739741, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 27617\n",
+ "Discriminator Loss: tf.Tensor(0.99431956, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.3784437, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 27618\n",
+ "Discriminator Loss: tf.Tensor(1.1287267, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.22840773, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 27619\n",
+ "Discriminator Loss: tf.Tensor(0.7150716, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.2231697, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 27620\n",
+ "Discriminator Loss: tf.Tensor(0.6221327, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.6193375, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 27621\n",
+ "Discriminator Loss: tf.Tensor(0.49853277, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.6416755, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 27622\n",
+ "Discriminator Loss: tf.Tensor(0.8267728, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.93639046, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 27623\n",
+ "Discriminator Loss: tf.Tensor(0.8794985, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.7204661, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 27624\n",
+ "Discriminator Loss: tf.Tensor(0.67154026, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.8794567, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 27625\n",
+ "Discriminator Loss: tf.Tensor(0.80527174, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.0717765, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 27626\n",
+ "Discriminator Loss: tf.Tensor(0.5623227, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.5481599, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 27627\n",
+ "Discriminator Loss: tf.Tensor(0.90372026, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.9370409, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 27628\n",
+ "Discriminator Loss: tf.Tensor(0.5633176, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.81695294, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 27629\n",
+ "Discriminator Loss: tf.Tensor(0.3471583, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.1465882, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 27630\n",
+ "Discriminator Loss: tf.Tensor(0.92142045, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.47684383, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 27631\n",
+ "Discriminator Loss: tf.Tensor(0.9477236, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.6628562, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 27632\n",
+ "Discriminator Loss: tf.Tensor(0.8011726, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.27457142, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 27633\n",
+ "Discriminator Loss: tf.Tensor(1.1591089, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.7491034, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 27634\n",
+ "Discriminator Loss: tf.Tensor(0.616089, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.41320738, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 27635\n",
+ "Discriminator Loss: tf.Tensor(1.2047032, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.2632042, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 27636\n",
+ "Discriminator Loss: tf.Tensor(0.374139, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.87229985, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 27637\n",
+ "Discriminator Loss: tf.Tensor(0.53537506, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.3584074, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 27638\n",
+ "Discriminator Loss: tf.Tensor(0.66081804, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.6386679, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 27639\n",
+ "Discriminator Loss: tf.Tensor(0.89641297, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.7006168, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 27640\n",
+ "Discriminator Loss: tf.Tensor(0.45448306, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.8072621, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 27641\n",
+ "Discriminator Loss: tf.Tensor(1.3230293, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.8317727, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 27642\n",
+ "Discriminator Loss: tf.Tensor(1.1047479, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.07471647, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 27643\n",
+ "Discriminator Loss: tf.Tensor(1.1369631, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.3393534, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 27644\n",
+ "Discriminator Loss: tf.Tensor(0.6918364, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.58980566, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 27645\n",
+ "Discriminator Loss: tf.Tensor(0.48961228, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.5859108, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 27646\n",
+ "Discriminator Loss: tf.Tensor(0.85271996, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.40885663, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 27647\n",
+ "Discriminator Loss: tf.Tensor(0.50279176, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.50481, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 27648\n",
+ "Discriminator Loss: tf.Tensor(0.5693338, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.3934199, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 27649\n",
+ "Discriminator Loss: tf.Tensor(0.4584327, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.85721356, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 27650\n",
+ "Discriminator Loss: tf.Tensor(0.358584, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.4664291, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 27651\n",
+ "Discriminator Loss: tf.Tensor(0.4792371, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.9828603, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 27652\n",
+ "Discriminator Loss: tf.Tensor(1.5269821, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.721447, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 27653\n",
+ "Discriminator Loss: tf.Tensor(0.9684164, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.2996205, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 27654\n",
+ "Discriminator Loss: tf.Tensor(0.9443401, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.0302342, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 27655\n",
+ "Discriminator Loss: tf.Tensor(0.62875897, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.5957811, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 27656\n",
+ "Discriminator Loss: tf.Tensor(0.9680065, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.4648825, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 27657\n",
+ "Discriminator Loss: tf.Tensor(0.5330734, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.9005043, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 27658\n",
+ "Discriminator Loss: tf.Tensor(0.5239283, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.4857979, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 27659\n",
+ "Discriminator Loss: tf.Tensor(0.6024604, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.7877066, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 27660\n",
+ "Discriminator Loss: tf.Tensor(0.9622329, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.474659, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 27661\n",
+ "Discriminator Loss: tf.Tensor(1.1946409, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.039188445, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 27662\n",
+ "Discriminator Loss: tf.Tensor(0.892102, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.2606617, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 27663\n",
+ "Discriminator Loss: tf.Tensor(0.6407608, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.9120373, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 27664\n",
+ "Discriminator Loss: tf.Tensor(0.5095014, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.2096872, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 27665\n",
+ "Discriminator Loss: tf.Tensor(0.5252016, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.2674903, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 27666\n",
+ "Discriminator Loss: tf.Tensor(0.6140379, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.5007276, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 27667\n",
+ "Discriminator Loss: tf.Tensor(1.4254329, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.8933758, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 27668\n",
+ "Discriminator Loss: tf.Tensor(0.7358892, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.5532689, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 27669\n",
+ "Discriminator Loss: tf.Tensor(0.75813186, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.9637974, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 27670\n",
+ "Discriminator Loss: tf.Tensor(0.8085126, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.62145776, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 27671\n",
+ "Discriminator Loss: tf.Tensor(1.5819844, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.9818825, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 27672\n",
+ "Discriminator Loss: tf.Tensor(0.6655955, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.43513212, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 27673\n",
+ "Discriminator Loss: tf.Tensor(0.999781, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.0171417, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 27674\n",
+ "Discriminator Loss: tf.Tensor(0.86096126, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.24423099, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 27675\n",
+ "Discriminator Loss: tf.Tensor(0.85934186, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.8690562, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 27676\n",
+ "Discriminator Loss: tf.Tensor(0.46961546, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.74801236, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 27677\n",
+ "Discriminator Loss: tf.Tensor(0.927534, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.4698534, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 27678\n",
+ "Discriminator Loss: tf.Tensor(0.59782666, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.64929163, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 27679\n",
+ "Discriminator Loss: tf.Tensor(0.7440269, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.7320065, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 27680\n",
+ "Discriminator Loss: tf.Tensor(0.8021728, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.34290066, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 27681\n",
+ "Discriminator Loss: tf.Tensor(0.8732492, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.5335398, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 27682\n",
+ "Discriminator Loss: tf.Tensor(0.75489354, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.6406047, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 27683\n",
+ "Discriminator Loss: tf.Tensor(0.5139093, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.5143309, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 27684\n",
+ "Discriminator Loss: tf.Tensor(0.63373744, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.5785379, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 27685\n",
+ "Discriminator Loss: tf.Tensor(1.2994205, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.2478426, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 27686\n",
+ "Discriminator Loss: tf.Tensor(0.65404165, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.48400593, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 27687\n",
+ "Discriminator Loss: tf.Tensor(0.60428137, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.451243, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 27688\n",
+ "Discriminator Loss: tf.Tensor(0.7450751, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.49427423, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 27689\n",
+ "Discriminator Loss: tf.Tensor(0.66782033, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.9990078, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 27690\n",
+ "Discriminator Loss: tf.Tensor(0.35470262, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.0410829, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 27691\n",
+ "Discriminator Loss: tf.Tensor(0.4566068, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.98902225, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 27692\n",
+ "Discriminator Loss: tf.Tensor(0.61414593, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.1187724, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 27693\n",
+ "Discriminator Loss: tf.Tensor(1.28309, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.0686628, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 27694\n",
+ "Discriminator Loss: tf.Tensor(0.69423735, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.013492, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 27695\n",
+ "Discriminator Loss: tf.Tensor(0.5934516, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.85033077, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 27696\n",
+ "Discriminator Loss: tf.Tensor(0.6860037, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.1446561, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 27697\n",
+ "Discriminator Loss: tf.Tensor(0.44769222, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.8758133, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 27698\n",
+ "Discriminator Loss: tf.Tensor(1.1921146, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.1377409, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 27699\n",
+ "Discriminator Loss: tf.Tensor(0.9279591, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.37582436, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 27700\n",
+ "Discriminator Loss: tf.Tensor(0.4224797, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.2231611, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 27701\n",
+ "Discriminator Loss: tf.Tensor(0.51965016, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.74214125, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 27702\n",
+ "Discriminator Loss: tf.Tensor(0.77580714, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.7043012, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 27703\n",
+ "Discriminator Loss: tf.Tensor(0.6973471, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.37186742, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 27704\n",
+ "Discriminator Loss: tf.Tensor(1.0003757, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.6477362, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 27705\n",
+ "Discriminator Loss: tf.Tensor(0.56797355, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.0883821, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 27706\n",
+ "Discriminator Loss: tf.Tensor(0.3747409, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.2254934, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 27707\n",
+ "Discriminator Loss: tf.Tensor(0.60676545, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.1258224, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 27708\n",
+ "Discriminator Loss: tf.Tensor(0.65948486, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.1332842, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 27709\n",
+ "Discriminator Loss: tf.Tensor(1.176753, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.3460274, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 27710\n",
+ "Discriminator Loss: tf.Tensor(0.5438303, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.99907637, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 27711\n",
+ "Discriminator Loss: tf.Tensor(0.9554659, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.3742121, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 27712\n",
+ "Discriminator Loss: tf.Tensor(0.90426755, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.4180211, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 27713\n",
+ "Discriminator Loss: tf.Tensor(0.7040493, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.4684964, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 27714\n",
+ "Discriminator Loss: tf.Tensor(0.9445944, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.63775706, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 27715\n",
+ "Discriminator Loss: tf.Tensor(0.8107203, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.0300122, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 27716\n",
+ "Discriminator Loss: tf.Tensor(0.6488875, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.0486928, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 27717\n",
+ "Discriminator Loss: tf.Tensor(0.3513554, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.837039, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 27718\n",
+ "Discriminator Loss: tf.Tensor(1.1700706, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.905488, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 27719\n",
+ "Discriminator Loss: tf.Tensor(0.7110483, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.35840777, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 27720\n",
+ "Discriminator Loss: tf.Tensor(0.68733406, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.350408, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 27721\n",
+ "Discriminator Loss: tf.Tensor(0.5997204, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.43599847, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 27722\n",
+ "Discriminator Loss: tf.Tensor(0.7641765, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.1982586, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 27723\n",
+ "Discriminator Loss: tf.Tensor(0.22919208, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.1918474, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 27724\n",
+ "Discriminator Loss: tf.Tensor(0.8066379, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.5508442, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 27725\n",
+ "Discriminator Loss: tf.Tensor(1.0978189, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.21341367, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 27726\n",
+ "Discriminator Loss: tf.Tensor(0.76090616, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.5466098, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 27727\n",
+ "Discriminator Loss: tf.Tensor(1.0402298, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.3467132, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 27728\n",
+ "Discriminator Loss: tf.Tensor(0.82124245, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.7625843, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 27729\n",
+ "Discriminator Loss: tf.Tensor(0.5819052, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.6196566, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 27730\n",
+ "Discriminator Loss: tf.Tensor(0.4095798, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.5379213, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 27731\n",
+ "Discriminator Loss: tf.Tensor(0.25344756, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.8699581, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 27732\n",
+ "Discriminator Loss: tf.Tensor(1.3588517, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.9105994, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 27733\n",
+ "Discriminator Loss: tf.Tensor(0.70151114, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.4570975, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 27734\n",
+ "Discriminator Loss: tf.Tensor(0.8459178, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.6492748, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 27735\n",
+ "Discriminator Loss: tf.Tensor(0.60749936, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.6009788, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 27736\n",
+ "Discriminator Loss: tf.Tensor(1.3563054, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.9392341, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 27737\n",
+ "Discriminator Loss: tf.Tensor(0.38383847, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.8797731, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 27738\n",
+ "Discriminator Loss: tf.Tensor(0.73575747, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.0271788, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 27739\n",
+ "Discriminator Loss: tf.Tensor(0.59625185, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.1343946, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 27740\n",
+ "Discriminator Loss: tf.Tensor(0.47932532, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.70964986, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 27741\n",
+ "Discriminator Loss: tf.Tensor(0.6699016, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.7876819, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 27742\n",
+ "Discriminator Loss: tf.Tensor(0.48087513, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.7771469, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 27743\n",
+ "Discriminator Loss: tf.Tensor(0.6209289, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.3871769, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 27744\n",
+ "Discriminator Loss: tf.Tensor(0.49430153, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.5341689, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 27745\n",
+ "Discriminator Loss: tf.Tensor(1.1420164, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.070919, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 27746\n",
+ "Discriminator Loss: tf.Tensor(0.87706476, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.35513723, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 27747\n",
+ "Discriminator Loss: tf.Tensor(1.254786, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.8208519, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 27748\n",
+ "Discriminator Loss: tf.Tensor(0.5546982, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.66152054, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 27749\n",
+ "Discriminator Loss: tf.Tensor(0.3439425, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.9908244, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 27750\n",
+ "Discriminator Loss: tf.Tensor(0.60031307, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.5720263, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 27751\n",
+ "Discriminator Loss: tf.Tensor(0.7113647, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.37759566, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 27752\n",
+ "Discriminator Loss: tf.Tensor(1.2084272, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.6882315, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 27753\n",
+ "Discriminator Loss: tf.Tensor(0.5774209, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.53218955, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 27754\n",
+ "Discriminator Loss: tf.Tensor(0.7624873, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.8462108, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 27755\n",
+ "Discriminator Loss: tf.Tensor(0.514596, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.8055945, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 27756\n",
+ "Discriminator Loss: tf.Tensor(1.0612934, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.0718633, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 27757\n",
+ "Discriminator Loss: tf.Tensor(0.86408275, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.7658065, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 27758\n",
+ "Discriminator Loss: tf.Tensor(1.085464, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.847421, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 27759\n",
+ "Discriminator Loss: tf.Tensor(0.4435995, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.61463577, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 27760\n",
+ "Discriminator Loss: tf.Tensor(1.0436153, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.8698982, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 27761\n",
+ "Discriminator Loss: tf.Tensor(0.24150133, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.9947999, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 27762\n",
+ "Discriminator Loss: tf.Tensor(0.8129215, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.39076114, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 27763\n",
+ "Discriminator Loss: tf.Tensor(0.900026, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.6930264, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 27764\n",
+ "Discriminator Loss: tf.Tensor(0.74076843, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.49624038, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 27765\n",
+ "Discriminator Loss: tf.Tensor(0.79128784, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.6579657, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 27766\n",
+ "Discriminator Loss: tf.Tensor(0.4128063, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.82889146, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 27767\n",
+ "Discriminator Loss: tf.Tensor(1.0347469, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.7892485, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 27768\n",
+ "Discriminator Loss: tf.Tensor(0.4270362, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.65358466, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 27769\n",
+ "Discriminator Loss: tf.Tensor(0.36119533, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.2205548, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 27770\n",
+ "Discriminator Loss: tf.Tensor(0.47416905, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.76777285, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 27771\n",
+ "Discriminator Loss: tf.Tensor(1.4825072, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.263584, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 27772\n",
+ "Discriminator Loss: tf.Tensor(0.5196207, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.74203175, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 27773\n",
+ "Discriminator Loss: tf.Tensor(0.9775188, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.0736085, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 27774\n",
+ "Discriminator Loss: tf.Tensor(0.26133263, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.0539229, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 27775\n",
+ "Discriminator Loss: tf.Tensor(0.55050516, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.2122844, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 27776\n",
+ "Discriminator Loss: tf.Tensor(0.5912227, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.0244468, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 27777\n",
+ "Discriminator Loss: tf.Tensor(0.48751613, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.75128174, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 27778\n",
+ "Discriminator Loss: tf.Tensor(1.498769, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.5093043, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 27779\n",
+ "Discriminator Loss: tf.Tensor(0.9587417, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.33080995, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 27780\n",
+ "Discriminator Loss: tf.Tensor(1.1173925, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.1690811, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 27781\n",
+ "Discriminator Loss: tf.Tensor(0.38424978, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.95150423, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 27782\n",
+ "Discriminator Loss: tf.Tensor(0.5330066, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.85607845, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 27783\n",
+ "Discriminator Loss: tf.Tensor(0.56409067, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.3711215, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 27784\n",
+ "Discriminator Loss: tf.Tensor(0.7039173, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.9890537, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 27785\n",
+ "Discriminator Loss: tf.Tensor(0.57526207, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.5860961, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 27786\n",
+ "Discriminator Loss: tf.Tensor(0.66519046, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.6958188, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 27787\n",
+ "Discriminator Loss: tf.Tensor(0.37937412, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.9987607, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 27788\n",
+ "Discriminator Loss: tf.Tensor(0.5840529, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.79665893, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 27789\n",
+ "Discriminator Loss: tf.Tensor(0.8787432, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.7575932, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 27790\n",
+ "Discriminator Loss: tf.Tensor(0.83199495, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.2734235, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 27791\n",
+ "Discriminator Loss: tf.Tensor(1.2648184, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.910647, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 27792\n",
+ "Discriminator Loss: tf.Tensor(1.3719718, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.08097752, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 27793\n",
+ "Discriminator Loss: tf.Tensor(0.7987658, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.8424773, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 27794\n",
+ "Discriminator Loss: tf.Tensor(0.38503265, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.0716838, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 27795\n",
+ "Discriminator Loss: tf.Tensor(0.5347074, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.81801146, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 27796\n",
+ "Discriminator Loss: tf.Tensor(1.3661718, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.0630016, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 27797\n",
+ "Discriminator Loss: tf.Tensor(0.7176574, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.426595, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 27798\n",
+ "Discriminator Loss: tf.Tensor(0.5528718, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.4987606, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 27799\n",
+ "Discriminator Loss: tf.Tensor(0.28468245, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.1503223, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 27800\n",
+ "Discriminator Loss: tf.Tensor(0.9838197, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.8005337, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 27801\n",
+ "Discriminator Loss: tf.Tensor(1.0288916, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.2845715, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 27802\n",
+ "Discriminator Loss: tf.Tensor(0.8079345, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.5258099, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 27803\n",
+ "Discriminator Loss: tf.Tensor(0.69331455, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.36976743, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 27804\n",
+ "Discriminator Loss: tf.Tensor(0.7206727, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.778792, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 27805\n",
+ "Discriminator Loss: tf.Tensor(0.49797332, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.865998, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 27806\n",
+ "Discriminator Loss: tf.Tensor(0.6768836, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.5809399, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 27807\n",
+ "Discriminator Loss: tf.Tensor(0.3807254, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.972523, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 27808\n",
+ "Discriminator Loss: tf.Tensor(0.7542173, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.1528622, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 27809\n",
+ "Discriminator Loss: tf.Tensor(0.79406714, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.5078444, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 27810\n",
+ "Discriminator Loss: tf.Tensor(0.7427158, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.37533593, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 27811\n",
+ "Discriminator Loss: tf.Tensor(0.77349365, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.4473265, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 27812\n",
+ "Discriminator Loss: tf.Tensor(0.20328349, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.3920021, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 27813\n",
+ "Discriminator Loss: tf.Tensor(0.36499244, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.99298173, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 27814\n",
+ "Discriminator Loss: tf.Tensor(1.6161342, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.59678, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 27815\n",
+ "Discriminator Loss: tf.Tensor(0.9238192, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.17505293, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 27816\n",
+ "Discriminator Loss: tf.Tensor(0.8405316, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.1455501, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 27817\n",
+ "Discriminator Loss: tf.Tensor(0.48784918, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.77401, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 27818\n",
+ "Discriminator Loss: tf.Tensor(0.69960713, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.8025049, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 27819\n",
+ "Discriminator Loss: tf.Tensor(0.7352326, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.43589592, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 27820\n",
+ "Discriminator Loss: tf.Tensor(1.511689, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.3466259, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 27821\n",
+ "Discriminator Loss: tf.Tensor(0.8901403, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.367901, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 27822\n",
+ "Discriminator Loss: tf.Tensor(1.5085583, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.6353155, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 27823\n",
+ "Discriminator Loss: tf.Tensor(0.9046519, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.4867189, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 27824\n",
+ "Discriminator Loss: tf.Tensor(0.31067634, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.0194771, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 27825\n",
+ "Discriminator Loss: tf.Tensor(0.69877994, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.3463044, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 27826\n",
+ "Discriminator Loss: tf.Tensor(0.5727228, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.56998426, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 27827\n",
+ "Discriminator Loss: tf.Tensor(0.5104984, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.8953854, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 27828\n",
+ "Discriminator Loss: tf.Tensor(0.68700606, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.8723298, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 27829\n",
+ "Discriminator Loss: tf.Tensor(0.6345382, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.94460243, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 27830\n",
+ "Discriminator Loss: tf.Tensor(0.8444867, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.5848855, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 27831\n",
+ "Discriminator Loss: tf.Tensor(0.99030685, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.3572769, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 27832\n",
+ "Discriminator Loss: tf.Tensor(0.6946322, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.345686, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 27833\n",
+ "Discriminator Loss: tf.Tensor(0.56112504, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.8275757, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 27834\n",
+ "Discriminator Loss: tf.Tensor(0.9854194, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.1822976, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 27835\n",
+ "Discriminator Loss: tf.Tensor(0.86927116, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.7199603, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 27836\n",
+ "Discriminator Loss: tf.Tensor(0.437737, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.3774122, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 27837\n",
+ "Discriminator Loss: tf.Tensor(0.53921026, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.9633064, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 27838\n",
+ "Discriminator Loss: tf.Tensor(0.763885, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.3228456, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 27839\n",
+ "Discriminator Loss: tf.Tensor(0.98131645, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.27677375, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 27840\n",
+ "Discriminator Loss: tf.Tensor(1.0001717, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.6334792, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 27841\n",
+ "Discriminator Loss: tf.Tensor(0.8151631, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.2662577, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 27842\n",
+ "Discriminator Loss: tf.Tensor(1.6296153, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.804856, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 27843\n",
+ "Discriminator Loss: tf.Tensor(0.572682, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.57504505, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 27844\n",
+ "Discriminator Loss: tf.Tensor(0.68181044, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.83406717, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 27845\n",
+ "Discriminator Loss: tf.Tensor(0.89764744, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.4092075, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 27846\n",
+ "Discriminator Loss: tf.Tensor(1.0566609, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.09402511, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 27847\n",
+ "Discriminator Loss: tf.Tensor(1.0906984, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.533062, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 27848\n",
+ "Discriminator Loss: tf.Tensor(0.8196272, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.35453376, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 27849\n",
+ "Discriminator Loss: tf.Tensor(0.4324574, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.014537, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 27850\n",
+ "Discriminator Loss: tf.Tensor(0.43531862, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.3935275, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 27851\n",
+ "Discriminator Loss: tf.Tensor(0.6461817, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.46443236, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 27852\n",
+ "Discriminator Loss: tf.Tensor(0.59768504, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.7658195, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 27853\n",
+ "Discriminator Loss: tf.Tensor(0.40046626, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.9907276, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 27854\n",
+ "Discriminator Loss: tf.Tensor(0.38297504, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.1767946, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 27855\n",
+ "Discriminator Loss: tf.Tensor(0.90130067, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.3575102, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 27856\n",
+ "Discriminator Loss: tf.Tensor(0.4252795, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.7371278, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 27857\n",
+ "Discriminator Loss: tf.Tensor(1.1580477, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.9759804, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 27858\n",
+ "Discriminator Loss: tf.Tensor(0.64448875, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.56584865, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 27859\n",
+ "Discriminator Loss: tf.Tensor(0.28952813, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.6897849, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 27860\n",
+ "Discriminator Loss: tf.Tensor(0.6883861, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.91278154, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 27861\n",
+ "Discriminator Loss: tf.Tensor(1.43784, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.4444591, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 27862\n",
+ "Discriminator Loss: tf.Tensor(1.1701598, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.1967617, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 27863\n",
+ "Discriminator Loss: tf.Tensor(0.69188863, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.90968066, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 27864\n",
+ "Discriminator Loss: tf.Tensor(0.52301925, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.835399, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 27865\n",
+ "Discriminator Loss: tf.Tensor(0.70783126, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.4031175, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 27866\n",
+ "Discriminator Loss: tf.Tensor(0.68256795, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.50329584, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 27867\n",
+ "Discriminator Loss: tf.Tensor(1.3189908, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.869759, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 27868\n",
+ "Discriminator Loss: tf.Tensor(0.93420637, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.11605302, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 27869\n",
+ "Discriminator Loss: tf.Tensor(1.0837026, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.5022365, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 27870\n",
+ "Discriminator Loss: tf.Tensor(0.9427823, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.3950992, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 27871\n",
+ "Discriminator Loss: tf.Tensor(0.79478014, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.983701, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 27872\n",
+ "Discriminator Loss: tf.Tensor(0.9976615, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.34165588, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 27873\n",
+ "Discriminator Loss: tf.Tensor(0.6274797, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.342856, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 27874\n",
+ "Discriminator Loss: tf.Tensor(0.77024025, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.38179204, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 27875\n",
+ "Discriminator Loss: tf.Tensor(0.9996116, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.4207369, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 27876\n",
+ "Discriminator Loss: tf.Tensor(0.8008711, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.28168842, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 27877\n",
+ "Discriminator Loss: tf.Tensor(1.1021248, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.3626419, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 27878\n",
+ "Discriminator Loss: tf.Tensor(0.3960752, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.8227145, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 27879\n",
+ "Discriminator Loss: tf.Tensor(0.49471417, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.0740132, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 27880\n",
+ "Discriminator Loss: tf.Tensor(1.0389587, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.3861104, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 27881\n",
+ "Discriminator Loss: tf.Tensor(0.47227836, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.0279523, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 27882\n",
+ "Discriminator Loss: tf.Tensor(0.36513522, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.8056102, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 27883\n",
+ "Discriminator Loss: tf.Tensor(1.1945171, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.7651209, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 27884\n",
+ "Discriminator Loss: tf.Tensor(0.58080786, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.5638154, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 27885\n",
+ "Discriminator Loss: tf.Tensor(1.1684526, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.5449156, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 27886\n",
+ "Discriminator Loss: tf.Tensor(0.825125, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.40998554, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 27887\n",
+ "Discriminator Loss: tf.Tensor(0.6612538, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.4111589, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 27888\n",
+ "Discriminator Loss: tf.Tensor(0.6569109, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.57409436, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 27889\n",
+ "Discriminator Loss: tf.Tensor(0.9966512, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.0331032, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 27890\n",
+ "Discriminator Loss: tf.Tensor(0.43560752, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.7422219, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 27891\n",
+ "Discriminator Loss: tf.Tensor(0.70911187, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.7297769, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 27892\n",
+ "Discriminator Loss: tf.Tensor(0.51081586, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.7415704, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 27893\n",
+ "Discriminator Loss: tf.Tensor(0.7733068, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.581687, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 27894\n",
+ "Discriminator Loss: tf.Tensor(0.37375283, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.74118596, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 27895\n",
+ "Discriminator Loss: tf.Tensor(1.0952501, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.9755292, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 27896\n",
+ "Discriminator Loss: tf.Tensor(0.44993728, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.6887267, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 27897\n",
+ "Discriminator Loss: tf.Tensor(1.084958, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.3504272, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 27898\n",
+ "Discriminator Loss: tf.Tensor(0.49945247, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.7437765, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 27899\n",
+ "Discriminator Loss: tf.Tensor(0.61143816, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.7020384, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 27900\n",
+ "Discriminator Loss: tf.Tensor(0.6352592, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.7322827, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 27901\n",
+ "Discriminator Loss: tf.Tensor(0.48605952, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.2756168, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 27902\n",
+ "Discriminator Loss: tf.Tensor(1.0994593, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.2456989, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 27903\n",
+ "Discriminator Loss: tf.Tensor(0.7692693, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.7574275, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 27904\n",
+ "Discriminator Loss: tf.Tensor(0.78855145, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.907185, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 27905\n",
+ "Discriminator Loss: tf.Tensor(0.76784194, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.3170612, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 27906\n",
+ "Discriminator Loss: tf.Tensor(0.94784236, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.8958105, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 27907\n",
+ "Discriminator Loss: tf.Tensor(0.65367675, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.44650355, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 27908\n",
+ "Discriminator Loss: tf.Tensor(0.81334996, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.8972641, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 27909\n",
+ "Discriminator Loss: tf.Tensor(0.5744533, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.763233, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 27910\n",
+ "Discriminator Loss: tf.Tensor(1.1150016, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.9419479, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 27911\n",
+ "Discriminator Loss: tf.Tensor(0.76772285, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.3336414, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 27912\n",
+ "Discriminator Loss: tf.Tensor(0.31350225, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.4821182, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 27913\n",
+ "Discriminator Loss: tf.Tensor(0.46367717, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.2793349, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 27914\n",
+ "Discriminator Loss: tf.Tensor(0.64873743, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.9503233, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 27915\n",
+ "Discriminator Loss: tf.Tensor(0.7036495, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.6093341, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 27916\n",
+ "Discriminator Loss: tf.Tensor(0.6760986, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.740603, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 27917\n",
+ "Discriminator Loss: tf.Tensor(0.33373308, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.627274, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 27918\n",
+ "Discriminator Loss: tf.Tensor(0.36434713, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.92058307, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 27919\n",
+ "Discriminator Loss: tf.Tensor(0.7530913, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.7654518, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 27920\n",
+ "Discriminator Loss: tf.Tensor(0.82594687, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.29191014, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 27921\n",
+ "Discriminator Loss: tf.Tensor(1.8331397, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.4748701, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 27922\n",
+ "Discriminator Loss: tf.Tensor(0.44063357, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.7172861, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 27923\n",
+ "Discriminator Loss: tf.Tensor(1.1571181, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.0925229, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 27924\n",
+ "Discriminator Loss: tf.Tensor(1.0065541, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.25139812, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 27925\n",
+ "Discriminator Loss: tf.Tensor(0.80611455, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.9977649, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 27926\n",
+ "Discriminator Loss: tf.Tensor(0.7868643, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.94106585, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 27927\n",
+ "Discriminator Loss: tf.Tensor(0.4545993, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.0939373, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 27928\n",
+ "Discriminator Loss: tf.Tensor(1.0246501, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.7705383, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 27929\n",
+ "Discriminator Loss: tf.Tensor(0.6482247, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.4987705, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 27930\n",
+ "Discriminator Loss: tf.Tensor(0.97474957, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.63836914, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 27931\n",
+ "Discriminator Loss: tf.Tensor(0.7085476, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.6000055, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 27932\n",
+ "Discriminator Loss: tf.Tensor(0.7200204, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.43644604, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 27933\n",
+ "Discriminator Loss: tf.Tensor(0.6787813, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.4557767, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 27934\n",
+ "Discriminator Loss: tf.Tensor(0.6496971, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.1033236, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 27935\n",
+ "Discriminator Loss: tf.Tensor(0.7239585, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.0662493, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 27936\n",
+ "Discriminator Loss: tf.Tensor(0.7536946, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.85765076, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 27937\n",
+ "Discriminator Loss: tf.Tensor(0.90451056, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.9220316, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 27938\n",
+ "Discriminator Loss: tf.Tensor(1.170455, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.1056354, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 27939\n",
+ "Discriminator Loss: tf.Tensor(0.74089736, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.4894179, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 27940\n",
+ "Discriminator Loss: tf.Tensor(0.5544307, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.3358155, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 27941\n",
+ "Discriminator Loss: tf.Tensor(0.65118, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.52753407, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 27942\n",
+ "Discriminator Loss: tf.Tensor(1.0984855, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.9045204, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 27943\n",
+ "Discriminator Loss: tf.Tensor(0.88199484, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.30395037, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 27944\n",
+ "Discriminator Loss: tf.Tensor(0.8740306, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.5273424, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 27945\n",
+ "Discriminator Loss: tf.Tensor(0.78886175, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.28080186, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 27946\n",
+ "Discriminator Loss: tf.Tensor(0.8808843, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.6684717, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 27947\n",
+ "Discriminator Loss: tf.Tensor(0.53351766, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.61078423, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 27948\n",
+ "Discriminator Loss: tf.Tensor(1.0526078, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.8825444, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 27949\n",
+ "Discriminator Loss: tf.Tensor(0.4304777, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.6732474, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 27950\n",
+ "Discriminator Loss: tf.Tensor(0.5729284, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.3829006, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 27951\n",
+ "Discriminator Loss: tf.Tensor(1.0031073, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.4136676, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 27952\n",
+ "Discriminator Loss: tf.Tensor(0.64842254, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.43270397, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 27953\n",
+ "Discriminator Loss: tf.Tensor(0.79579645, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.8338466, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 27954\n",
+ "Discriminator Loss: tf.Tensor(0.6308188, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.5913655, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 27955\n",
+ "Discriminator Loss: tf.Tensor(0.51621807, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.6718655, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 27956\n",
+ "Discriminator Loss: tf.Tensor(0.622512, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.8111782, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 27957\n",
+ "Discriminator Loss: tf.Tensor(1.0294244, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.0578792, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 27958\n",
+ "Discriminator Loss: tf.Tensor(0.8699241, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.33880463, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 27959\n",
+ "Discriminator Loss: tf.Tensor(0.44602183, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.6897739, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 27960\n",
+ "Discriminator Loss: tf.Tensor(0.22271572, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.0013242, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 27961\n",
+ "Discriminator Loss: tf.Tensor(0.70657945, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.4160172, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 27962\n",
+ "Discriminator Loss: tf.Tensor(0.81428957, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.1771334, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 27963\n",
+ "Discriminator Loss: tf.Tensor(0.5813066, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.7215124, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 27964\n",
+ "Discriminator Loss: tf.Tensor(0.8231205, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.3940645, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 27965\n",
+ "Discriminator Loss: tf.Tensor(0.682024, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.50345606, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 27966\n",
+ "Discriminator Loss: tf.Tensor(1.1500015, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.007048, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 27967\n",
+ "Discriminator Loss: tf.Tensor(0.3330853, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.7229591, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 27968\n",
+ "Discriminator Loss: tf.Tensor(1.1654601, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.6440144, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 27969\n",
+ "Discriminator Loss: tf.Tensor(0.64809495, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.53179544, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 27970\n",
+ "Discriminator Loss: tf.Tensor(0.6994327, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.0628421, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 27971\n",
+ "Discriminator Loss: tf.Tensor(0.5501047, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.9504321, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 27972\n",
+ "Discriminator Loss: tf.Tensor(0.746541, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.4766377, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 27973\n",
+ "Discriminator Loss: tf.Tensor(0.74302715, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.54270333, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 27974\n",
+ "Discriminator Loss: tf.Tensor(0.8266527, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.8555536, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 27975\n",
+ "Discriminator Loss: tf.Tensor(0.33718756, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.7787331, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 27976\n",
+ "Discriminator Loss: tf.Tensor(0.24919254, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.7694464, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 27977\n",
+ "Discriminator Loss: tf.Tensor(0.5561683, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.7546728, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 27978\n",
+ "Discriminator Loss: tf.Tensor(1.2078083, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.1884377, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 27979\n",
+ "Discriminator Loss: tf.Tensor(0.5477062, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.578241, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 27980\n",
+ "Discriminator Loss: tf.Tensor(1.0781794, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.8192735, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 27981\n",
+ "Discriminator Loss: tf.Tensor(0.736332, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.5633256, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 27982\n",
+ "Discriminator Loss: tf.Tensor(0.47234052, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.7337936, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 27983\n",
+ "Discriminator Loss: tf.Tensor(0.6838783, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.49108052, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 27984\n",
+ "Discriminator Loss: tf.Tensor(0.856282, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.8810331, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 27985\n",
+ "Discriminator Loss: tf.Tensor(0.6075741, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.5982538, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 27986\n",
+ "Discriminator Loss: tf.Tensor(1.5064778, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.907064, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 27987\n",
+ "Discriminator Loss: tf.Tensor(0.45152563, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.6896167, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 27988\n",
+ "Discriminator Loss: tf.Tensor(1.068895, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.5358287, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 27989\n",
+ "Discriminator Loss: tf.Tensor(0.70285434, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.42003462, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 27990\n",
+ "Discriminator Loss: tf.Tensor(1.068062, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.1441659, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 27991\n",
+ "Discriminator Loss: tf.Tensor(0.6917137, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.95042944, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 27992\n",
+ "Discriminator Loss: tf.Tensor(0.42513362, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.1248761, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 27993\n",
+ "Discriminator Loss: tf.Tensor(1.3449532, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.8008966, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 27994\n",
+ "Discriminator Loss: tf.Tensor(0.325781, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.8267617, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 27995\n",
+ "Discriminator Loss: tf.Tensor(0.91254896, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.627326, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 27996\n",
+ "Discriminator Loss: tf.Tensor(0.67307127, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.64089817, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 27997\n",
+ "Discriminator Loss: tf.Tensor(0.5986568, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.958448, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 27998\n",
+ "Discriminator Loss: tf.Tensor(0.27532262, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.2653995, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 27999\n",
+ "Discriminator Loss: tf.Tensor(0.6535734, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.91965944, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 28000\n",
+ "Discriminator Loss: tf.Tensor(0.55300415, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.1666838, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 28001\n",
+ "Discriminator Loss: tf.Tensor(0.6570065, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.7828552, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 28002\n",
+ "Discriminator Loss: tf.Tensor(0.6232747, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.6150256, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 28003\n",
+ "Discriminator Loss: tf.Tensor(0.72494006, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.4001247, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 28004\n",
+ "Discriminator Loss: tf.Tensor(1.3052809, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.4469312, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 28005\n",
+ "Discriminator Loss: tf.Tensor(0.90725315, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.2946074, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 28006\n",
+ "Discriminator Loss: tf.Tensor(0.84862727, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.2933599, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 28007\n",
+ "Discriminator Loss: tf.Tensor(0.5728816, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.4842371, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 28008\n",
+ "Discriminator Loss: tf.Tensor(0.70396054, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.3946375, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 28009\n",
+ "Discriminator Loss: tf.Tensor(1.0073088, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.31911716, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 28010\n",
+ "Discriminator Loss: tf.Tensor(0.7721586, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.1111676, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 28011\n",
+ "Discriminator Loss: tf.Tensor(0.20135474, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.0140605, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 28012\n",
+ "Discriminator Loss: tf.Tensor(1.3269757, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.8183302, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 28013\n",
+ "Discriminator Loss: tf.Tensor(0.74853134, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.65798604, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 28014\n",
+ "Discriminator Loss: tf.Tensor(0.51162124, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.2228649, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 28015\n",
+ "Discriminator Loss: tf.Tensor(0.5850103, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.764605, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 28016\n",
+ "Discriminator Loss: tf.Tensor(0.65690136, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.3961226, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 28017\n",
+ "Discriminator Loss: tf.Tensor(0.414308, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.8119877, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 28018\n",
+ "Discriminator Loss: tf.Tensor(0.8731405, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.2817761, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 28019\n",
+ "Discriminator Loss: tf.Tensor(0.7393905, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.3996559, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 28020\n",
+ "Discriminator Loss: tf.Tensor(0.56659794, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.81770223, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 28021\n",
+ "Discriminator Loss: tf.Tensor(0.68084145, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.4733316, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 28022\n",
+ "Discriminator Loss: tf.Tensor(0.887998, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.7747979, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 28023\n",
+ "Discriminator Loss: tf.Tensor(0.60606325, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.3241256, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 28024\n",
+ "Discriminator Loss: tf.Tensor(0.93629146, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.5606207, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 28025\n",
+ "Discriminator Loss: tf.Tensor(0.8994758, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.1468235, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 28026\n",
+ "Discriminator Loss: tf.Tensor(0.676047, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.2616668, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 28027\n",
+ "Discriminator Loss: tf.Tensor(0.8519187, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.49221155, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 28028\n",
+ "Discriminator Loss: tf.Tensor(1.5128578, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.8344997, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 28029\n",
+ "Discriminator Loss: tf.Tensor(0.7998939, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.3269199, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 28030\n",
+ "Discriminator Loss: tf.Tensor(1.0881785, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.3262962, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 28031\n",
+ "Discriminator Loss: tf.Tensor(0.84637415, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.19201641, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 28032\n",
+ "Discriminator Loss: tf.Tensor(0.7215395, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.4835148, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 28033\n",
+ "Discriminator Loss: tf.Tensor(0.7084147, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.44300163, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 28034\n",
+ "Discriminator Loss: tf.Tensor(0.8077915, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.8228118, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 28035\n",
+ "Discriminator Loss: tf.Tensor(0.7346123, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.009939, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 28036\n",
+ "Discriminator Loss: tf.Tensor(0.62996817, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.2084994, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 28037\n",
+ "Discriminator Loss: tf.Tensor(0.7896444, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.28079066, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 28038\n",
+ "Discriminator Loss: tf.Tensor(0.9691075, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.8962551, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 28039\n",
+ "Discriminator Loss: tf.Tensor(0.56728065, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.7504428, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 28040\n",
+ "Discriminator Loss: tf.Tensor(0.45263335, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.9645667, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 28041\n",
+ "Discriminator Loss: tf.Tensor(1.0904022, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.4858298, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 28042\n",
+ "Discriminator Loss: tf.Tensor(0.5530547, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.55744547, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 28043\n",
+ "Discriminator Loss: tf.Tensor(1.0226908, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.669092, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 28044\n",
+ "Discriminator Loss: tf.Tensor(0.57896036, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.59214383, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 28045\n",
+ "Discriminator Loss: tf.Tensor(0.826401, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.9731143, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 28046\n",
+ "Discriminator Loss: tf.Tensor(0.5671965, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.185913, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 28047\n",
+ "Discriminator Loss: tf.Tensor(0.2660756, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.4492683, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 28048\n",
+ "Discriminator Loss: tf.Tensor(0.48267564, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.93474704, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 28049\n",
+ "Discriminator Loss: tf.Tensor(0.867891, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.857554, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 28050\n",
+ "Discriminator Loss: tf.Tensor(0.68729293, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.4424931, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 28051\n",
+ "Discriminator Loss: tf.Tensor(1.1854112, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.5138136, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 28052\n",
+ "Discriminator Loss: tf.Tensor(0.59849596, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.7218097, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 28053\n",
+ "Discriminator Loss: tf.Tensor(1.0614561, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.0370338, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 28054\n",
+ "Discriminator Loss: tf.Tensor(1.045904, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.4446853, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 28055\n",
+ "Discriminator Loss: tf.Tensor(0.89150465, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.1813661, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 28056\n",
+ "Discriminator Loss: tf.Tensor(0.9628989, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.29933092, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 28057\n",
+ "Discriminator Loss: tf.Tensor(1.3177145, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.6550688, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 28058\n",
+ "Discriminator Loss: tf.Tensor(0.8221581, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.22572136, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 28059\n",
+ "Discriminator Loss: tf.Tensor(0.91753876, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.0040526, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 28060\n",
+ "Discriminator Loss: tf.Tensor(0.6579641, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.37533394, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 28061\n",
+ "Discriminator Loss: tf.Tensor(1.1097696, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.7963098, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 28062\n",
+ "Discriminator Loss: tf.Tensor(0.80476296, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.3643881, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 28063\n",
+ "Discriminator Loss: tf.Tensor(0.88007927, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.352683, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 28064\n",
+ "Discriminator Loss: tf.Tensor(0.5516286, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.61650586, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 28065\n",
+ "Discriminator Loss: tf.Tensor(0.6921596, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.2122883, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 28066\n",
+ "Discriminator Loss: tf.Tensor(0.29510814, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.015568, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 28067\n",
+ "Discriminator Loss: tf.Tensor(0.43126854, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.2776669, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 28068\n",
+ "Discriminator Loss: tf.Tensor(0.8221991, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.1698633, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 28069\n",
+ "Discriminator Loss: tf.Tensor(0.5004973, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.8926187, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 28070\n",
+ "Discriminator Loss: tf.Tensor(1.0149049, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.4134811, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 28071\n",
+ "Discriminator Loss: tf.Tensor(0.8124071, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.238259, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 28072\n",
+ "Discriminator Loss: tf.Tensor(1.2598385, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.4274374, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 28073\n",
+ "Discriminator Loss: tf.Tensor(0.9602828, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.28157842, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 28074\n",
+ "Discriminator Loss: tf.Tensor(0.82969666, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.072137, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 28075\n",
+ "Discriminator Loss: tf.Tensor(0.54084903, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.7618098, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 28076\n",
+ "Discriminator Loss: tf.Tensor(1.0265405, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.77272654, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 28077\n",
+ "Discriminator Loss: tf.Tensor(0.33698818, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.2488505, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 28078\n",
+ "Discriminator Loss: tf.Tensor(0.82350653, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.4477924, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 28079\n",
+ "Discriminator Loss: tf.Tensor(0.85865283, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.5274855, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 28080\n",
+ "Discriminator Loss: tf.Tensor(0.7618704, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.1395901, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 28081\n",
+ "Discriminator Loss: tf.Tensor(0.3431403, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.7282131, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 28082\n",
+ "Discriminator Loss: tf.Tensor(1.2394953, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.3086725, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 28083\n",
+ "Discriminator Loss: tf.Tensor(0.2874425, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.2327393, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 28084\n",
+ "Discriminator Loss: tf.Tensor(0.72813463, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.0060416, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 28085\n",
+ "Discriminator Loss: tf.Tensor(0.53853935, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.57980037, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 28086\n",
+ "Discriminator Loss: tf.Tensor(1.9544734, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.3737268, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 28087\n",
+ "Discriminator Loss: tf.Tensor(0.69029033, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.6933512, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 28088\n",
+ "Discriminator Loss: tf.Tensor(0.7795147, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.8694337, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 28089\n",
+ "Discriminator Loss: tf.Tensor(0.54776, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.98290354, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 28090\n",
+ "Discriminator Loss: tf.Tensor(0.9252268, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.2099346, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 28091\n",
+ "Discriminator Loss: tf.Tensor(0.74374837, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.33854082, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 28092\n",
+ "Discriminator Loss: tf.Tensor(0.9650953, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.8676295, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 28093\n",
+ "Discriminator Loss: tf.Tensor(0.9593573, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.28391376, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 28094\n",
+ "Discriminator Loss: tf.Tensor(0.8868868, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.0278603, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 28095\n",
+ "Discriminator Loss: tf.Tensor(0.8167097, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.45410678, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 28096\n",
+ "Discriminator Loss: tf.Tensor(1.0356071, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.1925229, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 28097\n",
+ "Discriminator Loss: tf.Tensor(0.6117732, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.545108, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 28098\n",
+ "Discriminator Loss: tf.Tensor(1.0121099, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.792737, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 28099\n",
+ "Discriminator Loss: tf.Tensor(0.4023196, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.74300957, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 28100\n",
+ "Discriminator Loss: tf.Tensor(0.6652074, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.0853213, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 28101\n",
+ "Discriminator Loss: tf.Tensor(0.26178983, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.0235635, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 28102\n",
+ "Discriminator Loss: tf.Tensor(1.1355021, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.7724514, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 28103\n",
+ "Discriminator Loss: tf.Tensor(0.64398324, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.4870801, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 28104\n",
+ "Discriminator Loss: tf.Tensor(0.33773237, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.4259497, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 28105\n",
+ "Discriminator Loss: tf.Tensor(0.60827494, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.0171313, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 28106\n",
+ "Discriminator Loss: tf.Tensor(0.77690697, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.3700339, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 28107\n",
+ "Discriminator Loss: tf.Tensor(0.46965158, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.0131394, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 28108\n",
+ "Discriminator Loss: tf.Tensor(0.6759181, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.71056217, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 28109\n",
+ "Discriminator Loss: tf.Tensor(1.477711, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.1631887, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 28110\n",
+ "Discriminator Loss: tf.Tensor(0.6461934, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.4155295, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 28111\n",
+ "Discriminator Loss: tf.Tensor(0.91822696, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.175697, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 28112\n",
+ "Discriminator Loss: tf.Tensor(1.1758345, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.4656023, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 28113\n",
+ "Discriminator Loss: tf.Tensor(0.23525554, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.3106508, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 28114\n",
+ "Discriminator Loss: tf.Tensor(1.0692896, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.2666115, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 28115\n",
+ "Discriminator Loss: tf.Tensor(0.7575169, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.36795974, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 28116\n",
+ "Discriminator Loss: tf.Tensor(1.3396542, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.1685461, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 28117\n",
+ "Discriminator Loss: tf.Tensor(0.7042746, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.5817825, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 28118\n",
+ "Discriminator Loss: tf.Tensor(0.77470756, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.4335343, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 28119\n",
+ "Discriminator Loss: tf.Tensor(0.6168745, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.5412443, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 28120\n",
+ "Discriminator Loss: tf.Tensor(0.70431614, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.3549877, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 28121\n",
+ "Discriminator Loss: tf.Tensor(0.8008063, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.467505, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 28122\n",
+ "Discriminator Loss: tf.Tensor(0.9944438, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.6196488, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 28123\n",
+ "Discriminator Loss: tf.Tensor(0.72341526, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.52940065, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 28124\n",
+ "Discriminator Loss: tf.Tensor(0.86813426, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.4897227, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 28125\n",
+ "Discriminator Loss: tf.Tensor(0.52306896, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.6233397, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 28126\n",
+ "Discriminator Loss: tf.Tensor(0.87641406, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.7562574, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 28127\n",
+ "Discriminator Loss: tf.Tensor(0.70163465, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.48482582, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 28128\n",
+ "Discriminator Loss: tf.Tensor(0.7189897, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.717215, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 28129\n",
+ "Discriminator Loss: tf.Tensor(0.41680163, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.0414684, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 28130\n",
+ "Discriminator Loss: tf.Tensor(0.27541235, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.0384222, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 28131\n",
+ "Discriminator Loss: tf.Tensor(0.59947, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.2409846, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 28132\n",
+ "Discriminator Loss: tf.Tensor(0.60818714, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.6265941, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 28133\n",
+ "Discriminator Loss: tf.Tensor(0.85541254, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.5690283, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 28134\n",
+ "Discriminator Loss: tf.Tensor(0.7651438, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.6731327, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 28135\n",
+ "Discriminator Loss: tf.Tensor(1.0383697, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.7098676, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 28136\n",
+ "Discriminator Loss: tf.Tensor(0.5311456, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.613696, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 28137\n",
+ "Discriminator Loss: tf.Tensor(1.3813891, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.4073075, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 28138\n",
+ "Discriminator Loss: tf.Tensor(0.8290449, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.25760368, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 28139\n",
+ "Discriminator Loss: tf.Tensor(0.7529783, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.408091, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 28140\n",
+ "Discriminator Loss: tf.Tensor(0.4331961, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.6751976, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 28141\n",
+ "Discriminator Loss: tf.Tensor(1.0204289, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.7854317, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 28142\n",
+ "Discriminator Loss: tf.Tensor(0.22775684, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.8222971, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 28143\n",
+ "Discriminator Loss: tf.Tensor(0.89078546, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.7579719, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 28144\n",
+ "Discriminator Loss: tf.Tensor(0.87945557, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.2768158, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 28145\n",
+ "Discriminator Loss: tf.Tensor(0.92240554, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.692655, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 28146\n",
+ "Discriminator Loss: tf.Tensor(0.6373923, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.5927126, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 28147\n",
+ "Discriminator Loss: tf.Tensor(0.92261946, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.4355215, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 28148\n",
+ "Discriminator Loss: tf.Tensor(0.7182028, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.4000223, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 28149\n",
+ "Discriminator Loss: tf.Tensor(0.7824553, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.6589999, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 28150\n",
+ "Discriminator Loss: tf.Tensor(0.2921013, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.80533105, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 28151\n",
+ "Discriminator Loss: tf.Tensor(0.82315695, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.2693052, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 28152\n",
+ "Discriminator Loss: tf.Tensor(0.76340675, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.4181808, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 28153\n",
+ "Discriminator Loss: tf.Tensor(0.9216025, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.2924681, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 28154\n",
+ "Discriminator Loss: tf.Tensor(0.5174737, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.62179524, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 28155\n",
+ "Discriminator Loss: tf.Tensor(0.93317664, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.4356589, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 28156\n",
+ "Discriminator Loss: tf.Tensor(0.5271058, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.80464125, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 28157\n",
+ "Discriminator Loss: tf.Tensor(0.64392763, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.3544871, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 28158\n",
+ "Discriminator Loss: tf.Tensor(0.6509026, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.0460054, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 28159\n",
+ "Discriminator Loss: tf.Tensor(0.5292807, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.2122349, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 28160\n",
+ "Discriminator Loss: tf.Tensor(0.64859813, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.5026262, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 28161\n",
+ "Discriminator Loss: tf.Tensor(1.481037, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.2869632, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 28162\n",
+ "Discriminator Loss: tf.Tensor(0.57873386, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.5509923, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 28163\n",
+ "Discriminator Loss: tf.Tensor(0.72445685, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.486555, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 28164\n",
+ "Discriminator Loss: tf.Tensor(0.80805707, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.4215866, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 28165\n",
+ "Discriminator Loss: tf.Tensor(0.6253276, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.1153772, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 28166\n",
+ "Discriminator Loss: tf.Tensor(0.6784234, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.9917882, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 28167\n",
+ "Discriminator Loss: tf.Tensor(0.6339272, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.2940232, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 28168\n",
+ "Discriminator Loss: tf.Tensor(0.7137319, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.36790314, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 28169\n",
+ "Discriminator Loss: tf.Tensor(1.1470897, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.5442842, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 28170\n",
+ "Discriminator Loss: tf.Tensor(0.6686992, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.4332339, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 28171\n",
+ "Discriminator Loss: tf.Tensor(0.7824676, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.7214769, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 28172\n",
+ "Discriminator Loss: tf.Tensor(0.65066284, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.60851073, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 28173\n",
+ "Discriminator Loss: tf.Tensor(0.85592294, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.0685822, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 28174\n",
+ "Discriminator Loss: tf.Tensor(0.49034518, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.4100424, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 28175\n",
+ "Discriminator Loss: tf.Tensor(0.2727179, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.8939128, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 28176\n",
+ "Discriminator Loss: tf.Tensor(1.2966213, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.0008776, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 28177\n",
+ "Discriminator Loss: tf.Tensor(0.65719366, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.6346082, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 28178\n",
+ "Discriminator Loss: tf.Tensor(0.8931166, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.9061199, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 28179\n",
+ "Discriminator Loss: tf.Tensor(0.73585844, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.1719896, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 28180\n",
+ "Discriminator Loss: tf.Tensor(0.39652896, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.8515308, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 28181\n",
+ "Discriminator Loss: tf.Tensor(1.1012602, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.2391783, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 28182\n",
+ "Discriminator Loss: tf.Tensor(0.6105707, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.7526013, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 28183\n",
+ "Discriminator Loss: tf.Tensor(0.8976171, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.9755034, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 28184\n",
+ "Discriminator Loss: tf.Tensor(1.0997844, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.11157059, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 28185\n",
+ "Discriminator Loss: tf.Tensor(1.2234668, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.2081507, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 28186\n",
+ "Discriminator Loss: tf.Tensor(0.4122875, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.746109, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 28187\n",
+ "Discriminator Loss: tf.Tensor(1.2096772, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.77309, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 28188\n",
+ "Discriminator Loss: tf.Tensor(0.57060456, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.0177497, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 28189\n",
+ "Discriminator Loss: tf.Tensor(0.41891864, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.74429613, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 28190\n",
+ "Discriminator Loss: tf.Tensor(1.114957, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.9117864, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 28191\n",
+ "Discriminator Loss: tf.Tensor(0.8278296, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.25569144, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 28192\n",
+ "Discriminator Loss: tf.Tensor(0.7113731, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.5580378, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 28193\n",
+ "Discriminator Loss: tf.Tensor(0.6894375, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.49404582, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 28194\n",
+ "Discriminator Loss: tf.Tensor(0.6472913, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.6555203, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 28195\n",
+ "Discriminator Loss: tf.Tensor(0.32306305, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.7164685, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 28196\n",
+ "Discriminator Loss: tf.Tensor(1.4262336, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.23335, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 28197\n",
+ "Discriminator Loss: tf.Tensor(0.5906247, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.891366, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 28198\n",
+ "Discriminator Loss: tf.Tensor(0.69862247, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.82672113, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 28199\n",
+ "Discriminator Loss: tf.Tensor(1.3308336, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.4681112, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 28200\n",
+ "Discriminator Loss: tf.Tensor(0.5757494, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.5128587, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 28201\n",
+ "Discriminator Loss: tf.Tensor(1.1368668, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.6353865, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 28202\n",
+ "Discriminator Loss: tf.Tensor(0.6319636, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.51125443, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 28203\n",
+ "Discriminator Loss: tf.Tensor(0.8420186, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.2137533, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 28204\n",
+ "Discriminator Loss: tf.Tensor(0.62820256, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.1537546, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 28205\n",
+ "Discriminator Loss: tf.Tensor(0.5679755, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.4188677, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 28206\n",
+ "Discriminator Loss: tf.Tensor(0.73616993, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.3194408, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 28207\n",
+ "Discriminator Loss: tf.Tensor(1.3292828, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.0762825, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 28208\n",
+ "Discriminator Loss: tf.Tensor(0.4396727, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.7759681, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 28209\n",
+ "Discriminator Loss: tf.Tensor(1.6600882, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.9925579, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 28210\n",
+ "Discriminator Loss: tf.Tensor(0.4920348, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.67197055, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 28211\n",
+ "Discriminator Loss: tf.Tensor(0.64348674, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.3965737, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 28212\n",
+ "Discriminator Loss: tf.Tensor(0.50161225, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.70572835, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 28213\n",
+ "Discriminator Loss: tf.Tensor(0.6462016, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.8984348, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 28214\n",
+ "Discriminator Loss: tf.Tensor(0.18793866, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.0396217, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 28215\n",
+ "Discriminator Loss: tf.Tensor(0.9548639, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.0776765, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 28216\n",
+ "Discriminator Loss: tf.Tensor(0.467561, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.7686691, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 28217\n",
+ "Discriminator Loss: tf.Tensor(0.6261935, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.6936407, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 28218\n",
+ "Discriminator Loss: tf.Tensor(0.4623912, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.88341683, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 28219\n",
+ "Discriminator Loss: tf.Tensor(1.0174917, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.8961563, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 28220\n",
+ "Discriminator Loss: tf.Tensor(0.5049279, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.2027801, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 28221\n",
+ "Discriminator Loss: tf.Tensor(1.1912864, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.37273693, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 28222\n",
+ "Discriminator Loss: tf.Tensor(0.6705221, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.4333581, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 28223\n",
+ "Discriminator Loss: tf.Tensor(0.5924839, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.6958825, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 28224\n",
+ "Discriminator Loss: tf.Tensor(1.1140363, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.7919312, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 28225\n",
+ "Discriminator Loss: tf.Tensor(0.65597737, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.53460854, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 28226\n",
+ "Discriminator Loss: tf.Tensor(0.63340384, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.32366, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 28227\n",
+ "Discriminator Loss: tf.Tensor(0.41579536, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.95977145, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 28228\n",
+ "Discriminator Loss: tf.Tensor(0.6173066, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.4228398, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 28229\n",
+ "Discriminator Loss: tf.Tensor(0.3704847, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.0117764, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 28230\n",
+ "Discriminator Loss: tf.Tensor(0.9699147, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.451696, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 28231\n",
+ "Discriminator Loss: tf.Tensor(0.8216411, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.5381222, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 28232\n",
+ "Discriminator Loss: tf.Tensor(1.1974324, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.2220801, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 28233\n",
+ "Discriminator Loss: tf.Tensor(0.6045368, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.4763777, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 28234\n",
+ "Discriminator Loss: tf.Tensor(1.1237564, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.7967628, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 28235\n",
+ "Discriminator Loss: tf.Tensor(0.6069607, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.55924463, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 28236\n",
+ "Discriminator Loss: tf.Tensor(1.0114532, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.0002079, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 28237\n",
+ "Discriminator Loss: tf.Tensor(0.94788945, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.100144, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 28238\n",
+ "Discriminator Loss: tf.Tensor(0.39759165, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.0333481, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 28239\n",
+ "Discriminator Loss: tf.Tensor(0.75345206, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.9570077, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 28240\n",
+ "Discriminator Loss: tf.Tensor(0.1808008, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.1377047, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 28241\n",
+ "Discriminator Loss: tf.Tensor(1.5389802, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.8567737, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 28242\n",
+ "Discriminator Loss: tf.Tensor(1.0269789, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.16120829, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 28243\n",
+ "Discriminator Loss: tf.Tensor(0.8831129, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.827678, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 28244\n",
+ "Discriminator Loss: tf.Tensor(0.7973385, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.4229093, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 28245\n",
+ "Discriminator Loss: tf.Tensor(0.96607685, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.13694336, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 28246\n",
+ "Discriminator Loss: tf.Tensor(0.77201784, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.2554978, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 28247\n",
+ "Discriminator Loss: tf.Tensor(0.9524366, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.42152897, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 28248\n",
+ "Discriminator Loss: tf.Tensor(0.5976538, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.5138024, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 28249\n",
+ "Discriminator Loss: tf.Tensor(0.64007604, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.45353904, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 28250\n",
+ "Discriminator Loss: tf.Tensor(0.8181565, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.6641954, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 28251\n",
+ "Discriminator Loss: tf.Tensor(0.32328042, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.856909, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 28252\n",
+ "Discriminator Loss: tf.Tensor(0.6317364, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.1686349, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 28253\n",
+ "Discriminator Loss: tf.Tensor(0.4980939, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.84934825, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 28254\n",
+ "Discriminator Loss: tf.Tensor(0.9687963, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.1914291, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 28255\n",
+ "Discriminator Loss: tf.Tensor(0.63840926, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.47724113, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 28256\n",
+ "Discriminator Loss: tf.Tensor(1.1518445, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.4705887, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 28257\n",
+ "Discriminator Loss: tf.Tensor(1.0950745, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.23180102, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 28258\n",
+ "Discriminator Loss: tf.Tensor(0.5810685, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.1524762, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 28259\n",
+ "Discriminator Loss: tf.Tensor(0.48085302, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.0332533, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 28260\n",
+ "Discriminator Loss: tf.Tensor(1.0623983, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.1791371, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 28261\n",
+ "Discriminator Loss: tf.Tensor(0.87536603, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.2252421, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 28262\n",
+ "Discriminator Loss: tf.Tensor(0.93023187, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.2833165, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 28263\n",
+ "Discriminator Loss: tf.Tensor(1.5576117, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.0758102, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 28264\n",
+ "Discriminator Loss: tf.Tensor(0.85037726, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.43316588, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 28265\n",
+ "Discriminator Loss: tf.Tensor(0.86902916, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.1762211, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 28266\n",
+ "Discriminator Loss: tf.Tensor(0.9425863, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.10231531, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 28267\n",
+ "Discriminator Loss: tf.Tensor(0.7673492, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.0703893, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 28268\n",
+ "Discriminator Loss: tf.Tensor(0.27099824, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.343655, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 28269\n",
+ "Discriminator Loss: tf.Tensor(0.5055505, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.97129184, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 28270\n",
+ "Discriminator Loss: tf.Tensor(0.40593833, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.2343594, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 28271\n",
+ "Discriminator Loss: tf.Tensor(0.7058708, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.2358407, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 28272\n",
+ "Discriminator Loss: tf.Tensor(0.5678799, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.6432916, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 28273\n",
+ "Discriminator Loss: tf.Tensor(1.2665534, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.3458924, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 28274\n",
+ "Discriminator Loss: tf.Tensor(0.42759937, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.9443615, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 28275\n",
+ "Discriminator Loss: tf.Tensor(0.6122176, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.9653327, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 28276\n",
+ "Discriminator Loss: tf.Tensor(0.50975806, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.9848693, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 28277\n",
+ "Discriminator Loss: tf.Tensor(0.55668354, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.6696914, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 28278\n",
+ "Discriminator Loss: tf.Tensor(0.9069213, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.3432816, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 28279\n",
+ "Discriminator Loss: tf.Tensor(0.89812684, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.4640125, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 28280\n",
+ "Discriminator Loss: tf.Tensor(0.7536411, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.35381424, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 28281\n",
+ "Discriminator Loss: tf.Tensor(1.0671456, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.5130185, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 28282\n",
+ "Discriminator Loss: tf.Tensor(0.4146918, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.6595942, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 28283\n",
+ "Discriminator Loss: tf.Tensor(1.17917, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.9691693, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 28284\n",
+ "Discriminator Loss: tf.Tensor(0.7449433, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.3296149, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 28285\n",
+ "Discriminator Loss: tf.Tensor(1.1303047, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.5738465, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 28286\n",
+ "Discriminator Loss: tf.Tensor(0.5280257, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.54943407, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 28287\n",
+ "Discriminator Loss: tf.Tensor(0.64907396, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.6958085, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 28288\n",
+ "Discriminator Loss: tf.Tensor(0.6165229, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.9289269, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 28289\n",
+ "Discriminator Loss: tf.Tensor(0.5189527, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.8965618, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 28290\n",
+ "Discriminator Loss: tf.Tensor(0.4453718, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.5444268, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 28291\n",
+ "Discriminator Loss: tf.Tensor(0.59061676, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.64441067, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 28292\n",
+ "Discriminator Loss: tf.Tensor(0.89828175, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.220849, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 28293\n",
+ "Discriminator Loss: tf.Tensor(0.79239815, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.39020023, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 28294\n",
+ "Discriminator Loss: tf.Tensor(1.2807984, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.1113198, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 28295\n",
+ "Discriminator Loss: tf.Tensor(0.46454334, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.79840726, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 28296\n",
+ "Discriminator Loss: tf.Tensor(0.5949931, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.820047, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 28297\n",
+ "Discriminator Loss: tf.Tensor(0.52397746, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.73104745, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 28298\n",
+ "Discriminator Loss: tf.Tensor(0.4734978, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.5472393, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 28299\n",
+ "Discriminator Loss: tf.Tensor(0.4461994, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.74071366, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 28300\n",
+ "Discriminator Loss: tf.Tensor(0.61655444, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.9022199, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 28301\n",
+ "Discriminator Loss: tf.Tensor(0.5720397, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.52056617, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 28302\n",
+ "Discriminator Loss: tf.Tensor(1.380532, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.4932457, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 28303\n",
+ "Discriminator Loss: tf.Tensor(0.8748317, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.5680576, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 28304\n",
+ "Discriminator Loss: tf.Tensor(0.7310138, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.4347426, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 28305\n",
+ "Discriminator Loss: tf.Tensor(0.68510306, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.6098659, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 28306\n",
+ "Discriminator Loss: tf.Tensor(0.6959704, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.3315276, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 28307\n",
+ "Discriminator Loss: tf.Tensor(0.38947895, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.9465297, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 28308\n",
+ "Discriminator Loss: tf.Tensor(0.65483546, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.3030372, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 28309\n",
+ "Discriminator Loss: tf.Tensor(0.56241876, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.7767561, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 28310\n",
+ "Discriminator Loss: tf.Tensor(1.5182817, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.281665, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 28311\n",
+ "Discriminator Loss: tf.Tensor(0.7678638, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.34815237, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 28312\n",
+ "Discriminator Loss: tf.Tensor(0.79542154, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.3853403, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 28313\n",
+ "Discriminator Loss: tf.Tensor(0.73554003, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.29809016, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 28314\n",
+ "Discriminator Loss: tf.Tensor(0.67820895, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.5776759, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 28315\n",
+ "Discriminator Loss: tf.Tensor(0.47235647, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.63263863, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 28316\n",
+ "Discriminator Loss: tf.Tensor(0.86226094, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.53624636, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 28317\n",
+ "Discriminator Loss: tf.Tensor(1.7381557, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.0326617, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 28318\n",
+ "Discriminator Loss: tf.Tensor(0.408852, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.95444494, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 28319\n",
+ "Discriminator Loss: tf.Tensor(0.7763336, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.1079252, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 28320\n",
+ "Discriminator Loss: tf.Tensor(0.40858936, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.8450338, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 28321\n",
+ "Discriminator Loss: tf.Tensor(0.95910704, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.5376159, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 28322\n",
+ "Discriminator Loss: tf.Tensor(0.585436, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.45078516, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 28323\n",
+ "Discriminator Loss: tf.Tensor(0.9190533, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.5876354, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 28324\n",
+ "Discriminator Loss: tf.Tensor(0.6718531, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.6421166, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 28325\n",
+ "Discriminator Loss: tf.Tensor(1.1637527, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.280446, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 28326\n",
+ "Discriminator Loss: tf.Tensor(0.4830381, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.0192915, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 28327\n",
+ "Discriminator Loss: tf.Tensor(0.9269825, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.2487522, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 28328\n",
+ "Discriminator Loss: tf.Tensor(0.4270536, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.76908356, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 28329\n",
+ "Discriminator Loss: tf.Tensor(0.7528992, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.4485604, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 28330\n",
+ "Discriminator Loss: tf.Tensor(0.26130283, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.1710597, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 28331\n",
+ "Discriminator Loss: tf.Tensor(0.5708082, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.7988157, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 28332\n",
+ "Discriminator Loss: tf.Tensor(0.34469837, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.6914393, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 28333\n",
+ "Discriminator Loss: tf.Tensor(0.7535562, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.6603247, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 28334\n",
+ "Discriminator Loss: tf.Tensor(1.9200482, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.7224607, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 28335\n",
+ "Discriminator Loss: tf.Tensor(0.8775334, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.34173295, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 28336\n",
+ "Discriminator Loss: tf.Tensor(0.9516026, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.1460065, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 28337\n",
+ "Discriminator Loss: tf.Tensor(0.91349876, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.33481517, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 28338\n",
+ "Discriminator Loss: tf.Tensor(0.4471252, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.0888005, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 28339\n",
+ "Discriminator Loss: tf.Tensor(0.7987832, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.59835094, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 28340\n",
+ "Discriminator Loss: tf.Tensor(0.917027, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.7279919, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 28341\n",
+ "Discriminator Loss: tf.Tensor(0.73535466, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.3232182, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 28342\n",
+ "Discriminator Loss: tf.Tensor(1.0519071, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.37320638, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 28343\n",
+ "Discriminator Loss: tf.Tensor(0.6220325, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.9942736, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 28344\n",
+ "Discriminator Loss: tf.Tensor(1.0189404, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.14412457, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 28345\n",
+ "Discriminator Loss: tf.Tensor(1.2563634, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.0748005, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 28346\n",
+ "Discriminator Loss: tf.Tensor(1.1394916, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.15456893, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 28347\n",
+ "Discriminator Loss: tf.Tensor(0.72677803, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.2736725, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 28348\n",
+ "Discriminator Loss: tf.Tensor(0.81387734, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.43443862, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 28349\n",
+ "Discriminator Loss: tf.Tensor(0.6573162, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.1980916, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 28350\n",
+ "Discriminator Loss: tf.Tensor(0.61333925, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.92322284, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 28351\n",
+ "Discriminator Loss: tf.Tensor(0.38074285, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.9195461, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 28352\n",
+ "Discriminator Loss: tf.Tensor(0.6698939, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.4994602, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 28353\n",
+ "Discriminator Loss: tf.Tensor(0.28709367, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.057288, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 28354\n",
+ "Discriminator Loss: tf.Tensor(0.6135497, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.5272366, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 28355\n",
+ "Discriminator Loss: tf.Tensor(0.6902214, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.5864452, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 28356\n",
+ "Discriminator Loss: tf.Tensor(1.6204208, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.5976418, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 28357\n",
+ "Discriminator Loss: tf.Tensor(0.8150039, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.38815677, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 28358\n",
+ "Discriminator Loss: tf.Tensor(0.69658816, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.386273, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 28359\n",
+ "Discriminator Loss: tf.Tensor(0.72434866, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.6566878, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 28360\n",
+ "Discriminator Loss: tf.Tensor(0.82907766, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.5686502, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 28361\n",
+ "Discriminator Loss: tf.Tensor(0.7208503, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.5852758, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 28362\n",
+ "Discriminator Loss: tf.Tensor(0.7618419, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.265048, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 28363\n",
+ "Discriminator Loss: tf.Tensor(0.68681043, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.7850065, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 28364\n",
+ "Discriminator Loss: tf.Tensor(0.5478859, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.6436249, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 28365\n",
+ "Discriminator Loss: tf.Tensor(0.43317872, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.4275423, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 28366\n",
+ "Discriminator Loss: tf.Tensor(0.722271, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.9031687, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 28367\n",
+ "Discriminator Loss: tf.Tensor(0.8847816, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.5669309, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 28368\n",
+ "Discriminator Loss: tf.Tensor(0.35327247, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.72813535, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 28369\n",
+ "Discriminator Loss: tf.Tensor(0.9421613, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.8729005, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 28370\n",
+ "Discriminator Loss: tf.Tensor(0.8437493, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.35112563, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 28371\n",
+ "Discriminator Loss: tf.Tensor(0.7041814, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.7641166, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 28372\n",
+ "Discriminator Loss: tf.Tensor(0.5248651, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.84706473, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 28373\n",
+ "Discriminator Loss: tf.Tensor(1.0066972, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.0373603, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 28374\n",
+ "Discriminator Loss: tf.Tensor(0.2796453, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.0719796, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 28375\n",
+ "Discriminator Loss: tf.Tensor(0.66321886, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.6753001, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 28376\n",
+ "Discriminator Loss: tf.Tensor(1.0693547, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.30627254, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 28377\n",
+ "Discriminator Loss: tf.Tensor(0.68734497, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.3494269, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 28378\n",
+ "Discriminator Loss: tf.Tensor(1.0243236, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.07559033, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 28379\n",
+ "Discriminator Loss: tf.Tensor(0.5234525, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.6179603, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 28380\n",
+ "Discriminator Loss: tf.Tensor(0.6108189, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.49218845, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 28381\n",
+ "Discriminator Loss: tf.Tensor(1.1097955, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.9941797, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 28382\n",
+ "Discriminator Loss: tf.Tensor(0.5472388, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.97780937, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 28383\n",
+ "Discriminator Loss: tf.Tensor(1.3060532, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.033392098, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 28384\n",
+ "Discriminator Loss: tf.Tensor(1.310564, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.1494346, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 28385\n",
+ "Discriminator Loss: tf.Tensor(0.49335033, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.71906775, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 28386\n",
+ "Discriminator Loss: tf.Tensor(1.3805711, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.9665656, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 28387\n",
+ "Discriminator Loss: tf.Tensor(0.38018417, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.0645933, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 28388\n",
+ "Discriminator Loss: tf.Tensor(0.6211782, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.7739725, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 28389\n",
+ "Discriminator Loss: tf.Tensor(0.75103635, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.2833439, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 28390\n",
+ "Discriminator Loss: tf.Tensor(0.7131361, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.5104945, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 28391\n",
+ "Discriminator Loss: tf.Tensor(1.4993775, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.32441, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 28392\n",
+ "Discriminator Loss: tf.Tensor(0.47089192, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.6832485, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 28393\n",
+ "Discriminator Loss: tf.Tensor(1.0297832, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.5750443, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 28394\n",
+ "Discriminator Loss: tf.Tensor(0.42860237, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.68855447, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 28395\n",
+ "Discriminator Loss: tf.Tensor(0.74840105, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.6073753, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 28396\n",
+ "Discriminator Loss: tf.Tensor(0.63289565, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.7436946, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 28397\n",
+ "Discriminator Loss: tf.Tensor(1.3390732, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.4118319, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 28398\n",
+ "Discriminator Loss: tf.Tensor(0.40021068, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.83963305, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 28399\n",
+ "Discriminator Loss: tf.Tensor(1.3470712, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.3540198, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 28400\n",
+ "Discriminator Loss: tf.Tensor(0.6405119, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.6355372, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 28401\n",
+ "Discriminator Loss: tf.Tensor(0.7600761, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.8080344, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 28402\n",
+ "Discriminator Loss: tf.Tensor(0.9895797, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.7141308, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 28403\n",
+ "Discriminator Loss: tf.Tensor(0.6424072, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.58744663, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 28404\n",
+ "Discriminator Loss: tf.Tensor(0.49675816, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.2567742, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 28405\n",
+ "Discriminator Loss: tf.Tensor(0.9959073, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.97901183, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 28406\n",
+ "Discriminator Loss: tf.Tensor(0.37940812, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.2208129, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 28407\n",
+ "Discriminator Loss: tf.Tensor(0.37772262, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.8576434, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 28408\n",
+ "Discriminator Loss: tf.Tensor(1.0780094, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.016717, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 28409\n",
+ "Discriminator Loss: tf.Tensor(0.71935785, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.5830025, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 28410\n",
+ "Discriminator Loss: tf.Tensor(0.8137685, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.5520169, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 28411\n",
+ "Discriminator Loss: tf.Tensor(0.7156336, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.0149225, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 28412\n",
+ "Discriminator Loss: tf.Tensor(0.53062534, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.9648633, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 28413\n",
+ "Discriminator Loss: tf.Tensor(0.63453645, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.60706526, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 28414\n",
+ "Discriminator Loss: tf.Tensor(1.5495216, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.2883885, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 28415\n",
+ "Discriminator Loss: tf.Tensor(1.1295973, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.33141673, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 28416\n",
+ "Discriminator Loss: tf.Tensor(0.676178, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.1701974, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 28417\n",
+ "Discriminator Loss: tf.Tensor(0.32825494, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.1193119, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 28418\n",
+ "Discriminator Loss: tf.Tensor(0.7439264, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.8981512, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 28419\n",
+ "Discriminator Loss: tf.Tensor(0.4082607, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.9102146, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 28420\n",
+ "Discriminator Loss: tf.Tensor(1.3478036, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.9800239, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 28421\n",
+ "Discriminator Loss: tf.Tensor(0.575166, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.47802123, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 28422\n",
+ "Discriminator Loss: tf.Tensor(1.2483882, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.8342619, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 28423\n",
+ "Discriminator Loss: tf.Tensor(0.69752884, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.403471, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 28424\n",
+ "Discriminator Loss: tf.Tensor(0.5871537, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.5934887, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 28425\n",
+ "Discriminator Loss: tf.Tensor(0.2419558, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.89466166, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 28426\n",
+ "Discriminator Loss: tf.Tensor(1.4665405, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.7591871, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 28427\n",
+ "Discriminator Loss: tf.Tensor(0.702096, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.4918325, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 28428\n",
+ "Discriminator Loss: tf.Tensor(0.9266571, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.9516843, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 28429\n",
+ "Discriminator Loss: tf.Tensor(0.4246804, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.72949433, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 28430\n",
+ "Discriminator Loss: tf.Tensor(1.210807, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.552431, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 28431\n",
+ "Discriminator Loss: tf.Tensor(0.6639847, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.44784632, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 28432\n",
+ "Discriminator Loss: tf.Tensor(0.87691, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.1627729, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 28433\n",
+ "Discriminator Loss: tf.Tensor(0.5061689, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.7095082, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 28434\n",
+ "Discriminator Loss: tf.Tensor(0.7162944, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.7562221, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 28435\n",
+ "Discriminator Loss: tf.Tensor(0.5599271, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.83524674, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 28436\n",
+ "Discriminator Loss: tf.Tensor(0.30232653, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.2654642, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 28437\n",
+ "Discriminator Loss: tf.Tensor(0.38754207, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.0067198, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 28438\n",
+ "Discriminator Loss: tf.Tensor(0.8909733, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.3306907, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 28439\n",
+ "Discriminator Loss: tf.Tensor(0.48330885, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.7863898, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 28440\n",
+ "Discriminator Loss: tf.Tensor(1.1663007, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.431166, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 28441\n",
+ "Discriminator Loss: tf.Tensor(0.76781356, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.3406422, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 28442\n",
+ "Discriminator Loss: tf.Tensor(0.92458856, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.2371794, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 28443\n",
+ "Discriminator Loss: tf.Tensor(0.79583114, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.9494505, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 28444\n",
+ "Discriminator Loss: tf.Tensor(1.0378958, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.9213912, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 28445\n",
+ "Discriminator Loss: tf.Tensor(0.8191254, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.97203, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 28446\n",
+ "Discriminator Loss: tf.Tensor(0.2588902, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.87104994, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 28447\n",
+ "Discriminator Loss: tf.Tensor(1.6377796, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.5454601, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 28448\n",
+ "Discriminator Loss: tf.Tensor(0.81358004, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.56148857, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 28449\n",
+ "Discriminator Loss: tf.Tensor(1.3281226, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.683198, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 28450\n",
+ "Discriminator Loss: tf.Tensor(0.43594146, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.69708794, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 28451\n",
+ "Discriminator Loss: tf.Tensor(0.6539907, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.98113936, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 28452\n",
+ "Discriminator Loss: tf.Tensor(0.86090976, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.4696788, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 28453\n",
+ "Discriminator Loss: tf.Tensor(0.8241423, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.3461602, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 28454\n",
+ "Discriminator Loss: tf.Tensor(0.8019124, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.306221, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 28455\n",
+ "Discriminator Loss: tf.Tensor(0.5213215, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.7523168, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 28456\n",
+ "Discriminator Loss: tf.Tensor(0.5316659, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.2146606, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 28457\n",
+ "Discriminator Loss: tf.Tensor(0.56364846, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.3683149, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 28458\n",
+ "Discriminator Loss: tf.Tensor(0.53041714, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.6275751, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 28459\n",
+ "Discriminator Loss: tf.Tensor(0.40229884, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.3021585, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 28460\n",
+ "Discriminator Loss: tf.Tensor(0.5600704, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.68627805, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 28461\n",
+ "Discriminator Loss: tf.Tensor(0.66297513, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.8915163, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 28462\n",
+ "Discriminator Loss: tf.Tensor(0.6940958, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.6488853, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 28463\n",
+ "Discriminator Loss: tf.Tensor(1.0565197, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.4608182, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 28464\n",
+ "Discriminator Loss: tf.Tensor(0.9773021, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.47665772, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 28465\n",
+ "Discriminator Loss: tf.Tensor(0.5966463, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.2784451, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 28466\n",
+ "Discriminator Loss: tf.Tensor(0.5147426, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.6196529, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 28467\n",
+ "Discriminator Loss: tf.Tensor(0.41047627, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.87467957, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 28468\n",
+ "Discriminator Loss: tf.Tensor(0.9934018, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.2173359, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 28469\n",
+ "Discriminator Loss: tf.Tensor(0.6041186, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.0330058, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 28470\n",
+ "Discriminator Loss: tf.Tensor(0.44660068, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.91778785, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 28471\n",
+ "Discriminator Loss: tf.Tensor(0.51389253, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.6555885, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 28472\n",
+ "Discriminator Loss: tf.Tensor(0.76830405, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.46488258, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 28473\n",
+ "Discriminator Loss: tf.Tensor(1.2582316, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.5745453, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 28474\n",
+ "Discriminator Loss: tf.Tensor(1.1419637, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.10171313, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 28475\n",
+ "Discriminator Loss: tf.Tensor(0.71906114, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.1967047, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 28476\n",
+ "Discriminator Loss: tf.Tensor(0.99645644, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.38486314, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 28477\n",
+ "Discriminator Loss: tf.Tensor(0.9819853, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.2353176, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 28478\n",
+ "Discriminator Loss: tf.Tensor(0.599811, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.5025919, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 28479\n",
+ "Discriminator Loss: tf.Tensor(0.96970606, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.7100159, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 28480\n",
+ "Discriminator Loss: tf.Tensor(0.8552223, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.39692664, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 28481\n",
+ "Discriminator Loss: tf.Tensor(0.657203, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.7358343, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 28482\n",
+ "Discriminator Loss: tf.Tensor(0.9876019, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.6900734, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 28483\n",
+ "Discriminator Loss: tf.Tensor(0.607339, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.46170345, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 28484\n",
+ "Discriminator Loss: tf.Tensor(0.8281865, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.3061763, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 28485\n",
+ "Discriminator Loss: tf.Tensor(0.54992425, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.55525374, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 28486\n",
+ "Discriminator Loss: tf.Tensor(0.6600176, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.7530104, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 28487\n",
+ "Discriminator Loss: tf.Tensor(0.7705435, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.5011206, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 28488\n",
+ "Discriminator Loss: tf.Tensor(1.0845824, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.3600345, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 28489\n",
+ "Discriminator Loss: tf.Tensor(0.7260649, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.52630544, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 28490\n",
+ "Discriminator Loss: tf.Tensor(0.75088155, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.1453806, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 28491\n",
+ "Discriminator Loss: tf.Tensor(0.54603374, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.7023548, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 28492\n",
+ "Discriminator Loss: tf.Tensor(0.29026416, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.0330398, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 28493\n",
+ "Discriminator Loss: tf.Tensor(0.4338342, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.4731795, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 28494\n",
+ "Discriminator Loss: tf.Tensor(0.44800988, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.5425711, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 28495\n",
+ "Discriminator Loss: tf.Tensor(0.64003265, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.8690044, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 28496\n",
+ "Discriminator Loss: tf.Tensor(0.70234597, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.1049749, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 28497\n",
+ "Discriminator Loss: tf.Tensor(0.32647127, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.91093177, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 28498\n",
+ "Discriminator Loss: tf.Tensor(1.2954823, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.1791759, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 28499\n",
+ "Discriminator Loss: tf.Tensor(0.7522979, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.5923986, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 28500\n",
+ "Discriminator Loss: tf.Tensor(0.6162436, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.8823564, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 28501\n",
+ "Discriminator Loss: tf.Tensor(0.9290431, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.4522943, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 28502\n",
+ "Discriminator Loss: tf.Tensor(0.6863265, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.37990913, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 28503\n",
+ "Discriminator Loss: tf.Tensor(1.4356053, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.8575128, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 28504\n",
+ "Discriminator Loss: tf.Tensor(0.9953021, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.52915686, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 28505\n",
+ "Discriminator Loss: tf.Tensor(0.66187775, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.94659525, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 28506\n",
+ "Discriminator Loss: tf.Tensor(0.52497107, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.7056295, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 28507\n",
+ "Discriminator Loss: tf.Tensor(1.2227046, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.6516371, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 28508\n",
+ "Discriminator Loss: tf.Tensor(0.6831689, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.35896853, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 28509\n",
+ "Discriminator Loss: tf.Tensor(0.57031417, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.3829492, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 28510\n",
+ "Discriminator Loss: tf.Tensor(0.53303087, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.7894657, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 28511\n",
+ "Discriminator Loss: tf.Tensor(0.5543024, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.1585635, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 28512\n",
+ "Discriminator Loss: tf.Tensor(0.49081922, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.3397683, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 28513\n",
+ "Discriminator Loss: tf.Tensor(0.47705114, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.6783436, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 28514\n",
+ "Discriminator Loss: tf.Tensor(1.1882446, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.196029, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 28515\n",
+ "Discriminator Loss: tf.Tensor(0.7485007, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.35610172, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 28516\n",
+ "Discriminator Loss: tf.Tensor(1.5356876, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.425958, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 28517\n",
+ "Discriminator Loss: tf.Tensor(0.70022583, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.5939293, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 28518\n",
+ "Discriminator Loss: tf.Tensor(0.46545282, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.2968553, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 28519\n",
+ "Discriminator Loss: tf.Tensor(0.30063123, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.91527796, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 28520\n",
+ "Discriminator Loss: tf.Tensor(0.6601346, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.3085715, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 28521\n",
+ "Discriminator Loss: tf.Tensor(0.48610532, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.229607, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 28522\n",
+ "Discriminator Loss: tf.Tensor(0.70836425, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.3680755, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 28523\n",
+ "Discriminator Loss: tf.Tensor(0.82277834, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.6399217, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 28524\n",
+ "Discriminator Loss: tf.Tensor(0.8906672, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.81476974, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 28525\n",
+ "Discriminator Loss: tf.Tensor(0.6608743, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.1929725, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 28526\n",
+ "Discriminator Loss: tf.Tensor(0.75787497, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.5390377, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 28527\n",
+ "Discriminator Loss: tf.Tensor(0.50534505, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.1182598, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 28528\n",
+ "Discriminator Loss: tf.Tensor(0.54956913, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.0666631, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 28529\n",
+ "Discriminator Loss: tf.Tensor(0.85318065, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.4945499, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 28530\n",
+ "Discriminator Loss: tf.Tensor(0.8939268, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.2002296, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 28531\n",
+ "Discriminator Loss: tf.Tensor(1.1322331, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.373834, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 28532\n",
+ "Discriminator Loss: tf.Tensor(0.63044465, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.5211293, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 28533\n",
+ "Discriminator Loss: tf.Tensor(0.8298291, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.3024192, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 28534\n",
+ "Discriminator Loss: tf.Tensor(1.0530853, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.4241906, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 28535\n",
+ "Discriminator Loss: tf.Tensor(0.6853491, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.2785869, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 28536\n",
+ "Discriminator Loss: tf.Tensor(0.7129911, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.6000998, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 28537\n",
+ "Discriminator Loss: tf.Tensor(0.6888812, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.5965511, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 28538\n",
+ "Discriminator Loss: tf.Tensor(0.6699436, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.51337314, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 28539\n",
+ "Discriminator Loss: tf.Tensor(1.1006423, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.007862, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 28540\n",
+ "Discriminator Loss: tf.Tensor(0.8038949, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.30859885, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 28541\n",
+ "Discriminator Loss: tf.Tensor(1.1792569, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.1524416, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 28542\n",
+ "Discriminator Loss: tf.Tensor(0.42898175, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.0109336, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 28543\n",
+ "Discriminator Loss: tf.Tensor(0.6728709, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.2681245, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 28544\n",
+ "Discriminator Loss: tf.Tensor(0.4948367, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.58303136, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 28545\n",
+ "Discriminator Loss: tf.Tensor(1.1124058, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.2934201, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 28546\n",
+ "Discriminator Loss: tf.Tensor(0.2086461, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.96894056, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 28547\n",
+ "Discriminator Loss: tf.Tensor(0.5817517, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.8303536, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 28548\n",
+ "Discriminator Loss: tf.Tensor(0.3345108, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.94946784, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 28549\n",
+ "Discriminator Loss: tf.Tensor(0.7591386, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.3208774, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 28550\n",
+ "Discriminator Loss: tf.Tensor(0.2698434, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.1684886, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 28551\n",
+ "Discriminator Loss: tf.Tensor(0.5301365, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.393346, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 28552\n",
+ "Discriminator Loss: tf.Tensor(0.7797137, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.57800764, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 28553\n",
+ "Discriminator Loss: tf.Tensor(0.99972284, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.7730656, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 28554\n",
+ "Discriminator Loss: tf.Tensor(0.6478225, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.53643364, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 28555\n",
+ "Discriminator Loss: tf.Tensor(0.91951966, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.5888014, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 28556\n",
+ "Discriminator Loss: tf.Tensor(0.590139, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.50323546, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 28557\n",
+ "Discriminator Loss: tf.Tensor(1.2677302, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.398241, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 28558\n",
+ "Discriminator Loss: tf.Tensor(0.6275736, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.6083962, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 28559\n",
+ "Discriminator Loss: tf.Tensor(0.7187805, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.80499697, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 28560\n",
+ "Discriminator Loss: tf.Tensor(2.0389717, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.2906471, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 28561\n",
+ "Discriminator Loss: tf.Tensor(0.7054183, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.44662833, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 28562\n",
+ "Discriminator Loss: tf.Tensor(0.75191456, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.2579037, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 28563\n",
+ "Discriminator Loss: tf.Tensor(0.64862835, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.54329467, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 28564\n",
+ "Discriminator Loss: tf.Tensor(0.9579941, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.5138159, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 28565\n",
+ "Discriminator Loss: tf.Tensor(0.73097515, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.3129389, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 28566\n",
+ "Discriminator Loss: tf.Tensor(0.9130937, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.6900887, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 28567\n",
+ "Discriminator Loss: tf.Tensor(0.8221636, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.296073, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 28568\n",
+ "Discriminator Loss: tf.Tensor(0.6839117, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.7067841, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 28569\n",
+ "Discriminator Loss: tf.Tensor(0.4316418, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.71886176, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 28570\n",
+ "Discriminator Loss: tf.Tensor(1.0239869, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.6233593, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 28571\n",
+ "Discriminator Loss: tf.Tensor(0.58349234, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.8399901, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 28572\n",
+ "Discriminator Loss: tf.Tensor(0.67019147, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.297791, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 28573\n",
+ "Discriminator Loss: tf.Tensor(0.7701083, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.4691072, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 28574\n",
+ "Discriminator Loss: tf.Tensor(0.45289043, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.63131976, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 28575\n",
+ "Discriminator Loss: tf.Tensor(0.65124786, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.9317513, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 28576\n",
+ "Discriminator Loss: tf.Tensor(0.4411432, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.81274694, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 28577\n",
+ "Discriminator Loss: tf.Tensor(0.60026586, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.6357917, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 28578\n",
+ "Discriminator Loss: tf.Tensor(0.84220845, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.486097, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 28579\n",
+ "Discriminator Loss: tf.Tensor(0.65972525, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.6516062, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 28580\n",
+ "Discriminator Loss: tf.Tensor(0.5472499, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.641545, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 28581\n",
+ "Discriminator Loss: tf.Tensor(0.47530815, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.5857676, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 28582\n",
+ "Discriminator Loss: tf.Tensor(0.48289752, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.9595947, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 28583\n",
+ "Discriminator Loss: tf.Tensor(0.43921342, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.8138121, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 28584\n",
+ "Discriminator Loss: tf.Tensor(1.7369184, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.8786645, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 28585\n",
+ "Discriminator Loss: tf.Tensor(0.7265278, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.65749127, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 28586\n",
+ "Discriminator Loss: tf.Tensor(0.49414578, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.1529328, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 28587\n",
+ "Discriminator Loss: tf.Tensor(0.39520043, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.251841, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 28588\n",
+ "Discriminator Loss: tf.Tensor(0.6375358, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.082064, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 28589\n",
+ "Discriminator Loss: tf.Tensor(0.9974318, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.90076, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 28590\n",
+ "Discriminator Loss: tf.Tensor(0.55855143, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.6177832, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 28591\n",
+ "Discriminator Loss: tf.Tensor(0.4868885, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.218903, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 28592\n",
+ "Discriminator Loss: tf.Tensor(0.21327835, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.1690903, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 28593\n",
+ "Discriminator Loss: tf.Tensor(0.81904155, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.3525609, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 28594\n",
+ "Discriminator Loss: tf.Tensor(1.0340959, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.14020698, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 28595\n",
+ "Discriminator Loss: tf.Tensor(1.5305356, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.4665037, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 28596\n",
+ "Discriminator Loss: tf.Tensor(0.57553214, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.6128763, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 28597\n",
+ "Discriminator Loss: tf.Tensor(0.7009401, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.2549412, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 28598\n",
+ "Discriminator Loss: tf.Tensor(0.5494161, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.4076028, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 28599\n",
+ "Discriminator Loss: tf.Tensor(0.6864023, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.1321894, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 28600\n",
+ "Discriminator Loss: tf.Tensor(0.9696762, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.22141115, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 28601\n",
+ "Discriminator Loss: tf.Tensor(1.2860389, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.0870072, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 28602\n",
+ "Discriminator Loss: tf.Tensor(0.7949244, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.9851532, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 28603\n",
+ "Discriminator Loss: tf.Tensor(0.54041976, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.72564334, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 28604\n",
+ "Discriminator Loss: tf.Tensor(1.5659087, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.2043703, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 28605\n",
+ "Discriminator Loss: tf.Tensor(0.9837213, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.14998096, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 28606\n",
+ "Discriminator Loss: tf.Tensor(0.86498654, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.0086483, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 28607\n",
+ "Discriminator Loss: tf.Tensor(0.61681783, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.65006304, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 28608\n",
+ "Discriminator Loss: tf.Tensor(0.87201285, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.1648482, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 28609\n",
+ "Discriminator Loss: tf.Tensor(0.34661365, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.7309808, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 28610\n",
+ "Discriminator Loss: tf.Tensor(1.5727463, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.3268795, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 28611\n",
+ "Discriminator Loss: tf.Tensor(0.71055007, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.4839624, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 28612\n",
+ "Discriminator Loss: tf.Tensor(0.6824188, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.0388001, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 28613\n",
+ "Discriminator Loss: tf.Tensor(0.20965898, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.1034492, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 28614\n",
+ "Discriminator Loss: tf.Tensor(0.73527616, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.0192246, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 28615\n",
+ "Discriminator Loss: tf.Tensor(0.41574055, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.1725534, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 28616\n",
+ "Discriminator Loss: tf.Tensor(0.4933798, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.9342343, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 28617\n",
+ "Discriminator Loss: tf.Tensor(0.5343739, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.3799378, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 28618\n",
+ "Discriminator Loss: tf.Tensor(0.7419464, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.42948356, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 28619\n",
+ "Discriminator Loss: tf.Tensor(1.2745665, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.6021742, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 28620\n",
+ "Discriminator Loss: tf.Tensor(0.55781317, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.53826493, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 28621\n",
+ "Discriminator Loss: tf.Tensor(1.2807162, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.4410567, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 28622\n",
+ "Discriminator Loss: tf.Tensor(0.5461825, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.814822, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 28623\n",
+ "Discriminator Loss: tf.Tensor(0.8080803, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.4928306, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 28624\n",
+ "Discriminator Loss: tf.Tensor(0.42300367, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.8850431, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 28625\n",
+ "Discriminator Loss: tf.Tensor(0.36242363, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.6000243, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 28626\n",
+ "Discriminator Loss: tf.Tensor(0.6487195, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.4772626, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 28627\n",
+ "Discriminator Loss: tf.Tensor(1.2681987, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.0798929, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 28628\n",
+ "Discriminator Loss: tf.Tensor(0.36136338, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.844053, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 28629\n",
+ "Discriminator Loss: tf.Tensor(0.586347, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.1767375, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 28630\n",
+ "Discriminator Loss: tf.Tensor(0.44473034, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.8523372, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 28631\n",
+ "Discriminator Loss: tf.Tensor(1.3117859, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.9997087, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 28632\n",
+ "Discriminator Loss: tf.Tensor(0.6819456, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.44426277, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 28633\n",
+ "Discriminator Loss: tf.Tensor(0.92842567, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.5227803, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 28634\n",
+ "Discriminator Loss: tf.Tensor(0.69400847, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.4001392, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 28635\n",
+ "Discriminator Loss: tf.Tensor(0.7127069, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.4479293, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 28636\n",
+ "Discriminator Loss: tf.Tensor(0.8218813, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.5247223, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 28637\n",
+ "Discriminator Loss: tf.Tensor(1.2733018, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.3743756, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 28638\n",
+ "Discriminator Loss: tf.Tensor(0.47156098, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.767284, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 28639\n",
+ "Discriminator Loss: tf.Tensor(0.64248997, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.3421463, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 28640\n",
+ "Discriminator Loss: tf.Tensor(0.21657345, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.1816127, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 28641\n",
+ "Discriminator Loss: tf.Tensor(0.81057763, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.77561903, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 28642\n",
+ "Discriminator Loss: tf.Tensor(0.72350466, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.5913929, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 28643\n",
+ "Discriminator Loss: tf.Tensor(0.37267408, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.7603529, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 28644\n",
+ "Discriminator Loss: tf.Tensor(1.2669661, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.9559393, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 28645\n",
+ "Discriminator Loss: tf.Tensor(0.97616273, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.36638978, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 28646\n",
+ "Discriminator Loss: tf.Tensor(0.70482683, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.6559849, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 28647\n",
+ "Discriminator Loss: tf.Tensor(0.7656939, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.48450097, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 28648\n",
+ "Discriminator Loss: tf.Tensor(0.6213877, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.4520441, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 28649\n",
+ "Discriminator Loss: tf.Tensor(0.8161387, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.69848126, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 28650\n",
+ "Discriminator Loss: tf.Tensor(0.5212034, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.5908371, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 28651\n",
+ "Discriminator Loss: tf.Tensor(0.69757295, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.6434939, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 28652\n",
+ "Discriminator Loss: tf.Tensor(0.9530971, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.5124311, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 28653\n",
+ "Discriminator Loss: tf.Tensor(0.5804621, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.5781784, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 28654\n",
+ "Discriminator Loss: tf.Tensor(1.1969024, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.8594087, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 28655\n",
+ "Discriminator Loss: tf.Tensor(0.97931737, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.30339962, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 28656\n",
+ "Discriminator Loss: tf.Tensor(0.64582247, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.3102957, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 28657\n",
+ "Discriminator Loss: tf.Tensor(0.6120043, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.4471322, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 28658\n",
+ "Discriminator Loss: tf.Tensor(0.87483406, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.1495723, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 28659\n",
+ "Discriminator Loss: tf.Tensor(1.0360954, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.4583892, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 28660\n",
+ "Discriminator Loss: tf.Tensor(0.75974154, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.7527376, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 28661\n",
+ "Discriminator Loss: tf.Tensor(0.528722, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.95706224, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 28662\n",
+ "Discriminator Loss: tf.Tensor(0.5900458, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.7228411, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 28663\n",
+ "Discriminator Loss: tf.Tensor(0.6356328, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.4809704, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 28664\n",
+ "Discriminator Loss: tf.Tensor(0.99586344, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.7039566, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 28665\n",
+ "Discriminator Loss: tf.Tensor(0.55617404, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.6956993, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 28666\n",
+ "Discriminator Loss: tf.Tensor(1.08715, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.4804894, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 28667\n",
+ "Discriminator Loss: tf.Tensor(0.7398367, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.4169314, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 28668\n",
+ "Discriminator Loss: tf.Tensor(0.5136447, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.3834524, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 28669\n",
+ "Discriminator Loss: tf.Tensor(0.3958071, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.6928112, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 28670\n",
+ "Discriminator Loss: tf.Tensor(0.9445298, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.236685, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 28671\n",
+ "Discriminator Loss: tf.Tensor(0.5736222, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.850292, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 28672\n",
+ "Discriminator Loss: tf.Tensor(0.4925825, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.5050465, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 28673\n",
+ "Discriminator Loss: tf.Tensor(0.40815878, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.63403755, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 28674\n",
+ "Discriminator Loss: tf.Tensor(1.8857117, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.6037617, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 28675\n",
+ "Discriminator Loss: tf.Tensor(0.5736422, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.0209168, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 28676\n",
+ "Discriminator Loss: tf.Tensor(0.364243, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.2121345, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 28677\n",
+ "Discriminator Loss: tf.Tensor(0.31312534, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.2158183, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 28678\n",
+ "Discriminator Loss: tf.Tensor(0.56941414, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.2305803, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 28679\n",
+ "Discriminator Loss: tf.Tensor(0.53787637, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.1629248, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 28680\n",
+ "Discriminator Loss: tf.Tensor(0.4568444, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.90529317, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 28681\n",
+ "Discriminator Loss: tf.Tensor(0.9938363, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.612175, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 28682\n",
+ "Discriminator Loss: tf.Tensor(0.4384894, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.6117683, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 28683\n",
+ "Discriminator Loss: tf.Tensor(1.291443, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.8408924, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 28684\n",
+ "Discriminator Loss: tf.Tensor(0.9938722, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.30193093, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 28685\n",
+ "Discriminator Loss: tf.Tensor(0.78529906, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.6125957, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 28686\n",
+ "Discriminator Loss: tf.Tensor(0.5916891, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.56877095, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 28687\n",
+ "Discriminator Loss: tf.Tensor(1.270228, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.9918299, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 28688\n",
+ "Discriminator Loss: tf.Tensor(0.7700578, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.094872, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 28689\n",
+ "Discriminator Loss: tf.Tensor(0.41772535, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.3715225, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 28690\n",
+ "Discriminator Loss: tf.Tensor(0.6400838, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.5598614, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 28691\n",
+ "Discriminator Loss: tf.Tensor(1.0483721, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.8753886, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 28692\n",
+ "Discriminator Loss: tf.Tensor(0.817263, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.4080911, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 28693\n",
+ "Discriminator Loss: tf.Tensor(0.51670146, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.1697624, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 28694\n",
+ "Discriminator Loss: tf.Tensor(0.8500777, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.8532745, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 28695\n",
+ "Discriminator Loss: tf.Tensor(0.54399586, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.2124841, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 28696\n",
+ "Discriminator Loss: tf.Tensor(0.85054785, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.39436257, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 28697\n",
+ "Discriminator Loss: tf.Tensor(0.7179059, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.650709, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 28698\n",
+ "Discriminator Loss: tf.Tensor(0.46704656, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.8176711, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 28699\n",
+ "Discriminator Loss: tf.Tensor(0.5075639, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.1845421, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 28700\n",
+ "Discriminator Loss: tf.Tensor(0.795842, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.81098527, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 28701\n",
+ "Discriminator Loss: tf.Tensor(0.92633057, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.212161, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 28702\n",
+ "Discriminator Loss: tf.Tensor(0.66197693, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.4148424, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 28703\n",
+ "Discriminator Loss: tf.Tensor(1.1238511, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.293111, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 28704\n",
+ "Discriminator Loss: tf.Tensor(0.43730313, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.7630079, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 28705\n",
+ "Discriminator Loss: tf.Tensor(0.6295517, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.5223726, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 28706\n",
+ "Discriminator Loss: tf.Tensor(0.3413658, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.92420167, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 28707\n",
+ "Discriminator Loss: tf.Tensor(0.45171344, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.1227762, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 28708\n",
+ "Discriminator Loss: tf.Tensor(0.6695876, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.1563977, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 28709\n",
+ "Discriminator Loss: tf.Tensor(0.50153697, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.7093313, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 28710\n",
+ "Discriminator Loss: tf.Tensor(0.8628311, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.3895737, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 28711\n",
+ "Discriminator Loss: tf.Tensor(0.47590607, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.6570829, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 28712\n",
+ "Discriminator Loss: tf.Tensor(0.8077302, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.8652669, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 28713\n",
+ "Discriminator Loss: tf.Tensor(0.47958356, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.62845963, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 28714\n",
+ "Discriminator Loss: tf.Tensor(1.5730157, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.054671, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 28715\n",
+ "Discriminator Loss: tf.Tensor(0.6903216, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.43785584, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 28716\n",
+ "Discriminator Loss: tf.Tensor(0.86858815, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.2708915, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 28717\n",
+ "Discriminator Loss: tf.Tensor(0.3189428, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.8844889, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 28718\n",
+ "Discriminator Loss: tf.Tensor(0.60824615, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.2669064, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 28719\n",
+ "Discriminator Loss: tf.Tensor(0.42510378, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.2507187, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 28720\n",
+ "Discriminator Loss: tf.Tensor(0.52029824, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.3267192, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 28721\n",
+ "Discriminator Loss: tf.Tensor(0.48522675, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.7989475, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 28722\n",
+ "Discriminator Loss: tf.Tensor(0.94255215, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.9740988, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 28723\n",
+ "Discriminator Loss: tf.Tensor(0.81849086, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.6306015, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 28724\n",
+ "Discriminator Loss: tf.Tensor(0.5130943, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.4589654, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 28725\n",
+ "Discriminator Loss: tf.Tensor(0.52020997, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.551486, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 28726\n",
+ "Discriminator Loss: tf.Tensor(1.1567276, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.4959866, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 28727\n",
+ "Discriminator Loss: tf.Tensor(0.7848105, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.5662047, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 28728\n",
+ "Discriminator Loss: tf.Tensor(0.6719409, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.5080682, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 28729\n",
+ "Discriminator Loss: tf.Tensor(0.39523208, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.68419963, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 28730\n",
+ "Discriminator Loss: tf.Tensor(0.77684635, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.5892814, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 28731\n",
+ "Discriminator Loss: tf.Tensor(0.5006135, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.74316186, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 28732\n",
+ "Discriminator Loss: tf.Tensor(0.5998488, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.0861437, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 28733\n",
+ "Discriminator Loss: tf.Tensor(0.51647663, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.1945587, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 28734\n",
+ "Discriminator Loss: tf.Tensor(0.24952185, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.9484938, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 28735\n",
+ "Discriminator Loss: tf.Tensor(1.1492119, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.0322657, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 28736\n",
+ "Discriminator Loss: tf.Tensor(0.40171, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.75312614, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 28737\n",
+ "Discriminator Loss: tf.Tensor(1.2493497, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.7845736, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 28738\n",
+ "Discriminator Loss: tf.Tensor(0.85626304, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.17852123, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 28739\n",
+ "Discriminator Loss: tf.Tensor(1.2160691, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.2449503, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 28740\n",
+ "Discriminator Loss: tf.Tensor(0.77978003, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.389492, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 28741\n",
+ "Discriminator Loss: tf.Tensor(0.8844862, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.1031674, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 28742\n",
+ "Discriminator Loss: tf.Tensor(0.9480172, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.5838956, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 28743\n",
+ "Discriminator Loss: tf.Tensor(0.63968384, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.4128094, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 28744\n",
+ "Discriminator Loss: tf.Tensor(0.23162128, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.1351943, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 28745\n",
+ "Discriminator Loss: tf.Tensor(0.8527831, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.95918965, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 28746\n",
+ "Discriminator Loss: tf.Tensor(0.63370216, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.0138754, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 28747\n",
+ "Discriminator Loss: tf.Tensor(0.7047396, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.209246, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 28748\n",
+ "Discriminator Loss: tf.Tensor(0.40805504, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.7413735, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 28749\n",
+ "Discriminator Loss: tf.Tensor(1.4574087, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.1174948, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 28750\n",
+ "Discriminator Loss: tf.Tensor(0.8930003, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.603386, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 28751\n",
+ "Discriminator Loss: tf.Tensor(0.6217431, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.0916349, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 28752\n",
+ "Discriminator Loss: tf.Tensor(0.77421093, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.6507445, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 28753\n",
+ "Discriminator Loss: tf.Tensor(0.56848216, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.2921365, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 28754\n",
+ "Discriminator Loss: tf.Tensor(0.7710058, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.9609826, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 28755\n",
+ "Discriminator Loss: tf.Tensor(0.56871635, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.1604388, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 28756\n",
+ "Discriminator Loss: tf.Tensor(0.29790905, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.1588857, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 28757\n",
+ "Discriminator Loss: tf.Tensor(0.6504318, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.9875595, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 28758\n",
+ "Discriminator Loss: tf.Tensor(0.64818764, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.3607064, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 28759\n",
+ "Discriminator Loss: tf.Tensor(0.5987967, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.6980927, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 28760\n",
+ "Discriminator Loss: tf.Tensor(1.3845637, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.6896116, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 28761\n",
+ "Discriminator Loss: tf.Tensor(0.7800767, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.28427485, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 28762\n",
+ "Discriminator Loss: tf.Tensor(0.8124316, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.9879837, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 28763\n",
+ "Discriminator Loss: tf.Tensor(0.30140984, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.0950075, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 28764\n",
+ "Discriminator Loss: tf.Tensor(1.1553494, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.3235749, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 28765\n",
+ "Discriminator Loss: tf.Tensor(0.6710535, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.48623034, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 28766\n",
+ "Discriminator Loss: tf.Tensor(0.94898176, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.0993265, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 28767\n",
+ "Discriminator Loss: tf.Tensor(0.7626895, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.6775243, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 28768\n",
+ "Discriminator Loss: tf.Tensor(0.7034417, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.6611887, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 28769\n",
+ "Discriminator Loss: tf.Tensor(0.8321043, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.3055718, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 28770\n",
+ "Discriminator Loss: tf.Tensor(0.5790386, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.6164852, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 28771\n",
+ "Discriminator Loss: tf.Tensor(0.7006141, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.1591443, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 28772\n",
+ "Discriminator Loss: tf.Tensor(0.21941784, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.0939578, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 28773\n",
+ "Discriminator Loss: tf.Tensor(0.66481066, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.4378752, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 28774\n",
+ "Discriminator Loss: tf.Tensor(0.5464593, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.70817405, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 28775\n",
+ "Discriminator Loss: tf.Tensor(0.8848411, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.4617251, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 28776\n",
+ "Discriminator Loss: tf.Tensor(0.85274553, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.38426074, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 28777\n",
+ "Discriminator Loss: tf.Tensor(1.1010013, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.7534887, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 28778\n",
+ "Discriminator Loss: tf.Tensor(0.5698181, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.47812796, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 28779\n",
+ "Discriminator Loss: tf.Tensor(0.8603517, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.7998242, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 28780\n",
+ "Discriminator Loss: tf.Tensor(0.99246275, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.46450138, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 28781\n",
+ "Discriminator Loss: tf.Tensor(0.8004077, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.8752739, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 28782\n",
+ "Discriminator Loss: tf.Tensor(0.5417145, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.0335763, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 28783\n",
+ "Discriminator Loss: tf.Tensor(0.48826104, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.4624939, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 28784\n",
+ "Discriminator Loss: tf.Tensor(0.6668372, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.60439426, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 28785\n",
+ "Discriminator Loss: tf.Tensor(0.7414964, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.2121029, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 28786\n",
+ "Discriminator Loss: tf.Tensor(1.0316557, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.058452368, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 28787\n",
+ "Discriminator Loss: tf.Tensor(0.4811759, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.7050023, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 28788\n",
+ "Discriminator Loss: tf.Tensor(0.5098244, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.6647268, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 28789\n",
+ "Discriminator Loss: tf.Tensor(0.33321851, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.2648684, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 28790\n",
+ "Discriminator Loss: tf.Tensor(0.9963845, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.6642891, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 28791\n",
+ "Discriminator Loss: tf.Tensor(0.44704455, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.7551518, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 28792\n",
+ "Discriminator Loss: tf.Tensor(0.6743398, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.0250305, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 28793\n",
+ "Discriminator Loss: tf.Tensor(0.44719365, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.170784, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 28794\n",
+ "Discriminator Loss: tf.Tensor(1.1016101, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.5023141, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 28795\n",
+ "Discriminator Loss: tf.Tensor(0.8908274, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.39839932, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 28796\n",
+ "Discriminator Loss: tf.Tensor(0.5549596, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.5831825, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 28797\n",
+ "Discriminator Loss: tf.Tensor(0.56585366, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.5721881, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 28798\n",
+ "Discriminator Loss: tf.Tensor(0.4448353, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.4886745, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 28799\n",
+ "Discriminator Loss: tf.Tensor(0.6921706, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.5823838, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 28800\n",
+ "Discriminator Loss: tf.Tensor(0.48573238, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.7099061, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 28801\n",
+ "Discriminator Loss: tf.Tensor(0.9874482, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.6625456, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 28802\n",
+ "Discriminator Loss: tf.Tensor(0.87901074, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.32256213, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 28803\n",
+ "Discriminator Loss: tf.Tensor(0.97681147, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.0401205, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 28804\n",
+ "Discriminator Loss: tf.Tensor(0.6379568, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.8770185, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 28805\n",
+ "Discriminator Loss: tf.Tensor(0.63169086, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.2772075, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 28806\n",
+ "Discriminator Loss: tf.Tensor(0.7990932, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.4081386, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 28807\n",
+ "Discriminator Loss: tf.Tensor(1.084836, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.6649895, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 28808\n",
+ "Discriminator Loss: tf.Tensor(0.8368596, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.4541874, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 28809\n",
+ "Discriminator Loss: tf.Tensor(0.7768361, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.4227623, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 28810\n",
+ "Discriminator Loss: tf.Tensor(0.753597, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.2609988, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 28811\n",
+ "Discriminator Loss: tf.Tensor(1.142808, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.3994427, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 28812\n",
+ "Discriminator Loss: tf.Tensor(0.73213166, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.513247, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 28813\n",
+ "Discriminator Loss: tf.Tensor(0.22518316, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.1150546, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 28814\n",
+ "Discriminator Loss: tf.Tensor(0.47110474, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.2059821, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 28815\n",
+ "Discriminator Loss: tf.Tensor(0.63841873, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.4981894, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 28816\n",
+ "Discriminator Loss: tf.Tensor(0.93933445, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.29295102, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 28817\n",
+ "Discriminator Loss: tf.Tensor(1.0222845, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.7561878, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 28818\n",
+ "Discriminator Loss: tf.Tensor(0.72744614, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.52399963, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 28819\n",
+ "Discriminator Loss: tf.Tensor(0.7080571, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.4530302, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 28820\n",
+ "Discriminator Loss: tf.Tensor(0.32049036, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.9340694, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 28821\n",
+ "Discriminator Loss: tf.Tensor(0.7583157, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.2946812, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 28822\n",
+ "Discriminator Loss: tf.Tensor(0.33745617, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.1525186, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 28823\n",
+ "Discriminator Loss: tf.Tensor(0.40142584, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.3981384, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 28824\n",
+ "Discriminator Loss: tf.Tensor(0.69504344, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.40344477, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 28825\n",
+ "Discriminator Loss: tf.Tensor(1.1902596, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.6525526, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 28826\n",
+ "Discriminator Loss: tf.Tensor(0.6618898, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.7883555, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 28827\n",
+ "Discriminator Loss: tf.Tensor(1.0261269, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.533195, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 28828\n",
+ "Discriminator Loss: tf.Tensor(0.49312824, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.7904751, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 28829\n",
+ "Discriminator Loss: tf.Tensor(1.0300133, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.9105886, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 28830\n",
+ "Discriminator Loss: tf.Tensor(0.43521652, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.6314065, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 28831\n",
+ "Discriminator Loss: tf.Tensor(0.9993324, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.7664785, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 28832\n",
+ "Discriminator Loss: tf.Tensor(0.55778563, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.043938, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 28833\n",
+ "Discriminator Loss: tf.Tensor(0.26682785, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.87356013, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 28834\n",
+ "Discriminator Loss: tf.Tensor(0.9086035, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.4773121, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 28835\n",
+ "Discriminator Loss: tf.Tensor(0.77166295, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.3086793, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 28836\n",
+ "Discriminator Loss: tf.Tensor(1.011543, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.4574035, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 28837\n",
+ "Discriminator Loss: tf.Tensor(0.77300787, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.3359104, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 28838\n",
+ "Discriminator Loss: tf.Tensor(0.8169117, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.8199587, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 28839\n",
+ "Discriminator Loss: tf.Tensor(0.59313893, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.57618785, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 28840\n",
+ "Discriminator Loss: tf.Tensor(1.3708184, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.6761316, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 28841\n",
+ "Discriminator Loss: tf.Tensor(0.84542465, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.1770125, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 28842\n",
+ "Discriminator Loss: tf.Tensor(0.5862156, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.3474118, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 28843\n",
+ "Discriminator Loss: tf.Tensor(0.5115981, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.76953834, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 28844\n",
+ "Discriminator Loss: tf.Tensor(0.25123522, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.2264277, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 28845\n",
+ "Discriminator Loss: tf.Tensor(0.34637174, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.3504215, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 28846\n",
+ "Discriminator Loss: tf.Tensor(0.22499079, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.2371502, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 28847\n",
+ "Discriminator Loss: tf.Tensor(0.19291686, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.390233, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 28848\n",
+ "Discriminator Loss: tf.Tensor(0.6997955, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.90486246, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 28849\n",
+ "Discriminator Loss: tf.Tensor(1.2268176, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.601921, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 28850\n",
+ "Discriminator Loss: tf.Tensor(0.66906947, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.51892215, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 28851\n",
+ "Discriminator Loss: tf.Tensor(0.94606173, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.2533956, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 28852\n",
+ "Discriminator Loss: tf.Tensor(0.45232475, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.8847019, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 28853\n",
+ "Discriminator Loss: tf.Tensor(1.1266735, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.3747983, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 28854\n",
+ "Discriminator Loss: tf.Tensor(1.1454842, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.009949081, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 28855\n",
+ "Discriminator Loss: tf.Tensor(0.72072524, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.3251251, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 28856\n",
+ "Discriminator Loss: tf.Tensor(0.94032305, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.8773747, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 28857\n",
+ "Discriminator Loss: tf.Tensor(0.7356271, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.1662344, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 28858\n",
+ "Discriminator Loss: tf.Tensor(0.9070687, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.21832852, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 28859\n",
+ "Discriminator Loss: tf.Tensor(0.72476697, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.3445578, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 28860\n",
+ "Discriminator Loss: tf.Tensor(0.55936825, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.72677565, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 28861\n",
+ "Discriminator Loss: tf.Tensor(0.79360783, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.3067852, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 28862\n",
+ "Discriminator Loss: tf.Tensor(0.4185959, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.7014659, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 28863\n",
+ "Discriminator Loss: tf.Tensor(1.5598418, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.8621172, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 28864\n",
+ "Discriminator Loss: tf.Tensor(0.43646044, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.79579085, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 28865\n",
+ "Discriminator Loss: tf.Tensor(0.5327589, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.8117714, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 28866\n",
+ "Discriminator Loss: tf.Tensor(0.433968, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.8680857, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 28867\n",
+ "Discriminator Loss: tf.Tensor(0.694385, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.7916638, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 28868\n",
+ "Discriminator Loss: tf.Tensor(0.66021633, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.4945599, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 28869\n",
+ "Discriminator Loss: tf.Tensor(0.6357628, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.0074003, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 28870\n",
+ "Discriminator Loss: tf.Tensor(0.26608336, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.8874194, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 28871\n",
+ "Discriminator Loss: tf.Tensor(0.5204599, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.0662146, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 28872\n",
+ "Discriminator Loss: tf.Tensor(0.15706328, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.0378944, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 28873\n",
+ "Discriminator Loss: tf.Tensor(0.85396814, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.4741575, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 28874\n",
+ "Discriminator Loss: tf.Tensor(0.49479946, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.6698429, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 28875\n",
+ "Discriminator Loss: tf.Tensor(1.1641833, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.0162231, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 28876\n",
+ "Discriminator Loss: tf.Tensor(0.23346901, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.1442405, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 28877\n",
+ "Discriminator Loss: tf.Tensor(0.8272453, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.3362373, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 28878\n",
+ "Discriminator Loss: tf.Tensor(0.632509, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.5677636, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 28879\n",
+ "Discriminator Loss: tf.Tensor(1.2827942, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.8030657, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 28880\n",
+ "Discriminator Loss: tf.Tensor(1.0940208, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.11142999, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 28881\n",
+ "Discriminator Loss: tf.Tensor(1.5125647, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.2018191, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 28882\n",
+ "Discriminator Loss: tf.Tensor(0.60326445, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.677481, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 28883\n",
+ "Discriminator Loss: tf.Tensor(0.6933377, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.2352825, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 28884\n",
+ "Discriminator Loss: tf.Tensor(0.42061818, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.2122086, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 28885\n",
+ "Discriminator Loss: tf.Tensor(0.38572147, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.81687194, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 28886\n",
+ "Discriminator Loss: tf.Tensor(0.62470603, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.3936328, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 28887\n",
+ "Discriminator Loss: tf.Tensor(1.3884043, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.085639425, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 28888\n",
+ "Discriminator Loss: tf.Tensor(0.871523, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.3962358, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 28889\n",
+ "Discriminator Loss: tf.Tensor(0.9992376, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.1177068, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 28890\n",
+ "Discriminator Loss: tf.Tensor(0.73638797, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.6253837, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 28891\n",
+ "Discriminator Loss: tf.Tensor(0.562799, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.69395113, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 28892\n",
+ "Discriminator Loss: tf.Tensor(0.5059896, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.0693846, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 28893\n",
+ "Discriminator Loss: tf.Tensor(0.667942, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.8326876, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 28894\n",
+ "Discriminator Loss: tf.Tensor(0.830744, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.5698043, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 28895\n",
+ "Discriminator Loss: tf.Tensor(0.73227644, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.5246819, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 28896\n",
+ "Discriminator Loss: tf.Tensor(0.9681672, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.7633271, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 28897\n",
+ "Discriminator Loss: tf.Tensor(0.54668504, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.735673, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 28898\n",
+ "Discriminator Loss: tf.Tensor(0.41036075, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.0614533, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 28899\n",
+ "Discriminator Loss: tf.Tensor(0.22784239, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.396871, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 28900\n",
+ "Discriminator Loss: tf.Tensor(0.7804371, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.8979059, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 28901\n",
+ "Discriminator Loss: tf.Tensor(1.2164896, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.7110974, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 28902\n",
+ "Discriminator Loss: tf.Tensor(1.0929048, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.059085798, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 28903\n",
+ "Discriminator Loss: tf.Tensor(0.69532347, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.6522366, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 28904\n",
+ "Discriminator Loss: tf.Tensor(0.8608197, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.26440442, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 28905\n",
+ "Discriminator Loss: tf.Tensor(1.1565835, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.3453022, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 28906\n",
+ "Discriminator Loss: tf.Tensor(0.7927922, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.6970296, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 28907\n",
+ "Discriminator Loss: tf.Tensor(0.4594652, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.041851, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 28908\n",
+ "Discriminator Loss: tf.Tensor(0.6130809, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.4309897, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 28909\n",
+ "Discriminator Loss: tf.Tensor(0.65401363, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.49996415, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 28910\n",
+ "Discriminator Loss: tf.Tensor(0.73137665, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.298568, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 28911\n",
+ "Discriminator Loss: tf.Tensor(0.5347219, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.92580825, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 28912\n",
+ "Discriminator Loss: tf.Tensor(0.39113924, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.96842784, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 28913\n",
+ "Discriminator Loss: tf.Tensor(0.8236382, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.094538, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 28914\n",
+ "Discriminator Loss: tf.Tensor(0.11965017, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.0990932, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 28915\n",
+ "Discriminator Loss: tf.Tensor(0.64236283, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.6647541, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 28916\n",
+ "Discriminator Loss: tf.Tensor(0.7826764, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.5330337, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 28917\n",
+ "Discriminator Loss: tf.Tensor(0.75216174, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.55575526, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 28918\n",
+ "Discriminator Loss: tf.Tensor(1.1413333, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.89784235, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 28919\n",
+ "Discriminator Loss: tf.Tensor(0.98179626, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.5590693, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 28920\n",
+ "Discriminator Loss: tf.Tensor(1.1105341, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.1652143, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 28921\n",
+ "Discriminator Loss: tf.Tensor(0.92032385, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.9587786, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 28922\n",
+ "Discriminator Loss: tf.Tensor(0.5107962, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.83000153, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 28923\n",
+ "Discriminator Loss: tf.Tensor(0.70877546, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.4256741, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 28924\n",
+ "Discriminator Loss: tf.Tensor(0.47143403, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.3411436, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 28925\n",
+ "Discriminator Loss: tf.Tensor(0.56184053, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.58206147, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 28926\n",
+ "Discriminator Loss: tf.Tensor(1.1307236, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.0140862, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 28927\n",
+ "Discriminator Loss: tf.Tensor(0.7830524, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.46593967, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 28928\n",
+ "Discriminator Loss: tf.Tensor(0.6278354, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.5385032, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 28929\n",
+ "Discriminator Loss: tf.Tensor(0.46934852, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.6578874, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 28930\n",
+ "Discriminator Loss: tf.Tensor(0.77659357, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.5938896, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 28931\n",
+ "Discriminator Loss: tf.Tensor(0.73715484, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.61238915, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 28932\n",
+ "Discriminator Loss: tf.Tensor(0.508503, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.4602417, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 28933\n",
+ "Discriminator Loss: tf.Tensor(0.6831315, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.90135, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 28934\n",
+ "Discriminator Loss: tf.Tensor(0.12427719, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.102882, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 28935\n",
+ "Discriminator Loss: tf.Tensor(0.49316114, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.3734497, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 28936\n",
+ "Discriminator Loss: tf.Tensor(0.7601109, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.86353207, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 28937\n",
+ "Discriminator Loss: tf.Tensor(0.6143991, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.8190682, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 28938\n",
+ "Discriminator Loss: tf.Tensor(1.4627334, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.9738806, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 28939\n",
+ "Discriminator Loss: tf.Tensor(0.7284986, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.42411447, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 28940\n",
+ "Discriminator Loss: tf.Tensor(0.9272058, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.4740793, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 28941\n",
+ "Discriminator Loss: tf.Tensor(0.60425717, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.071575, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 28942\n",
+ "Discriminator Loss: tf.Tensor(0.45075405, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.94071597, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 28943\n",
+ "Discriminator Loss: tf.Tensor(1.0952694, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.5657691, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 28944\n",
+ "Discriminator Loss: tf.Tensor(1.0205566, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.16035855, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 28945\n",
+ "Discriminator Loss: tf.Tensor(0.96447265, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.5869163, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 28946\n",
+ "Discriminator Loss: tf.Tensor(0.71881634, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.47642672, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 28947\n",
+ "Discriminator Loss: tf.Tensor(0.84314096, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.4775776, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 28948\n",
+ "Discriminator Loss: tf.Tensor(0.49943233, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.7030132, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 28949\n",
+ "Discriminator Loss: tf.Tensor(0.5802755, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.1571013, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 28950\n",
+ "Discriminator Loss: tf.Tensor(0.6065552, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.5378873, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 28951\n",
+ "Discriminator Loss: tf.Tensor(1.2338725, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.1649406, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 28952\n",
+ "Discriminator Loss: tf.Tensor(0.46936545, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.6344862, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 28953\n",
+ "Discriminator Loss: tf.Tensor(0.94345605, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.8031844, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 28954\n",
+ "Discriminator Loss: tf.Tensor(0.54453814, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.7159079, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 28955\n",
+ "Discriminator Loss: tf.Tensor(0.5153554, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.1060647, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 28956\n",
+ "Discriminator Loss: tf.Tensor(0.9015862, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.4261116, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 28957\n",
+ "Discriminator Loss: tf.Tensor(0.7837353, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.33160424, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 28958\n",
+ "Discriminator Loss: tf.Tensor(0.5752113, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.3161899, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 28959\n",
+ "Discriminator Loss: tf.Tensor(0.6004459, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.44542816, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 28960\n",
+ "Discriminator Loss: tf.Tensor(0.7911496, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.6167351, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 28961\n",
+ "Discriminator Loss: tf.Tensor(0.5118205, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.59480137, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 28962\n",
+ "Discriminator Loss: tf.Tensor(0.8330525, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.3590025, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 28963\n",
+ "Discriminator Loss: tf.Tensor(0.38138768, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.0272228, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 28964\n",
+ "Discriminator Loss: tf.Tensor(0.81321687, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.3011185, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 28965\n",
+ "Discriminator Loss: tf.Tensor(0.6003012, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.99476415, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 28966\n",
+ "Discriminator Loss: tf.Tensor(0.23501284, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.1660453, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 28967\n",
+ "Discriminator Loss: tf.Tensor(0.589242, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.3537749, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 28968\n",
+ "Discriminator Loss: tf.Tensor(0.39664173, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.89822465, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 28969\n",
+ "Discriminator Loss: tf.Tensor(0.14157462, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.5041851, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 28970\n",
+ "Discriminator Loss: tf.Tensor(1.3748991, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.6468011, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 28971\n",
+ "Discriminator Loss: tf.Tensor(0.81189895, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.27321836, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 28972\n",
+ "Discriminator Loss: tf.Tensor(1.2165952, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.3603157, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 28973\n",
+ "Discriminator Loss: tf.Tensor(0.7905064, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.42471957, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 28974\n",
+ "Discriminator Loss: tf.Tensor(1.198998, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.6268663, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 28975\n",
+ "Discriminator Loss: tf.Tensor(1.473844, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.09707639, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 28976\n",
+ "Discriminator Loss: tf.Tensor(0.63274384, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.892749, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 28977\n",
+ "Discriminator Loss: tf.Tensor(0.39647818, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.2081189, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 28978\n",
+ "Discriminator Loss: tf.Tensor(0.5309765, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.89214045, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 28979\n",
+ "Discriminator Loss: tf.Tensor(1.1308163, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.6282358, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 28980\n",
+ "Discriminator Loss: tf.Tensor(0.60660243, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.46932736, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 28981\n",
+ "Discriminator Loss: tf.Tensor(1.0726146, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.0747458, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 28982\n",
+ "Discriminator Loss: tf.Tensor(0.5523418, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.9136507, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 28983\n",
+ "Discriminator Loss: tf.Tensor(0.6383074, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.1068805, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 28984\n",
+ "Discriminator Loss: tf.Tensor(0.18204173, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.1332101, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 28985\n",
+ "Discriminator Loss: tf.Tensor(0.47728458, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.1998898, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 28986\n",
+ "Discriminator Loss: tf.Tensor(0.5885912, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.82994944, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 28987\n",
+ "Discriminator Loss: tf.Tensor(1.2701291, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.1625483, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 28988\n",
+ "Discriminator Loss: tf.Tensor(0.63040656, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.53697056, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 28989\n",
+ "Discriminator Loss: tf.Tensor(0.69482803, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.4577962, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 28990\n",
+ "Discriminator Loss: tf.Tensor(0.7924461, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.44327882, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 28991\n",
+ "Discriminator Loss: tf.Tensor(1.2859768, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.883824, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 28992\n",
+ "Discriminator Loss: tf.Tensor(0.92038816, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.35489905, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 28993\n",
+ "Discriminator Loss: tf.Tensor(0.6492662, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.4173838, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 28994\n",
+ "Discriminator Loss: tf.Tensor(0.6878082, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.40865365, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 28995\n",
+ "Discriminator Loss: tf.Tensor(0.8747202, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.7970361, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 28996\n",
+ "Discriminator Loss: tf.Tensor(0.9723463, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.5789362, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 28997\n",
+ "Discriminator Loss: tf.Tensor(0.5813365, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.56729704, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 28998\n",
+ "Discriminator Loss: tf.Tensor(0.795158, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.9566528, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 28999\n",
+ "Discriminator Loss: tf.Tensor(0.7857834, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.6434628, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 29000\n",
+ "Discriminator Loss: tf.Tensor(0.73565304, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.2831141, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 29001\n",
+ "Discriminator Loss: tf.Tensor(1.3202033, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.781456, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 29002\n",
+ "Discriminator Loss: tf.Tensor(0.7745182, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.5771954, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 29003\n",
+ "Discriminator Loss: tf.Tensor(1.0056937, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.0762788, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 29004\n",
+ "Discriminator Loss: tf.Tensor(0.24826416, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.0123022, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 29005\n",
+ "Discriminator Loss: tf.Tensor(0.81140244, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.540102, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 29006\n",
+ "Discriminator Loss: tf.Tensor(0.6335155, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.50464696, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 29007\n",
+ "Discriminator Loss: tf.Tensor(0.9660188, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.3353077, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 29008\n",
+ "Discriminator Loss: tf.Tensor(0.51509863, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.7395546, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 29009\n",
+ "Discriminator Loss: tf.Tensor(1.1298518, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.7793823, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 29010\n",
+ "Discriminator Loss: tf.Tensor(0.61349976, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.41645673, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 29011\n",
+ "Discriminator Loss: tf.Tensor(1.2146991, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.4741238, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 29012\n",
+ "Discriminator Loss: tf.Tensor(0.5268245, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.6453497, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 29013\n",
+ "Discriminator Loss: tf.Tensor(0.41516286, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.2617236, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 29014\n",
+ "Discriminator Loss: tf.Tensor(0.55749136, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.56285566, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 29015\n",
+ "Discriminator Loss: tf.Tensor(0.6220739, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.4067637, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 29016\n",
+ "Discriminator Loss: tf.Tensor(0.67789704, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.35518742, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 29017\n",
+ "Discriminator Loss: tf.Tensor(1.0083865, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.6600515, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 29018\n",
+ "Discriminator Loss: tf.Tensor(0.49660662, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.6360107, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 29019\n",
+ "Discriminator Loss: tf.Tensor(1.0217682, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.4827352, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 29020\n",
+ "Discriminator Loss: tf.Tensor(0.5551679, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.7822246, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 29021\n",
+ "Discriminator Loss: tf.Tensor(0.6969291, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.5220872, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 29022\n",
+ "Discriminator Loss: tf.Tensor(0.3600961, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.0031518, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 29023\n",
+ "Discriminator Loss: tf.Tensor(0.5763092, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.7911414, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 29024\n",
+ "Discriminator Loss: tf.Tensor(0.36685508, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.91988486, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 29025\n",
+ "Discriminator Loss: tf.Tensor(1.0118456, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.1171874, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 29026\n",
+ "Discriminator Loss: tf.Tensor(0.605186, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.89979315, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 29027\n",
+ "Discriminator Loss: tf.Tensor(0.7677181, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.2661325, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 29028\n",
+ "Discriminator Loss: tf.Tensor(0.51303387, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.7334895, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 29029\n",
+ "Discriminator Loss: tf.Tensor(0.63067496, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.7599068, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 29030\n",
+ "Discriminator Loss: tf.Tensor(0.6268751, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.41196465, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 29031\n",
+ "Discriminator Loss: tf.Tensor(1.0067538, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.796642, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 29032\n",
+ "Discriminator Loss: tf.Tensor(0.44440785, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.016808, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 29033\n",
+ "Discriminator Loss: tf.Tensor(0.53763926, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.8390794, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 29034\n",
+ "Discriminator Loss: tf.Tensor(0.7045264, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.6617775, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 29035\n",
+ "Discriminator Loss: tf.Tensor(0.39946795, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.85846394, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 29036\n",
+ "Discriminator Loss: tf.Tensor(0.9252162, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.1097959, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 29037\n",
+ "Discriminator Loss: tf.Tensor(0.21192431, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.5081824, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 29038\n",
+ "Discriminator Loss: tf.Tensor(0.8613733, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.5910465, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 29039\n",
+ "Discriminator Loss: tf.Tensor(1.3056692, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.9411083, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 29040\n",
+ "Discriminator Loss: tf.Tensor(0.59282875, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.6742632, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 29041\n",
+ "Discriminator Loss: tf.Tensor(0.68385506, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.3019732, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 29042\n",
+ "Discriminator Loss: tf.Tensor(0.53212565, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.5347512, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 29043\n",
+ "Discriminator Loss: tf.Tensor(1.0796711, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.9103433, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 29044\n",
+ "Discriminator Loss: tf.Tensor(0.8923277, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.14448325, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 29045\n",
+ "Discriminator Loss: tf.Tensor(1.1084952, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.7635113, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 29046\n",
+ "Discriminator Loss: tf.Tensor(0.53974956, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.67229027, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 29047\n",
+ "Discriminator Loss: tf.Tensor(0.5576823, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.2949747, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 29048\n",
+ "Discriminator Loss: tf.Tensor(0.40360522, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.87217027, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 29049\n",
+ "Discriminator Loss: tf.Tensor(0.65003157, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.304, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 29050\n",
+ "Discriminator Loss: tf.Tensor(1.1181079, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.26145944, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 29051\n",
+ "Discriminator Loss: tf.Tensor(1.6039966, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.352178, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 29052\n",
+ "Discriminator Loss: tf.Tensor(0.51565754, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.59138334, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 29053\n",
+ "Discriminator Loss: tf.Tensor(0.76766366, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.1610063, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 29054\n",
+ "Discriminator Loss: tf.Tensor(0.19970503, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.1760583, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 29055\n",
+ "Discriminator Loss: tf.Tensor(0.70631623, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.1756335, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 29056\n",
+ "Discriminator Loss: tf.Tensor(0.55736864, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.8746627, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 29057\n",
+ "Discriminator Loss: tf.Tensor(0.79487073, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.2715832, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 29058\n",
+ "Discriminator Loss: tf.Tensor(1.0457484, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.3217462, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 29059\n",
+ "Discriminator Loss: tf.Tensor(1.3421301, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.5542965, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 29060\n",
+ "Discriminator Loss: tf.Tensor(0.95785654, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.14152585, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 29061\n",
+ "Discriminator Loss: tf.Tensor(0.9490888, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.84109086, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 29062\n",
+ "Discriminator Loss: tf.Tensor(0.6910125, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.483592, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 29063\n",
+ "Discriminator Loss: tf.Tensor(0.4462925, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.89635974, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 29064\n",
+ "Discriminator Loss: tf.Tensor(0.63629603, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.4444364, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 29065\n",
+ "Discriminator Loss: tf.Tensor(0.3954443, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.7325752, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 29066\n",
+ "Discriminator Loss: tf.Tensor(1.2766682, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.3983266, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 29067\n",
+ "Discriminator Loss: tf.Tensor(0.5552866, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.7787757, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 29068\n",
+ "Discriminator Loss: tf.Tensor(1.0816481, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.1372001, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 29069\n",
+ "Discriminator Loss: tf.Tensor(0.7663912, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.76204586, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 29070\n",
+ "Discriminator Loss: tf.Tensor(0.38969308, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.235911, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 29071\n",
+ "Discriminator Loss: tf.Tensor(0.577185, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.3551444, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 29072\n",
+ "Discriminator Loss: tf.Tensor(0.7362137, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.3508892, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 29073\n",
+ "Discriminator Loss: tf.Tensor(1.2811254, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.8048817, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 29074\n",
+ "Discriminator Loss: tf.Tensor(0.41376364, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.80338293, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 29075\n",
+ "Discriminator Loss: tf.Tensor(0.8330501, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.9323185, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 29076\n",
+ "Discriminator Loss: tf.Tensor(0.5794856, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.5591186, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 29077\n",
+ "Discriminator Loss: tf.Tensor(1.079459, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.03656578, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 29078\n",
+ "Discriminator Loss: tf.Tensor(0.907017, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.1850582, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 29079\n",
+ "Discriminator Loss: tf.Tensor(0.6732011, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.62075704, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 29080\n",
+ "Discriminator Loss: tf.Tensor(1.5332316, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.9122529, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 29081\n",
+ "Discriminator Loss: tf.Tensor(0.47751412, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.76386696, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 29082\n",
+ "Discriminator Loss: tf.Tensor(0.63533956, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.2326585, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 29083\n",
+ "Discriminator Loss: tf.Tensor(0.6908798, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.47121426, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 29084\n",
+ "Discriminator Loss: tf.Tensor(1.0694749, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.8514, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 29085\n",
+ "Discriminator Loss: tf.Tensor(0.5786644, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.7655633, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 29086\n",
+ "Discriminator Loss: tf.Tensor(0.116662994, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.1992, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 29087\n",
+ "Discriminator Loss: tf.Tensor(0.94468665, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.5463804, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 29088\n",
+ "Discriminator Loss: tf.Tensor(1.4609818, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.16344334, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 29089\n",
+ "Discriminator Loss: tf.Tensor(1.01135, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.2061443, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 29090\n",
+ "Discriminator Loss: tf.Tensor(0.85037464, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.6316378, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 29091\n",
+ "Discriminator Loss: tf.Tensor(0.8501946, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.4291615, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 29092\n",
+ "Discriminator Loss: tf.Tensor(0.8239475, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.48793426, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 29093\n",
+ "Discriminator Loss: tf.Tensor(1.0098522, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.142434, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 29094\n",
+ "Discriminator Loss: tf.Tensor(0.5486563, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.919658, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 29095\n",
+ "Discriminator Loss: tf.Tensor(0.23660707, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.1725483, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 29096\n",
+ "Discriminator Loss: tf.Tensor(1.2647231, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.4298549, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 29097\n",
+ "Discriminator Loss: tf.Tensor(0.8642385, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.26795107, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 29098\n",
+ "Discriminator Loss: tf.Tensor(1.0731835, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.4815474, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 29099\n",
+ "Discriminator Loss: tf.Tensor(0.7473779, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.3646792, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 29100\n",
+ "Discriminator Loss: tf.Tensor(1.2349159, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.2171115, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 29101\n",
+ "Discriminator Loss: tf.Tensor(0.44877708, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.6740036, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 29102\n",
+ "Discriminator Loss: tf.Tensor(1.1658224, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.8188141, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 29103\n",
+ "Discriminator Loss: tf.Tensor(0.63074577, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.3299342, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 29104\n",
+ "Discriminator Loss: tf.Tensor(0.4517921, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.68456286, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 29105\n",
+ "Discriminator Loss: tf.Tensor(0.77226645, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.5379707, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 29106\n",
+ "Discriminator Loss: tf.Tensor(0.54932, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.7140546, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 29107\n",
+ "Discriminator Loss: tf.Tensor(1.0585594, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.0667949, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 29108\n",
+ "Discriminator Loss: tf.Tensor(0.68477345, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.8399436, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 29109\n",
+ "Discriminator Loss: tf.Tensor(0.3377049, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.1838701, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 29110\n",
+ "Discriminator Loss: tf.Tensor(0.9870541, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.8170757, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 29111\n",
+ "Discriminator Loss: tf.Tensor(0.59809935, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.9257085, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 29112\n",
+ "Discriminator Loss: tf.Tensor(0.8708884, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.081078, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 29113\n",
+ "Discriminator Loss: tf.Tensor(0.8906701, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.2377094, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 29114\n",
+ "Discriminator Loss: tf.Tensor(0.78300583, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.60410213, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 29115\n",
+ "Discriminator Loss: tf.Tensor(0.8284764, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.5614682, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 29116\n",
+ "Discriminator Loss: tf.Tensor(0.52590096, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.62258357, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 29117\n",
+ "Discriminator Loss: tf.Tensor(1.1364598, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.877594, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 29118\n",
+ "Discriminator Loss: tf.Tensor(0.49916607, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.6610884, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 29119\n",
+ "Discriminator Loss: tf.Tensor(0.6273706, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.4143358, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 29120\n",
+ "Discriminator Loss: tf.Tensor(0.38639268, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.8011063, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 29121\n",
+ "Discriminator Loss: tf.Tensor(0.777899, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.3913269, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 29122\n",
+ "Discriminator Loss: tf.Tensor(0.26779592, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.1200346, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 29123\n",
+ "Discriminator Loss: tf.Tensor(0.45688602, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.80566424, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 29124\n",
+ "Discriminator Loss: tf.Tensor(0.24611306, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.4887018, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 29125\n",
+ "Discriminator Loss: tf.Tensor(0.412718, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.0235367, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 29126\n",
+ "Discriminator Loss: tf.Tensor(0.94556236, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.885403, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 29127\n",
+ "Discriminator Loss: tf.Tensor(0.64497274, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.43684152, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 29128\n",
+ "Discriminator Loss: tf.Tensor(1.32039, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.7385292, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 29129\n",
+ "Discriminator Loss: tf.Tensor(0.6763594, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.7033878, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 29130\n",
+ "Discriminator Loss: tf.Tensor(0.621629, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.1232098, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 29131\n",
+ "Discriminator Loss: tf.Tensor(0.86676824, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.3398281, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 29132\n",
+ "Discriminator Loss: tf.Tensor(1.086138, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.4650846, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 29133\n",
+ "Discriminator Loss: tf.Tensor(0.2933702, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.86034745, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 29134\n",
+ "Discriminator Loss: tf.Tensor(0.908674, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.9267355, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 29135\n",
+ "Discriminator Loss: tf.Tensor(0.43056267, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.0110579, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 29136\n",
+ "Discriminator Loss: tf.Tensor(0.5329111, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.8211593, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 29137\n",
+ "Discriminator Loss: tf.Tensor(0.6290039, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.9914515, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 29138\n",
+ "Discriminator Loss: tf.Tensor(0.62533855, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.2128073, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 29139\n",
+ "Discriminator Loss: tf.Tensor(0.701607, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.5444403, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 29140\n",
+ "Discriminator Loss: tf.Tensor(1.2006228, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.9987437, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 29141\n",
+ "Discriminator Loss: tf.Tensor(0.8728387, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.40945148, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 29142\n",
+ "Discriminator Loss: tf.Tensor(0.9111567, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.3519548, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 29143\n",
+ "Discriminator Loss: tf.Tensor(0.6983315, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.5071134, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 29144\n",
+ "Discriminator Loss: tf.Tensor(0.6439848, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.6396099, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 29145\n",
+ "Discriminator Loss: tf.Tensor(0.42754698, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.76083785, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 29146\n",
+ "Discriminator Loss: tf.Tensor(0.62913644, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.6807448, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 29147\n",
+ "Discriminator Loss: tf.Tensor(0.55265427, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.85456586, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 29148\n",
+ "Discriminator Loss: tf.Tensor(0.4347498, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.5734106, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 29149\n",
+ "Discriminator Loss: tf.Tensor(0.49561805, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.0347902, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 29150\n",
+ "Discriminator Loss: tf.Tensor(0.6823677, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.0818244, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 29151\n",
+ "Discriminator Loss: tf.Tensor(0.45699105, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.8214261, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 29152\n",
+ "Discriminator Loss: tf.Tensor(1.2040219, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.7070522, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 29153\n",
+ "Discriminator Loss: tf.Tensor(0.5915212, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.53892404, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 29154\n",
+ "Discriminator Loss: tf.Tensor(1.1544988, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.952147, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 29155\n",
+ "Discriminator Loss: tf.Tensor(0.62226284, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.51377743, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 29156\n",
+ "Discriminator Loss: tf.Tensor(1.6504197, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.4522014, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 29157\n",
+ "Discriminator Loss: tf.Tensor(0.6909678, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.88240296, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 29158\n",
+ "Discriminator Loss: tf.Tensor(0.6977333, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.66091555, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 29159\n",
+ "Discriminator Loss: tf.Tensor(0.718074, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.24667, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 29160\n",
+ "Discriminator Loss: tf.Tensor(0.6396307, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.84072286, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 29161\n",
+ "Discriminator Loss: tf.Tensor(0.53253686, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.4040598, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 29162\n",
+ "Discriminator Loss: tf.Tensor(0.35779884, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.76646227, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 29163\n",
+ "Discriminator Loss: tf.Tensor(0.74514663, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.7318703, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 29164\n",
+ "Discriminator Loss: tf.Tensor(0.4587977, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.5600671, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 29165\n",
+ "Discriminator Loss: tf.Tensor(1.9737005, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.3936472, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 29166\n",
+ "Discriminator Loss: tf.Tensor(0.45654142, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.8189068, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 29167\n",
+ "Discriminator Loss: tf.Tensor(0.9249536, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.6269535, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 29168\n",
+ "Discriminator Loss: tf.Tensor(0.38441214, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.7794915, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 29169\n",
+ "Discriminator Loss: tf.Tensor(0.5177672, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.4629488, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 29170\n",
+ "Discriminator Loss: tf.Tensor(0.5594352, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.6710325, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 29171\n",
+ "Discriminator Loss: tf.Tensor(1.2885218, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.8798189, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 29172\n",
+ "Discriminator Loss: tf.Tensor(0.8029254, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.49113968, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 29173\n",
+ "Discriminator Loss: tf.Tensor(0.4714216, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.5690867, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 29174\n",
+ "Discriminator Loss: tf.Tensor(0.5075805, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.2179214, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 29175\n",
+ "Discriminator Loss: tf.Tensor(0.7717675, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.44437608, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 29176\n",
+ "Discriminator Loss: tf.Tensor(0.6541164, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.842288, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 29177\n",
+ "Discriminator Loss: tf.Tensor(0.28793615, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.8481366, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 29178\n",
+ "Discriminator Loss: tf.Tensor(1.3123657, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.0769985, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 29179\n",
+ "Discriminator Loss: tf.Tensor(0.73833025, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.5811203, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 29180\n",
+ "Discriminator Loss: tf.Tensor(1.1361227, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.3543676, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 29181\n",
+ "Discriminator Loss: tf.Tensor(0.5207016, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.74098295, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 29182\n",
+ "Discriminator Loss: tf.Tensor(0.51651925, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.2973433, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 29183\n",
+ "Discriminator Loss: tf.Tensor(0.57085514, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.72779554, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 29184\n",
+ "Discriminator Loss: tf.Tensor(0.9769893, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.5680441, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 29185\n",
+ "Discriminator Loss: tf.Tensor(0.776631, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.3840097, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 29186\n",
+ "Discriminator Loss: tf.Tensor(0.44860578, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.4517316, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 29187\n",
+ "Discriminator Loss: tf.Tensor(0.5029556, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.096537, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 29188\n",
+ "Discriminator Loss: tf.Tensor(1.0217557, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.42456505, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 29189\n",
+ "Discriminator Loss: tf.Tensor(0.62791824, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.4608775, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 29190\n",
+ "Discriminator Loss: tf.Tensor(0.5242632, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.8076133, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 29191\n",
+ "Discriminator Loss: tf.Tensor(0.6185515, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.1835238, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 29192\n",
+ "Discriminator Loss: tf.Tensor(0.6977563, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.2947114, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 29193\n",
+ "Discriminator Loss: tf.Tensor(0.5111123, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.60493034, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 29194\n",
+ "Discriminator Loss: tf.Tensor(1.4117451, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.0886493, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 29195\n",
+ "Discriminator Loss: tf.Tensor(0.5200045, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.70850366, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 29196\n",
+ "Discriminator Loss: tf.Tensor(0.67218566, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.3518524, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 29197\n",
+ "Discriminator Loss: tf.Tensor(0.5508096, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.8536635, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 29198\n",
+ "Discriminator Loss: tf.Tensor(0.8568903, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.3672209, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 29199\n",
+ "Discriminator Loss: tf.Tensor(0.7034876, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.5667127, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 29200\n",
+ "Discriminator Loss: tf.Tensor(0.73099136, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.5941529, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 29201\n",
+ "Discriminator Loss: tf.Tensor(0.37262785, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.96706265, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 29202\n",
+ "Discriminator Loss: tf.Tensor(0.8783072, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.026677, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 29203\n",
+ "Discriminator Loss: tf.Tensor(0.48561054, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.0306958, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 29204\n",
+ "Discriminator Loss: tf.Tensor(0.3501771, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.9011841, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 29205\n",
+ "Discriminator Loss: tf.Tensor(1.3267052, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.93622255, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 29206\n",
+ "Discriminator Loss: tf.Tensor(0.9149005, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.029002, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 29207\n",
+ "Discriminator Loss: tf.Tensor(0.4901279, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.1504468, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 29208\n",
+ "Discriminator Loss: tf.Tensor(0.5335409, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.4164432, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 29209\n",
+ "Discriminator Loss: tf.Tensor(0.73618674, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.49639645, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 29210\n",
+ "Discriminator Loss: tf.Tensor(0.7070107, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.7059008, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 29211\n",
+ "Discriminator Loss: tf.Tensor(0.6423345, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.5833447, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 29212\n",
+ "Discriminator Loss: tf.Tensor(1.1260629, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.8055538, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 29213\n",
+ "Discriminator Loss: tf.Tensor(0.77642566, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.5481699, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 29214\n",
+ "Discriminator Loss: tf.Tensor(0.8954003, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.8066432, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 29215\n",
+ "Discriminator Loss: tf.Tensor(0.9774358, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.5492162, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 29216\n",
+ "Discriminator Loss: tf.Tensor(0.86152095, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.18989612, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 29217\n",
+ "Discriminator Loss: tf.Tensor(1.1952914, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.3495744, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 29218\n",
+ "Discriminator Loss: tf.Tensor(0.2903197, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.8393318, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 29219\n",
+ "Discriminator Loss: tf.Tensor(0.93205774, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.872108, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 29220\n",
+ "Discriminator Loss: tf.Tensor(0.605867, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.48921004, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 29221\n",
+ "Discriminator Loss: tf.Tensor(1.0411575, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.3628975, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 29222\n",
+ "Discriminator Loss: tf.Tensor(0.4459784, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.6151325, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 29223\n",
+ "Discriminator Loss: tf.Tensor(1.0017673, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.0501988, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 29224\n",
+ "Discriminator Loss: tf.Tensor(0.93338156, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.39735293, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 29225\n",
+ "Discriminator Loss: tf.Tensor(0.34587812, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.0872921, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 29226\n",
+ "Discriminator Loss: tf.Tensor(0.512035, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.386705, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 29227\n",
+ "Discriminator Loss: tf.Tensor(0.54542005, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.803878, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 29228\n",
+ "Discriminator Loss: tf.Tensor(0.7195827, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.5237226, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 29229\n",
+ "Discriminator Loss: tf.Tensor(0.42327553, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.6746688, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 29230\n",
+ "Discriminator Loss: tf.Tensor(0.94103026, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.6064874, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 29231\n",
+ "Discriminator Loss: tf.Tensor(0.49287176, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.7808953, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 29232\n",
+ "Discriminator Loss: tf.Tensor(0.9544414, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.2430001, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 29233\n",
+ "Discriminator Loss: tf.Tensor(1.0474542, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.38693234, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 29234\n",
+ "Discriminator Loss: tf.Tensor(0.6666552, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.4136597, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 29235\n",
+ "Discriminator Loss: tf.Tensor(0.54560125, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.92931455, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 29236\n",
+ "Discriminator Loss: tf.Tensor(0.85083354, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.6558228, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 29237\n",
+ "Discriminator Loss: tf.Tensor(0.46489093, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.6134333, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 29238\n",
+ "Discriminator Loss: tf.Tensor(1.25762, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.7308947, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 29239\n",
+ "Discriminator Loss: tf.Tensor(0.6672417, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.5729432, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 29240\n",
+ "Discriminator Loss: tf.Tensor(0.8991889, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.4388479, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 29241\n",
+ "Discriminator Loss: tf.Tensor(0.3971271, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.006588, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 29242\n",
+ "Discriminator Loss: tf.Tensor(0.47133422, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.8208308, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 29243\n",
+ "Discriminator Loss: tf.Tensor(1.0567799, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.249345, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 29244\n",
+ "Discriminator Loss: tf.Tensor(0.38221478, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.9579713, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 29245\n",
+ "Discriminator Loss: tf.Tensor(1.0790474, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.7799363, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 29246\n",
+ "Discriminator Loss: tf.Tensor(0.50820625, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.4073901, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 29247\n",
+ "Discriminator Loss: tf.Tensor(0.39926574, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.98694295, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 29248\n",
+ "Discriminator Loss: tf.Tensor(1.0063565, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.0954794, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 29249\n",
+ "Discriminator Loss: tf.Tensor(0.9079663, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.6011568, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 29250\n",
+ "Discriminator Loss: tf.Tensor(0.44222468, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.0233854, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 29251\n",
+ "Discriminator Loss: tf.Tensor(0.8511985, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.3696585, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 29252\n",
+ "Discriminator Loss: tf.Tensor(0.55277944, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.6906988, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 29253\n",
+ "Discriminator Loss: tf.Tensor(0.49985301, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.5659271, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 29254\n",
+ "Discriminator Loss: tf.Tensor(1.0733637, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.33603033, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 29255\n",
+ "Discriminator Loss: tf.Tensor(0.72935295, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.476786, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 29256\n",
+ "Discriminator Loss: tf.Tensor(0.521296, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.59843373, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 29257\n",
+ "Discriminator Loss: tf.Tensor(0.9743345, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.2891523, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 29258\n",
+ "Discriminator Loss: tf.Tensor(0.97765183, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.11520094, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 29259\n",
+ "Discriminator Loss: tf.Tensor(1.4752553, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.1063323, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 29260\n",
+ "Discriminator Loss: tf.Tensor(0.55594134, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.4970003, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 29261\n",
+ "Discriminator Loss: tf.Tensor(0.9606986, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.208804, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 29262\n",
+ "Discriminator Loss: tf.Tensor(0.59155536, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.6755404, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 29263\n",
+ "Discriminator Loss: tf.Tensor(0.61463296, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.735381, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 29264\n",
+ "Discriminator Loss: tf.Tensor(0.6781344, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.53625727, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 29265\n",
+ "Discriminator Loss: tf.Tensor(0.38727093, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.6572102, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 29266\n",
+ "Discriminator Loss: tf.Tensor(0.8763913, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.7277944, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 29267\n",
+ "Discriminator Loss: tf.Tensor(0.4573145, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.46654, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 29268\n",
+ "Discriminator Loss: tf.Tensor(0.54533756, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.8502469, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 29269\n",
+ "Discriminator Loss: tf.Tensor(0.5129337, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.519597, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 29270\n",
+ "Discriminator Loss: tf.Tensor(0.50747067, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.7527685, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 29271\n",
+ "Discriminator Loss: tf.Tensor(0.85297465, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.662783, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 29272\n",
+ "Discriminator Loss: tf.Tensor(0.41447452, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.7118345, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 29273\n",
+ "Discriminator Loss: tf.Tensor(0.74799967, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.4563603, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 29274\n",
+ "Discriminator Loss: tf.Tensor(0.5925845, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.0368115, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 29275\n",
+ "Discriminator Loss: tf.Tensor(0.6240133, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.70868343, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 29276\n",
+ "Discriminator Loss: tf.Tensor(0.82399774, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.9902612, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 29277\n",
+ "Discriminator Loss: tf.Tensor(0.36319298, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.72869366, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 29278\n",
+ "Discriminator Loss: tf.Tensor(1.286263, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.5941538, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 29279\n",
+ "Discriminator Loss: tf.Tensor(0.15789339, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.0996107, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 29280\n",
+ "Discriminator Loss: tf.Tensor(0.6040692, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.2960082, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 29281\n",
+ "Discriminator Loss: tf.Tensor(0.41935286, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.7794232, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 29282\n",
+ "Discriminator Loss: tf.Tensor(1.861505, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.0664406, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 29283\n",
+ "Discriminator Loss: tf.Tensor(0.40218863, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.4186674, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 29284\n",
+ "Discriminator Loss: tf.Tensor(0.67759776, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.94971275, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 29285\n",
+ "Discriminator Loss: tf.Tensor(0.6865466, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.92443705, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 29286\n",
+ "Discriminator Loss: tf.Tensor(0.5597839, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.6109394, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 29287\n",
+ "Discriminator Loss: tf.Tensor(0.5804163, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.5853164, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 29288\n",
+ "Discriminator Loss: tf.Tensor(0.81683946, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.9286028, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 29289\n",
+ "Discriminator Loss: tf.Tensor(0.54904974, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.8128378, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 29290\n",
+ "Discriminator Loss: tf.Tensor(0.8048422, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.5259339, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 29291\n",
+ "Discriminator Loss: tf.Tensor(0.6188528, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.6376747, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 29292\n",
+ "Discriminator Loss: tf.Tensor(1.2085552, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.771257, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 29293\n",
+ "Discriminator Loss: tf.Tensor(0.5630771, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.827418, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 29294\n",
+ "Discriminator Loss: tf.Tensor(1.2479334, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.9782513, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 29295\n",
+ "Discriminator Loss: tf.Tensor(0.5980657, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.49191466, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 29296\n",
+ "Discriminator Loss: tf.Tensor(0.9069228, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.718881, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 29297\n",
+ "Discriminator Loss: tf.Tensor(0.68856734, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.6211322, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 29298\n",
+ "Discriminator Loss: tf.Tensor(0.42706048, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.5369148, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 29299\n",
+ "Discriminator Loss: tf.Tensor(0.727635, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.57931507, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 29300\n",
+ "Discriminator Loss: tf.Tensor(0.9124708, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.1970246, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 29301\n",
+ "Discriminator Loss: tf.Tensor(0.90596193, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.1802551, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 29302\n",
+ "Discriminator Loss: tf.Tensor(1.1644312, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.4669446, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 29303\n",
+ "Discriminator Loss: tf.Tensor(0.76795316, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.516138, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 29304\n",
+ "Discriminator Loss: tf.Tensor(0.65310335, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.3870701, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 29305\n",
+ "Discriminator Loss: tf.Tensor(0.740929, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.64095515, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 29306\n",
+ "Discriminator Loss: tf.Tensor(0.6551777, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.418759, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 29307\n",
+ "Discriminator Loss: tf.Tensor(0.7420517, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.8053067, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 29308\n",
+ "Discriminator Loss: tf.Tensor(0.5245113, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.7238813, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 29309\n",
+ "Discriminator Loss: tf.Tensor(1.1657088, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.3243318, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 29310\n",
+ "Discriminator Loss: tf.Tensor(0.7845799, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.3995806, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 29311\n",
+ "Discriminator Loss: tf.Tensor(0.70442605, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.5787812, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 29312\n",
+ "Discriminator Loss: tf.Tensor(0.53770393, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.96761495, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 29313\n",
+ "Discriminator Loss: tf.Tensor(0.6499561, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.1707764, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 29314\n",
+ "Discriminator Loss: tf.Tensor(0.3223706, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.8417372, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 29315\n",
+ "Discriminator Loss: tf.Tensor(0.74340737, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.843123, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 29316\n",
+ "Discriminator Loss: tf.Tensor(0.34790787, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.0820938, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 29317\n",
+ "Discriminator Loss: tf.Tensor(0.21278408, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.0794504, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 29318\n",
+ "Discriminator Loss: tf.Tensor(0.78285575, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.3921582, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 29319\n",
+ "Discriminator Loss: tf.Tensor(0.7438937, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.677604, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 29320\n",
+ "Discriminator Loss: tf.Tensor(1.1266336, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.4610316, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 29321\n",
+ "Discriminator Loss: tf.Tensor(0.6322218, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.5857561, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 29322\n",
+ "Discriminator Loss: tf.Tensor(0.73681796, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.1461356, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 29323\n",
+ "Discriminator Loss: tf.Tensor(0.8923141, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.43914095, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 29324\n",
+ "Discriminator Loss: tf.Tensor(0.7318072, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.4099354, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 29325\n",
+ "Discriminator Loss: tf.Tensor(0.65921426, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.46917763, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 29326\n",
+ "Discriminator Loss: tf.Tensor(1.8335271, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.1270669, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 29327\n",
+ "Discriminator Loss: tf.Tensor(0.6075704, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.6118617, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 29328\n",
+ "Discriminator Loss: tf.Tensor(0.8623932, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.86412406, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 29329\n",
+ "Discriminator Loss: tf.Tensor(0.9716061, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.7490271, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 29330\n",
+ "Discriminator Loss: tf.Tensor(0.5178133, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.56338763, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 29331\n",
+ "Discriminator Loss: tf.Tensor(1.0910801, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.7816879, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 29332\n",
+ "Discriminator Loss: tf.Tensor(0.2736278, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.74928766, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 29333\n",
+ "Discriminator Loss: tf.Tensor(0.9408257, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.1125302, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 29334\n",
+ "Discriminator Loss: tf.Tensor(0.4131046, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.92581487, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 29335\n",
+ "Discriminator Loss: tf.Tensor(0.42418957, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.3903466, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 29336\n",
+ "Discriminator Loss: tf.Tensor(0.7842391, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.1741939, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 29337\n",
+ "Discriminator Loss: tf.Tensor(0.36830622, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.0327656, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 29338\n",
+ "Discriminator Loss: tf.Tensor(0.48503408, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.0302047, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 29339\n",
+ "Discriminator Loss: tf.Tensor(0.9647856, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.6314775, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 29340\n",
+ "Discriminator Loss: tf.Tensor(0.7208085, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.49010834, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 29341\n",
+ "Discriminator Loss: tf.Tensor(0.97726154, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.0090096, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 29342\n",
+ "Discriminator Loss: tf.Tensor(0.46751863, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.6695034, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 29343\n",
+ "Discriminator Loss: tf.Tensor(0.7226211, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.4522525, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 29344\n",
+ "Discriminator Loss: tf.Tensor(0.29597774, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.1797099, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 29345\n",
+ "Discriminator Loss: tf.Tensor(0.4775703, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.0068489, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 29346\n",
+ "Discriminator Loss: tf.Tensor(0.49316782, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.0746037, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 29347\n",
+ "Discriminator Loss: tf.Tensor(1.13951, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.6508421, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 29348\n",
+ "Discriminator Loss: tf.Tensor(0.5539841, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.7563178, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 29349\n",
+ "Discriminator Loss: tf.Tensor(0.43256488, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.8049672, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 29350\n",
+ "Discriminator Loss: tf.Tensor(0.49399024, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.5917525, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 29351\n",
+ "Discriminator Loss: tf.Tensor(0.5653271, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.72240204, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 29352\n",
+ "Discriminator Loss: tf.Tensor(0.55350065, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.3565, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 29353\n",
+ "Discriminator Loss: tf.Tensor(0.78745115, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.1007851, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 29354\n",
+ "Discriminator Loss: tf.Tensor(0.7974371, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.584877, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 29355\n",
+ "Discriminator Loss: tf.Tensor(0.9007308, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.22494607, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 29356\n",
+ "Discriminator Loss: tf.Tensor(1.233416, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.9271437, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 29357\n",
+ "Discriminator Loss: tf.Tensor(0.56473196, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.655919, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 29358\n",
+ "Discriminator Loss: tf.Tensor(0.7324885, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.75026, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 29359\n",
+ "Discriminator Loss: tf.Tensor(0.5753718, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.4854339, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 29360\n",
+ "Discriminator Loss: tf.Tensor(1.5601994, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.8615407, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 29361\n",
+ "Discriminator Loss: tf.Tensor(0.23190117, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.1951913, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 29362\n",
+ "Discriminator Loss: tf.Tensor(0.47207135, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.0185156, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 29363\n",
+ "Discriminator Loss: tf.Tensor(0.6157377, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.9724347, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 29364\n",
+ "Discriminator Loss: tf.Tensor(0.6566561, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.3238496, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 29365\n",
+ "Discriminator Loss: tf.Tensor(0.51272595, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.7034796, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 29366\n",
+ "Discriminator Loss: tf.Tensor(0.7937355, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.5387808, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 29367\n",
+ "Discriminator Loss: tf.Tensor(0.47861502, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.211773, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 29368\n",
+ "Discriminator Loss: tf.Tensor(0.39212132, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.9792635, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 29369\n",
+ "Discriminator Loss: tf.Tensor(0.31977528, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.0965525, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 29370\n",
+ "Discriminator Loss: tf.Tensor(0.63193023, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.0913672, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 29371\n",
+ "Discriminator Loss: tf.Tensor(1.4163475, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.5857846, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 29372\n",
+ "Discriminator Loss: tf.Tensor(1.2312685, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.11022357, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 29373\n",
+ "Discriminator Loss: tf.Tensor(0.89456, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.0838447, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 29374\n",
+ "Discriminator Loss: tf.Tensor(0.7357253, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.6182777, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 29375\n",
+ "Discriminator Loss: tf.Tensor(0.57561076, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.6032158, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 29376\n",
+ "Discriminator Loss: tf.Tensor(0.45856068, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.6792715, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 29377\n",
+ "Discriminator Loss: tf.Tensor(0.5963216, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.4768753, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 29378\n",
+ "Discriminator Loss: tf.Tensor(0.42556328, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.1503466, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 29379\n",
+ "Discriminator Loss: tf.Tensor(0.50405204, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.215587, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 29380\n",
+ "Discriminator Loss: tf.Tensor(0.8291209, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.5044466, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 29381\n",
+ "Discriminator Loss: tf.Tensor(0.44987345, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.8785641, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 29382\n",
+ "Discriminator Loss: tf.Tensor(0.29232907, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.3406315, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 29383\n",
+ "Discriminator Loss: tf.Tensor(0.55401015, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.2414764, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 29384\n",
+ "Discriminator Loss: tf.Tensor(0.44251633, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.91313475, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 29385\n",
+ "Discriminator Loss: tf.Tensor(0.69808567, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.1672524, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 29386\n",
+ "Discriminator Loss: tf.Tensor(0.7200768, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.6194199, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 29387\n",
+ "Discriminator Loss: tf.Tensor(2.273801, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.3887465, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 29388\n",
+ "Discriminator Loss: tf.Tensor(0.96952736, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.23888923, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 29389\n",
+ "Discriminator Loss: tf.Tensor(1.3267179, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.1642752, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 29390\n",
+ "Discriminator Loss: tf.Tensor(0.755002, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.4337699, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 29391\n",
+ "Discriminator Loss: tf.Tensor(0.5001341, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.2653381, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 29392\n",
+ "Discriminator Loss: tf.Tensor(0.3832878, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.8461476, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 29393\n",
+ "Discriminator Loss: tf.Tensor(0.9716681, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.2805337, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 29394\n",
+ "Discriminator Loss: tf.Tensor(0.4725902, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.93622404, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 29395\n",
+ "Discriminator Loss: tf.Tensor(0.6708822, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.6510462, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 29396\n",
+ "Discriminator Loss: tf.Tensor(0.44219398, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.59283906, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 29397\n",
+ "Discriminator Loss: tf.Tensor(0.90961874, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.2082427, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 29398\n",
+ "Discriminator Loss: tf.Tensor(0.47139266, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.8661205, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 29399\n",
+ "Discriminator Loss: tf.Tensor(0.7779343, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.5801115, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 29400\n",
+ "Discriminator Loss: tf.Tensor(0.42671022, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.70894593, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 29401\n",
+ "Discriminator Loss: tf.Tensor(1.490539, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.9746569, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 29402\n",
+ "Discriminator Loss: tf.Tensor(0.38121527, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.8729418, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 29403\n",
+ "Discriminator Loss: tf.Tensor(0.8011025, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.6571809, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 29404\n",
+ "Discriminator Loss: tf.Tensor(0.9566019, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.2206436, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 29405\n",
+ "Discriminator Loss: tf.Tensor(0.73457885, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.3820362, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 29406\n",
+ "Discriminator Loss: tf.Tensor(0.5283418, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.6782493, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 29407\n",
+ "Discriminator Loss: tf.Tensor(1.1174368, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.7495075, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 29408\n",
+ "Discriminator Loss: tf.Tensor(0.18565795, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.8479195, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 29409\n",
+ "Discriminator Loss: tf.Tensor(0.7697265, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.4481624, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 29410\n",
+ "Discriminator Loss: tf.Tensor(0.43829715, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.4943438, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 29411\n",
+ "Discriminator Loss: tf.Tensor(0.16245528, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.1095179, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 29412\n",
+ "Discriminator Loss: tf.Tensor(0.2541669, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.4145471, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 29413\n",
+ "Discriminator Loss: tf.Tensor(0.45115632, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.84526855, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 29414\n",
+ "Discriminator Loss: tf.Tensor(0.4123216, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.4311367, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 29415\n",
+ "Discriminator Loss: tf.Tensor(0.48319015, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.4187645, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 29416\n",
+ "Discriminator Loss: tf.Tensor(0.5062775, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.71950436, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 29417\n",
+ "Discriminator Loss: tf.Tensor(2.0645442, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.704686, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 29418\n",
+ "Discriminator Loss: tf.Tensor(0.8040389, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.60016733, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 29419\n",
+ "Discriminator Loss: tf.Tensor(0.92697555, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.094323, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 29420\n",
+ "Discriminator Loss: tf.Tensor(0.40928727, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.1881425, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 29421\n",
+ "Discriminator Loss: tf.Tensor(0.2735471, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.9998164, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 29422\n",
+ "Discriminator Loss: tf.Tensor(0.33424908, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.1659678, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 29423\n",
+ "Discriminator Loss: tf.Tensor(0.85100925, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.2755562, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 29424\n",
+ "Discriminator Loss: tf.Tensor(0.8385899, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.840462, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 29425\n",
+ "Discriminator Loss: tf.Tensor(1.029418, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.2424842, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 29426\n",
+ "Discriminator Loss: tf.Tensor(0.99957305, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.28706214, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 29427\n",
+ "Discriminator Loss: tf.Tensor(0.95146596, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.1628999, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 29428\n",
+ "Discriminator Loss: tf.Tensor(0.9999516, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.6797275, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 29429\n",
+ "Discriminator Loss: tf.Tensor(0.6065253, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.103861, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 29430\n",
+ "Discriminator Loss: tf.Tensor(0.98887724, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.6245883, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 29431\n",
+ "Discriminator Loss: tf.Tensor(0.55058193, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.3090695, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 29432\n",
+ "Discriminator Loss: tf.Tensor(1.041876, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.16645929, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 29433\n",
+ "Discriminator Loss: tf.Tensor(0.6097727, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.4790517, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 29434\n",
+ "Discriminator Loss: tf.Tensor(0.9097693, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.33418438, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 29435\n",
+ "Discriminator Loss: tf.Tensor(1.4146259, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.4766666, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 29436\n",
+ "Discriminator Loss: tf.Tensor(0.70528615, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.49035677, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 29437\n",
+ "Discriminator Loss: tf.Tensor(0.9720363, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.9210571, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 29438\n",
+ "Discriminator Loss: tf.Tensor(0.71266687, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.61198443, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 29439\n",
+ "Discriminator Loss: tf.Tensor(0.49937874, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.3782197, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 29440\n",
+ "Discriminator Loss: tf.Tensor(0.39437693, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.7564123, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 29441\n",
+ "Discriminator Loss: tf.Tensor(1.0757163, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.9872199, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 29442\n",
+ "Discriminator Loss: tf.Tensor(0.72893727, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.40904096, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 29443\n",
+ "Discriminator Loss: tf.Tensor(0.7202425, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.5908031, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 29444\n",
+ "Discriminator Loss: tf.Tensor(0.8737844, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.23142135, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 29445\n",
+ "Discriminator Loss: tf.Tensor(0.43695077, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.7952118, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 29446\n",
+ "Discriminator Loss: tf.Tensor(0.48270988, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.9163478, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 29447\n",
+ "Discriminator Loss: tf.Tensor(0.37197697, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.0360194, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 29448\n",
+ "Discriminator Loss: tf.Tensor(0.91301465, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.0262034, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 29449\n",
+ "Discriminator Loss: tf.Tensor(0.7930825, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.42999873, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 29450\n",
+ "Discriminator Loss: tf.Tensor(1.1210833, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.2367079, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 29451\n",
+ "Discriminator Loss: tf.Tensor(0.58530605, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.81064194, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 29452\n",
+ "Discriminator Loss: tf.Tensor(0.599296, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.3406019, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 29453\n",
+ "Discriminator Loss: tf.Tensor(0.6991108, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.5726366, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 29454\n",
+ "Discriminator Loss: tf.Tensor(0.729059, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.9202328, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 29455\n",
+ "Discriminator Loss: tf.Tensor(0.33304957, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.2705065, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 29456\n",
+ "Discriminator Loss: tf.Tensor(0.84507275, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.9279218, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 29457\n",
+ "Discriminator Loss: tf.Tensor(0.5296369, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.56936175, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 29458\n",
+ "Discriminator Loss: tf.Tensor(1.0691588, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.5736107, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 29459\n",
+ "Discriminator Loss: tf.Tensor(0.62291133, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.4522606, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 29460\n",
+ "Discriminator Loss: tf.Tensor(1.5010092, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.5813721, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 29461\n",
+ "Discriminator Loss: tf.Tensor(0.76784784, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.32311153, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 29462\n",
+ "Discriminator Loss: tf.Tensor(0.9350445, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.6638705, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 29463\n",
+ "Discriminator Loss: tf.Tensor(0.3575369, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.76439506, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 29464\n",
+ "Discriminator Loss: tf.Tensor(0.96118903, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.90303016, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 29465\n",
+ "Discriminator Loss: tf.Tensor(0.34893122, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.7368739, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 29466\n",
+ "Discriminator Loss: tf.Tensor(0.93852174, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.0399234, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 29467\n",
+ "Discriminator Loss: tf.Tensor(0.48784897, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.8036666, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 29468\n",
+ "Discriminator Loss: tf.Tensor(0.4171157, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.302064, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 29469\n",
+ "Discriminator Loss: tf.Tensor(0.37992388, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.8361833, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 29470\n",
+ "Discriminator Loss: tf.Tensor(1.1047333, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.4652611, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 29471\n",
+ "Discriminator Loss: tf.Tensor(0.5322641, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.53141963, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 29472\n",
+ "Discriminator Loss: tf.Tensor(1.0990402, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.8689505, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 29473\n",
+ "Discriminator Loss: tf.Tensor(0.73895484, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.50289124, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 29474\n",
+ "Discriminator Loss: tf.Tensor(1.4374247, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.6284453, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 29475\n",
+ "Discriminator Loss: tf.Tensor(0.60873413, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.5105224, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 29476\n",
+ "Discriminator Loss: tf.Tensor(0.38167283, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.3687987, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 29477\n",
+ "Discriminator Loss: tf.Tensor(0.7000429, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.38122943, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 29478\n",
+ "Discriminator Loss: tf.Tensor(0.7349098, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.8791542, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 29479\n",
+ "Discriminator Loss: tf.Tensor(0.4738789, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.7615296, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 29480\n",
+ "Discriminator Loss: tf.Tensor(1.0384743, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.6996473, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 29481\n",
+ "Discriminator Loss: tf.Tensor(0.2526648, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.1508437, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 29482\n",
+ "Discriminator Loss: tf.Tensor(0.5077487, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.85066634, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 29483\n",
+ "Discriminator Loss: tf.Tensor(0.85441184, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.6343311, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 29484\n",
+ "Discriminator Loss: tf.Tensor(0.39082992, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.9715902, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 29485\n",
+ "Discriminator Loss: tf.Tensor(0.79421353, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.432855, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 29486\n",
+ "Discriminator Loss: tf.Tensor(0.40443343, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.94215375, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 29487\n",
+ "Discriminator Loss: tf.Tensor(0.81121045, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.0738262, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 29488\n",
+ "Discriminator Loss: tf.Tensor(0.25913864, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.3063565, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 29489\n",
+ "Discriminator Loss: tf.Tensor(0.3404536, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.5842134, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 29490\n",
+ "Discriminator Loss: tf.Tensor(0.3268523, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.881905, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 29491\n",
+ "Discriminator Loss: tf.Tensor(1.2406921, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.0741653, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 29492\n",
+ "Discriminator Loss: tf.Tensor(0.72715515, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.36980316, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 29493\n",
+ "Discriminator Loss: tf.Tensor(1.3312343, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.5549974, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 29494\n",
+ "Discriminator Loss: tf.Tensor(0.38536322, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.65832275, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 29495\n",
+ "Discriminator Loss: tf.Tensor(0.7251923, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.2177023, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 29496\n",
+ "Discriminator Loss: tf.Tensor(0.46153474, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.2936168, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 29497\n",
+ "Discriminator Loss: tf.Tensor(1.1499972, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.68029755, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 29498\n",
+ "Discriminator Loss: tf.Tensor(0.45639372, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.4123491, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 29499\n",
+ "Discriminator Loss: tf.Tensor(0.5928395, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.77793455, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 29500\n",
+ "Discriminator Loss: tf.Tensor(1.1112248, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.27801, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 29501\n",
+ "Discriminator Loss: tf.Tensor(0.7269954, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.4407331, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 29502\n",
+ "Discriminator Loss: tf.Tensor(1.3604618, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.0547082, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 29503\n",
+ "Discriminator Loss: tf.Tensor(0.7518991, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.4659904, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 29504\n",
+ "Discriminator Loss: tf.Tensor(0.5250091, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.2063195, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 29505\n",
+ "Discriminator Loss: tf.Tensor(0.64809597, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.4741291, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 29506\n",
+ "Discriminator Loss: tf.Tensor(0.8149189, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.6162319, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 29507\n",
+ "Discriminator Loss: tf.Tensor(0.6698405, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.5774607, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 29508\n",
+ "Discriminator Loss: tf.Tensor(0.9087915, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.644043, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 29509\n",
+ "Discriminator Loss: tf.Tensor(0.40707952, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.1613823, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 29510\n",
+ "Discriminator Loss: tf.Tensor(0.3325009, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.0523814, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 29511\n",
+ "Discriminator Loss: tf.Tensor(0.5705962, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.9141016, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 29512\n",
+ "Discriminator Loss: tf.Tensor(0.21609345, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.8644355, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 29513\n",
+ "Discriminator Loss: tf.Tensor(0.7042837, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.006076, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 29514\n",
+ "Discriminator Loss: tf.Tensor(0.34341297, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.7953662, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 29515\n",
+ "Discriminator Loss: tf.Tensor(1.341781, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(3.5128357, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 29516\n",
+ "Discriminator Loss: tf.Tensor(0.6128154, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.0614867, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 29517\n",
+ "Discriminator Loss: tf.Tensor(0.7639948, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.1829638, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 29518\n",
+ "Discriminator Loss: tf.Tensor(0.68424535, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.8118572, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 29519\n",
+ "Discriminator Loss: tf.Tensor(1.204551, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.0962274, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 29520\n",
+ "Discriminator Loss: tf.Tensor(0.9315472, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.11341252, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 29521\n",
+ "Discriminator Loss: tf.Tensor(0.87419903, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.5721706, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 29522\n",
+ "Discriminator Loss: tf.Tensor(0.91839147, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.40163323, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 29523\n",
+ "Discriminator Loss: tf.Tensor(0.7245965, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.3111459, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 29524\n",
+ "Discriminator Loss: tf.Tensor(0.76987356, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.75628, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 29525\n",
+ "Discriminator Loss: tf.Tensor(0.6431737, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.5540282, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 29526\n",
+ "Discriminator Loss: tf.Tensor(1.135163, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.1513134, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 29527\n",
+ "Discriminator Loss: tf.Tensor(0.8657032, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.7754807, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 29528\n",
+ "Discriminator Loss: tf.Tensor(0.71582806, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.5292684, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 29529\n",
+ "Discriminator Loss: tf.Tensor(0.5385901, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.3135985, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 29530\n",
+ "Discriminator Loss: tf.Tensor(0.51733226, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.99164397, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 29531\n",
+ "Discriminator Loss: tf.Tensor(0.7818284, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.6796808, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 29532\n",
+ "Discriminator Loss: tf.Tensor(0.7800211, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.6264835, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 29533\n",
+ "Discriminator Loss: tf.Tensor(0.4020093, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.4091879, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 29534\n",
+ "Discriminator Loss: tf.Tensor(0.2713116, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.9799754, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 29535\n",
+ "Discriminator Loss: tf.Tensor(0.81446815, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.6979448, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 29536\n",
+ "Discriminator Loss: tf.Tensor(0.757293, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.41670132, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 29537\n",
+ "Discriminator Loss: tf.Tensor(1.2057927, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.5008961, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 29538\n",
+ "Discriminator Loss: tf.Tensor(0.43232268, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.73638517, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 29539\n",
+ "Discriminator Loss: tf.Tensor(1.0028484, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.1989384, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 29540\n",
+ "Discriminator Loss: tf.Tensor(0.45911047, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.57498866, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 29541\n",
+ "Discriminator Loss: tf.Tensor(0.39169088, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.6559366, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 29542\n",
+ "Discriminator Loss: tf.Tensor(0.57705164, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.6246231, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 29543\n",
+ "Discriminator Loss: tf.Tensor(1.1585407, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.9968761, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 29544\n",
+ "Discriminator Loss: tf.Tensor(0.6551689, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.55445784, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 29545\n",
+ "Discriminator Loss: tf.Tensor(0.73631483, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.6667596, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 29546\n",
+ "Discriminator Loss: tf.Tensor(0.61339146, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.61008817, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 29547\n",
+ "Discriminator Loss: tf.Tensor(0.5151113, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.7546536, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 29548\n",
+ "Discriminator Loss: tf.Tensor(0.5899764, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.68717384, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 29549\n",
+ "Discriminator Loss: tf.Tensor(0.9793631, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.8264713, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 29550\n",
+ "Discriminator Loss: tf.Tensor(0.4187553, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.7834394, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 29551\n",
+ "Discriminator Loss: tf.Tensor(0.81003463, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.440445, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 29552\n",
+ "Discriminator Loss: tf.Tensor(0.62508154, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.45209625, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 29553\n",
+ "Discriminator Loss: tf.Tensor(1.4579308, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.0719697, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 29554\n",
+ "Discriminator Loss: tf.Tensor(0.47535253, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.6418249, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 29555\n",
+ "Discriminator Loss: tf.Tensor(0.6027942, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.5446595, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 29556\n",
+ "Discriminator Loss: tf.Tensor(1.1346049, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.0067479834, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 29557\n",
+ "Discriminator Loss: tf.Tensor(0.7341083, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.5354562, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 29558\n",
+ "Discriminator Loss: tf.Tensor(0.4796336, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.63546735, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 29559\n",
+ "Discriminator Loss: tf.Tensor(0.25212762, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.4979858, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 29560\n",
+ "Discriminator Loss: tf.Tensor(0.66742456, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.2979202, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 29561\n",
+ "Discriminator Loss: tf.Tensor(0.5987673, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.4684709, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 29562\n",
+ "Discriminator Loss: tf.Tensor(1.1498299, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.6085662, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 29563\n",
+ "Discriminator Loss: tf.Tensor(0.5695029, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.0173961, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 29564\n",
+ "Discriminator Loss: tf.Tensor(0.46182883, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.0856694, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 29565\n",
+ "Discriminator Loss: tf.Tensor(0.7349193, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.6995371, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 29566\n",
+ "Discriminator Loss: tf.Tensor(0.8828958, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.5446521, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 29567\n",
+ "Discriminator Loss: tf.Tensor(0.820381, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.38726106, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 29568\n",
+ "Discriminator Loss: tf.Tensor(0.48383433, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.4590263, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 29569\n",
+ "Discriminator Loss: tf.Tensor(0.5788629, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.102797, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 29570\n",
+ "Discriminator Loss: tf.Tensor(0.6037514, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.7660893, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 29571\n",
+ "Discriminator Loss: tf.Tensor(0.30644795, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.0585028, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 29572\n",
+ "Discriminator Loss: tf.Tensor(0.33398098, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.3821939, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 29573\n",
+ "Discriminator Loss: tf.Tensor(0.417302, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.945131, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 29574\n",
+ "Discriminator Loss: tf.Tensor(0.3857954, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.0080544, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 29575\n",
+ "Discriminator Loss: tf.Tensor(1.5261476, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.3597963, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 29576\n",
+ "Discriminator Loss: tf.Tensor(0.9310248, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.22883356, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 29577\n",
+ "Discriminator Loss: tf.Tensor(1.3451592, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.5679569, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 29578\n",
+ "Discriminator Loss: tf.Tensor(0.6444108, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.61041135, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 29579\n",
+ "Discriminator Loss: tf.Tensor(0.5724126, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.2951821, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 29580\n",
+ "Discriminator Loss: tf.Tensor(0.5040512, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.89978456, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 29581\n",
+ "Discriminator Loss: tf.Tensor(0.32256043, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.2689781, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 29582\n",
+ "Discriminator Loss: tf.Tensor(0.6945727, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.5390844, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 29583\n",
+ "Discriminator Loss: tf.Tensor(0.7041824, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.42215458, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 29584\n",
+ "Discriminator Loss: tf.Tensor(1.0304303, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.2479316, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 29585\n",
+ "Discriminator Loss: tf.Tensor(0.6300664, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.83939934, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 29586\n",
+ "Discriminator Loss: tf.Tensor(0.75176376, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.9324022, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 29587\n",
+ "Discriminator Loss: tf.Tensor(0.8583784, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.5075636, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 29588\n",
+ "Discriminator Loss: tf.Tensor(1.3162029, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.09548148, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 29589\n",
+ "Discriminator Loss: tf.Tensor(0.538379, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.3521737, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 29590\n",
+ "Discriminator Loss: tf.Tensor(0.5802742, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.94483584, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 29591\n",
+ "Discriminator Loss: tf.Tensor(0.33934173, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.1232467, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 29592\n",
+ "Discriminator Loss: tf.Tensor(0.1726178, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.0919935, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 29593\n",
+ "Discriminator Loss: tf.Tensor(1.0912733, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.046382, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 29594\n",
+ "Discriminator Loss: tf.Tensor(1.0213536, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.24073382, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 29595\n",
+ "Discriminator Loss: tf.Tensor(1.2314996, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.6556851, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 29596\n",
+ "Discriminator Loss: tf.Tensor(0.7633827, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.4347384, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 29597\n",
+ "Discriminator Loss: tf.Tensor(1.0620972, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.9895424, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 29598\n",
+ "Discriminator Loss: tf.Tensor(0.3777238, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.0468866, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 29599\n",
+ "Discriminator Loss: tf.Tensor(0.52984583, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.3230678, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 29600\n",
+ "Discriminator Loss: tf.Tensor(0.4926012, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.7991211, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 29601\n",
+ "Discriminator Loss: tf.Tensor(1.0016232, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.8808676, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 29602\n",
+ "Discriminator Loss: tf.Tensor(0.6833132, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.50867724, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 29603\n",
+ "Discriminator Loss: tf.Tensor(1.4311244, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.261804, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 29604\n",
+ "Discriminator Loss: tf.Tensor(0.54502136, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.7558472, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 29605\n",
+ "Discriminator Loss: tf.Tensor(1.0780054, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.6338617, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 29606\n",
+ "Discriminator Loss: tf.Tensor(0.3670793, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.89775753, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 29607\n",
+ "Discriminator Loss: tf.Tensor(0.8175913, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.7565276, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 29608\n",
+ "Discriminator Loss: tf.Tensor(0.54164195, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.2112912, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 29609\n",
+ "Discriminator Loss: tf.Tensor(0.5891323, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.69372374, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 29610\n",
+ "Discriminator Loss: tf.Tensor(0.34647873, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.6506237, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 29611\n",
+ "Discriminator Loss: tf.Tensor(0.31935, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.113369, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 29612\n",
+ "Discriminator Loss: tf.Tensor(0.33220285, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.3908315, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 29613\n",
+ "Discriminator Loss: tf.Tensor(0.73320425, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.7079144, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 29614\n",
+ "Discriminator Loss: tf.Tensor(0.7294533, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.3333265, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 29615\n",
+ "Discriminator Loss: tf.Tensor(0.7512332, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.48460686, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 29616\n",
+ "Discriminator Loss: tf.Tensor(1.3988726, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.8322242, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 29617\n",
+ "Discriminator Loss: tf.Tensor(0.7293351, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.38244024, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 29618\n",
+ "Discriminator Loss: tf.Tensor(1.0363727, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.1656659, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 29619\n",
+ "Discriminator Loss: tf.Tensor(0.71283436, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.708406, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 29620\n",
+ "Discriminator Loss: tf.Tensor(0.75420374, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.6457921, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 29621\n",
+ "Discriminator Loss: tf.Tensor(0.5771082, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.4504696, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 29622\n",
+ "Discriminator Loss: tf.Tensor(1.1503977, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.8852267, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 29623\n",
+ "Discriminator Loss: tf.Tensor(0.5651624, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.6864159, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 29624\n",
+ "Discriminator Loss: tf.Tensor(1.3286787, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.5782789, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 29625\n",
+ "Discriminator Loss: tf.Tensor(0.49152288, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.7637003, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 29626\n",
+ "Discriminator Loss: tf.Tensor(0.5727221, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.206277, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 29627\n",
+ "Discriminator Loss: tf.Tensor(0.25217822, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.8800559, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 29628\n",
+ "Discriminator Loss: tf.Tensor(1.2913865, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.1514843, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 29629\n",
+ "Discriminator Loss: tf.Tensor(0.84118044, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.5424036, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 29630\n",
+ "Discriminator Loss: tf.Tensor(0.416493, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.9704332, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 29631\n",
+ "Discriminator Loss: tf.Tensor(0.7856845, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.7136507, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 29632\n",
+ "Discriminator Loss: tf.Tensor(0.57769954, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.52972883, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 29633\n",
+ "Discriminator Loss: tf.Tensor(0.68853027, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.2125847, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 29634\n",
+ "Discriminator Loss: tf.Tensor(0.40028864, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.8195476, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 29635\n",
+ "Discriminator Loss: tf.Tensor(0.9171275, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.9748503, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 29636\n",
+ "Discriminator Loss: tf.Tensor(0.50584865, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.0575527, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 29637\n",
+ "Discriminator Loss: tf.Tensor(0.35503256, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.553359, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 29638\n",
+ "Discriminator Loss: tf.Tensor(0.2502889, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.0519806, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 29639\n",
+ "Discriminator Loss: tf.Tensor(0.63420874, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.2584876, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 29640\n",
+ "Discriminator Loss: tf.Tensor(0.6186869, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.255241, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 29641\n",
+ "Discriminator Loss: tf.Tensor(0.5839504, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.6911481, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 29642\n",
+ "Discriminator Loss: tf.Tensor(0.41242847, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.2490486, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 29643\n",
+ "Discriminator Loss: tf.Tensor(0.47441125, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.96143466, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 29644\n",
+ "Discriminator Loss: tf.Tensor(1.0841266, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.4593662, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 29645\n",
+ "Discriminator Loss: tf.Tensor(0.86218923, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.3421797, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 29646\n",
+ "Discriminator Loss: tf.Tensor(0.9829209, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.3217384, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 29647\n",
+ "Discriminator Loss: tf.Tensor(0.8679214, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.1802061, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 29648\n",
+ "Discriminator Loss: tf.Tensor(0.7959659, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.6027263, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 29649\n",
+ "Discriminator Loss: tf.Tensor(0.63201207, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.57365364, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 29650\n",
+ "Discriminator Loss: tf.Tensor(0.8239566, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.6268691, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 29651\n",
+ "Discriminator Loss: tf.Tensor(0.79868066, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.6999593, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 29652\n",
+ "Discriminator Loss: tf.Tensor(0.5054667, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.0881453, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 29653\n",
+ "Discriminator Loss: tf.Tensor(0.36088306, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.7995494, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 29654\n",
+ "Discriminator Loss: tf.Tensor(1.149028, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.3050158, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 29655\n",
+ "Discriminator Loss: tf.Tensor(0.73727506, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.50910634, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 29656\n",
+ "Discriminator Loss: tf.Tensor(1.0263737, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.4555026, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 29657\n",
+ "Discriminator Loss: tf.Tensor(0.74289834, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.3673265, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 29658\n",
+ "Discriminator Loss: tf.Tensor(1.4801098, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.6040572, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 29659\n",
+ "Discriminator Loss: tf.Tensor(0.78031397, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.42331514, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 29660\n",
+ "Discriminator Loss: tf.Tensor(0.6854086, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.2601309, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 29661\n",
+ "Discriminator Loss: tf.Tensor(0.48266795, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.728213, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 29662\n",
+ "Discriminator Loss: tf.Tensor(0.5700033, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.5329491, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 29663\n",
+ "Discriminator Loss: tf.Tensor(0.49007377, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.6876996, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 29664\n",
+ "Discriminator Loss: tf.Tensor(0.8461691, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.8761879, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 29665\n",
+ "Discriminator Loss: tf.Tensor(0.29951245, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.0799598, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 29666\n",
+ "Discriminator Loss: tf.Tensor(0.6242177, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.3556949, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 29667\n",
+ "Discriminator Loss: tf.Tensor(0.4025002, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.4699241, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 29668\n",
+ "Discriminator Loss: tf.Tensor(0.64442366, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.9918428, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 29669\n",
+ "Discriminator Loss: tf.Tensor(0.24180809, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.3412647, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 29670\n",
+ "Discriminator Loss: tf.Tensor(1.775518, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.5566219, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 29671\n",
+ "Discriminator Loss: tf.Tensor(0.622214, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.4736079, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 29672\n",
+ "Discriminator Loss: tf.Tensor(1.2334366, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.4362272, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 29673\n",
+ "Discriminator Loss: tf.Tensor(1.0112041, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.26533058, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 29674\n",
+ "Discriminator Loss: tf.Tensor(1.0242584, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.3441938, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 29675\n",
+ "Discriminator Loss: tf.Tensor(0.8541292, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.28004915, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 29676\n",
+ "Discriminator Loss: tf.Tensor(0.9794914, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.0344089, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 29677\n",
+ "Discriminator Loss: tf.Tensor(0.65967345, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.8049841, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 29678\n",
+ "Discriminator Loss: tf.Tensor(0.8616501, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.8149605, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 29679\n",
+ "Discriminator Loss: tf.Tensor(0.71729696, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.3533493, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 29680\n",
+ "Discriminator Loss: tf.Tensor(0.9953068, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.4088622, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 29681\n",
+ "Discriminator Loss: tf.Tensor(0.7296748, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.2892778, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 29682\n",
+ "Discriminator Loss: tf.Tensor(0.94543546, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.2075456, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 29683\n",
+ "Discriminator Loss: tf.Tensor(1.0927441, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.2921534, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 29684\n",
+ "Discriminator Loss: tf.Tensor(0.6523137, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.44585952, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 29685\n",
+ "Discriminator Loss: tf.Tensor(1.3511275, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.0444418, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 29686\n",
+ "Discriminator Loss: tf.Tensor(0.36710772, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.90951085, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 29687\n",
+ "Discriminator Loss: tf.Tensor(0.36961424, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.2808869, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 29688\n",
+ "Discriminator Loss: tf.Tensor(0.35684916, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.9073623, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 29689\n",
+ "Discriminator Loss: tf.Tensor(0.9277963, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.5399843, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 29690\n",
+ "Discriminator Loss: tf.Tensor(0.9770575, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.18579306, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 29691\n",
+ "Discriminator Loss: tf.Tensor(1.1249046, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.7973332, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 29692\n",
+ "Discriminator Loss: tf.Tensor(0.5912547, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.44117716, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 29693\n",
+ "Discriminator Loss: tf.Tensor(1.0260118, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.5299767, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 29694\n",
+ "Discriminator Loss: tf.Tensor(0.56249005, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.75875217, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 29695\n",
+ "Discriminator Loss: tf.Tensor(0.44099396, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.9456771, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 29696\n",
+ "Discriminator Loss: tf.Tensor(0.5492103, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.3019794, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 29697\n",
+ "Discriminator Loss: tf.Tensor(0.88444054, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.46756378, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 29698\n",
+ "Discriminator Loss: tf.Tensor(0.6277553, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.5760212, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 29699\n",
+ "Discriminator Loss: tf.Tensor(0.29112184, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.8880027, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 29700\n",
+ "Discriminator Loss: tf.Tensor(0.7108978, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.8938465, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 29701\n",
+ "Discriminator Loss: tf.Tensor(0.53110945, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.6405941, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 29702\n",
+ "Discriminator Loss: tf.Tensor(0.6979525, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.4896951, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 29703\n",
+ "Discriminator Loss: tf.Tensor(0.39316386, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.0785162, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 29704\n",
+ "Discriminator Loss: tf.Tensor(0.6662708, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.7970177, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 29705\n",
+ "Discriminator Loss: tf.Tensor(0.6923189, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.33724347, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 29706\n",
+ "Discriminator Loss: tf.Tensor(1.3655205, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.7088466, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 29707\n",
+ "Discriminator Loss: tf.Tensor(0.61089057, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.555484, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 29708\n",
+ "Discriminator Loss: tf.Tensor(0.86214244, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.2107528, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 29709\n",
+ "Discriminator Loss: tf.Tensor(0.4924185, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.7114665, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 29710\n",
+ "Discriminator Loss: tf.Tensor(0.37209356, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.3289814, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 29711\n",
+ "Discriminator Loss: tf.Tensor(0.26262867, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.092642, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 29712\n",
+ "Discriminator Loss: tf.Tensor(0.92022455, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.4109874, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 29713\n",
+ "Discriminator Loss: tf.Tensor(0.3767173, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.9077423, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 29714\n",
+ "Discriminator Loss: tf.Tensor(0.99850345, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.9810302, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 29715\n",
+ "Discriminator Loss: tf.Tensor(0.7635137, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.60831064, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 29716\n",
+ "Discriminator Loss: tf.Tensor(0.70077246, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.4798971, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 29717\n",
+ "Discriminator Loss: tf.Tensor(0.7478495, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.93012565, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 29718\n",
+ "Discriminator Loss: tf.Tensor(0.6560696, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.4040853, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 29719\n",
+ "Discriminator Loss: tf.Tensor(0.737601, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.4933603, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 29720\n",
+ "Discriminator Loss: tf.Tensor(0.8337474, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.6978143, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 29721\n",
+ "Discriminator Loss: tf.Tensor(0.8182506, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.575455, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 29722\n",
+ "Discriminator Loss: tf.Tensor(0.21914536, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.2431642, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 29723\n",
+ "Discriminator Loss: tf.Tensor(0.45552838, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.3183461, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 29724\n",
+ "Discriminator Loss: tf.Tensor(0.42436552, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.89292115, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 29725\n",
+ "Discriminator Loss: tf.Tensor(0.6958503, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.8736839, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 29726\n",
+ "Discriminator Loss: tf.Tensor(0.7053564, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.98798275, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 29727\n",
+ "Discriminator Loss: tf.Tensor(0.45719054, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.86614484, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 29728\n",
+ "Discriminator Loss: tf.Tensor(1.084044, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.2242165, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 29729\n",
+ "Discriminator Loss: tf.Tensor(0.90903735, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.28801742, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 29730\n",
+ "Discriminator Loss: tf.Tensor(1.0284672, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.2140496, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 29731\n",
+ "Discriminator Loss: tf.Tensor(0.95566404, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.36883032, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 29732\n",
+ "Discriminator Loss: tf.Tensor(0.6501993, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.7139101, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 29733\n",
+ "Discriminator Loss: tf.Tensor(0.74085087, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.44980183, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 29734\n",
+ "Discriminator Loss: tf.Tensor(0.66766846, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.148305, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 29735\n",
+ "Discriminator Loss: tf.Tensor(0.70859206, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.1745728, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 29736\n",
+ "Discriminator Loss: tf.Tensor(0.35636538, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.88706446, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 29737\n",
+ "Discriminator Loss: tf.Tensor(1.3675048, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.1371365, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 29738\n",
+ "Discriminator Loss: tf.Tensor(0.66341156, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.5336639, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 29739\n",
+ "Discriminator Loss: tf.Tensor(0.6527852, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.3715929, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 29740\n",
+ "Discriminator Loss: tf.Tensor(0.64466, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.8535606, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 29741\n",
+ "Discriminator Loss: tf.Tensor(0.8721467, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.84059304, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 29742\n",
+ "Discriminator Loss: tf.Tensor(0.29914027, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.3926169, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 29743\n",
+ "Discriminator Loss: tf.Tensor(1.2236892, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.2622083, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 29744\n",
+ "Discriminator Loss: tf.Tensor(0.70864195, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.62433416, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 29745\n",
+ "Discriminator Loss: tf.Tensor(1.4710815, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.683021, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 29746\n",
+ "Discriminator Loss: tf.Tensor(0.70008904, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.4132236, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 29747\n",
+ "Discriminator Loss: tf.Tensor(0.8554862, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.2128392, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 29748\n",
+ "Discriminator Loss: tf.Tensor(0.5436195, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.69792634, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 29749\n",
+ "Discriminator Loss: tf.Tensor(0.5371801, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.3558927, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 29750\n",
+ "Discriminator Loss: tf.Tensor(0.31595218, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.9197337, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 29751\n",
+ "Discriminator Loss: tf.Tensor(0.6409342, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.5725702, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 29752\n",
+ "Discriminator Loss: tf.Tensor(0.62590253, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.40365696, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 29753\n",
+ "Discriminator Loss: tf.Tensor(1.0295537, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.9711584, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 29754\n",
+ "Discriminator Loss: tf.Tensor(0.42177776, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.86334896, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 29755\n",
+ "Discriminator Loss: tf.Tensor(0.5485712, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.8629984, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 29756\n",
+ "Discriminator Loss: tf.Tensor(0.8960813, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.56632125, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 29757\n",
+ "Discriminator Loss: tf.Tensor(0.35162857, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.4076794, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 29758\n",
+ "Discriminator Loss: tf.Tensor(0.62348104, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.7184327, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 29759\n",
+ "Discriminator Loss: tf.Tensor(0.7541748, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.3060533, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 29760\n",
+ "Discriminator Loss: tf.Tensor(0.43195185, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.6721535, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 29761\n",
+ "Discriminator Loss: tf.Tensor(0.9370588, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.7865052, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 29762\n",
+ "Discriminator Loss: tf.Tensor(0.5528497, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.6908614, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 29763\n",
+ "Discriminator Loss: tf.Tensor(1.004512, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.3383955, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 29764\n",
+ "Discriminator Loss: tf.Tensor(0.5890435, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.2857374, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 29765\n",
+ "Discriminator Loss: tf.Tensor(0.6804233, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.7323615, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 29766\n",
+ "Discriminator Loss: tf.Tensor(0.7727124, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.5460196, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 29767\n",
+ "Discriminator Loss: tf.Tensor(0.5406346, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.68435955, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 29768\n",
+ "Discriminator Loss: tf.Tensor(0.9495473, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.6608572, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 29769\n",
+ "Discriminator Loss: tf.Tensor(0.58187294, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.63690895, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 29770\n",
+ "Discriminator Loss: tf.Tensor(0.6493821, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.2723714, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 29771\n",
+ "Discriminator Loss: tf.Tensor(0.5475185, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.527131, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 29772\n",
+ "Discriminator Loss: tf.Tensor(1.1940109, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.9472466, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 29773\n",
+ "Discriminator Loss: tf.Tensor(0.36416817, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.8105583, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 29774\n",
+ "Discriminator Loss: tf.Tensor(0.31077778, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.4124473, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 29775\n",
+ "Discriminator Loss: tf.Tensor(0.7979171, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.566325, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 29776\n",
+ "Discriminator Loss: tf.Tensor(1.284901, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.0519855, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 29777\n",
+ "Discriminator Loss: tf.Tensor(0.6510838, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.92248756, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 29778\n",
+ "Discriminator Loss: tf.Tensor(0.478907, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.0646197, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 29779\n",
+ "Discriminator Loss: tf.Tensor(0.48385623, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.4290748, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 29780\n",
+ "Discriminator Loss: tf.Tensor(0.88012505, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.55569917, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 29781\n",
+ "Discriminator Loss: tf.Tensor(0.95270205, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.3986926, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 29782\n",
+ "Discriminator Loss: tf.Tensor(0.66397816, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.421507, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 29783\n",
+ "Discriminator Loss: tf.Tensor(0.31420186, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.5603352, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 29784\n",
+ "Discriminator Loss: tf.Tensor(0.337286, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.2037536, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 29785\n",
+ "Discriminator Loss: tf.Tensor(0.23018715, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.95853823, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 29786\n",
+ "Discriminator Loss: tf.Tensor(0.9500097, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.4584655, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 29787\n",
+ "Discriminator Loss: tf.Tensor(0.5369996, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.90570134, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 29788\n",
+ "Discriminator Loss: tf.Tensor(0.809506, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.168423, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 29789\n",
+ "Discriminator Loss: tf.Tensor(0.9599602, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.3568574, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 29790\n",
+ "Discriminator Loss: tf.Tensor(0.5429195, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.5362709, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 29791\n",
+ "Discriminator Loss: tf.Tensor(1.2343452, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.3871987, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 29792\n",
+ "Discriminator Loss: tf.Tensor(0.53514564, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.78673714, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 29793\n",
+ "Discriminator Loss: tf.Tensor(1.006999, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.4098152, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 29794\n",
+ "Discriminator Loss: tf.Tensor(0.34575444, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.04843, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 29795\n",
+ "Discriminator Loss: tf.Tensor(0.59521705, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.2222608, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 29796\n",
+ "Discriminator Loss: tf.Tensor(0.7254845, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.8381951, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 29797\n",
+ "Discriminator Loss: tf.Tensor(0.76773506, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.2058831, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 29798\n",
+ "Discriminator Loss: tf.Tensor(0.41553167, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.0154668, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 29799\n",
+ "Discriminator Loss: tf.Tensor(0.3776075, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.6073416, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 29800\n",
+ "Discriminator Loss: tf.Tensor(0.39954725, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.82878894, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 29801\n",
+ "Discriminator Loss: tf.Tensor(1.4003975, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.3230963, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 29802\n",
+ "Discriminator Loss: tf.Tensor(0.7334225, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.4481322, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 29803\n",
+ "Discriminator Loss: tf.Tensor(0.618775, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.4259958, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 29804\n",
+ "Discriminator Loss: tf.Tensor(0.88307196, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.64393985, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 29805\n",
+ "Discriminator Loss: tf.Tensor(0.46700245, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.95746785, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 29806\n",
+ "Discriminator Loss: tf.Tensor(1.3737998, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.2263604, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 29807\n",
+ "Discriminator Loss: tf.Tensor(0.52539593, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.6433871, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 29808\n",
+ "Discriminator Loss: tf.Tensor(0.84975874, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.5984688, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 29809\n",
+ "Discriminator Loss: tf.Tensor(0.5615667, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.7121062, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 29810\n",
+ "Discriminator Loss: tf.Tensor(0.66353303, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.1319313, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 29811\n",
+ "Discriminator Loss: tf.Tensor(0.6504941, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.2341837, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 29812\n",
+ "Discriminator Loss: tf.Tensor(0.31835625, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.9739751, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 29813\n",
+ "Discriminator Loss: tf.Tensor(0.67428505, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.7182189, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 29814\n",
+ "Discriminator Loss: tf.Tensor(0.619813, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.56203586, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 29815\n",
+ "Discriminator Loss: tf.Tensor(0.93691224, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.5221171, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 29816\n",
+ "Discriminator Loss: tf.Tensor(0.5193696, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.5303021, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 29817\n",
+ "Discriminator Loss: tf.Tensor(1.125509, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.0614436, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 29818\n",
+ "Discriminator Loss: tf.Tensor(0.7783172, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.46242365, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 29819\n",
+ "Discriminator Loss: tf.Tensor(0.56328267, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.585826, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 29820\n",
+ "Discriminator Loss: tf.Tensor(0.66626245, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.53275746, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 29821\n",
+ "Discriminator Loss: tf.Tensor(0.6420157, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.0528457, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 29822\n",
+ "Discriminator Loss: tf.Tensor(0.6063111, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.5378275, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 29823\n",
+ "Discriminator Loss: tf.Tensor(0.60315806, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.4759251, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 29824\n",
+ "Discriminator Loss: tf.Tensor(0.7116568, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.2892979, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 29825\n",
+ "Discriminator Loss: tf.Tensor(0.4968223, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.8035466, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 29826\n",
+ "Discriminator Loss: tf.Tensor(0.89876616, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.9776014, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 29827\n",
+ "Discriminator Loss: tf.Tensor(0.41710985, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.94759583, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 29828\n",
+ "Discriminator Loss: tf.Tensor(0.61436725, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.2084879, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 29829\n",
+ "Discriminator Loss: tf.Tensor(0.76675373, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.43869177, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 29830\n",
+ "Discriminator Loss: tf.Tensor(1.2797489, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.36956, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 29831\n",
+ "Discriminator Loss: tf.Tensor(0.5058673, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.953005, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 29832\n",
+ "Discriminator Loss: tf.Tensor(0.4188906, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.986644, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 29833\n",
+ "Discriminator Loss: tf.Tensor(0.6430092, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.9091558, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 29834\n",
+ "Discriminator Loss: tf.Tensor(0.5913861, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.50208545, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 29835\n",
+ "Discriminator Loss: tf.Tensor(1.0925072, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.654385, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 29836\n",
+ "Discriminator Loss: tf.Tensor(0.6431603, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.82851917, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 29837\n",
+ "Discriminator Loss: tf.Tensor(0.30867746, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.4469417, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 29838\n",
+ "Discriminator Loss: tf.Tensor(0.82378817, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.58570737, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 29839\n",
+ "Discriminator Loss: tf.Tensor(0.90407217, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.4984118, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 29840\n",
+ "Discriminator Loss: tf.Tensor(0.39172113, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.7440298, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 29841\n",
+ "Discriminator Loss: tf.Tensor(0.59530383, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.6844169, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 29842\n",
+ "Discriminator Loss: tf.Tensor(0.65322894, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.8199773, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 29843\n",
+ "Discriminator Loss: tf.Tensor(0.8175045, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.3318831, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 29844\n",
+ "Discriminator Loss: tf.Tensor(0.58780193, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.2931077, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 29845\n",
+ "Discriminator Loss: tf.Tensor(0.67247045, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.5396587, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 29846\n",
+ "Discriminator Loss: tf.Tensor(0.48123434, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.3490335, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 29847\n",
+ "Discriminator Loss: tf.Tensor(0.7909074, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.7268481, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 29848\n",
+ "Discriminator Loss: tf.Tensor(0.4315335, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.839756, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 29849\n",
+ "Discriminator Loss: tf.Tensor(0.5235867, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.7214075, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 29850\n",
+ "Discriminator Loss: tf.Tensor(0.3094436, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.0048752, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 29851\n",
+ "Discriminator Loss: tf.Tensor(0.88766074, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.7075499, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 29852\n",
+ "Discriminator Loss: tf.Tensor(0.7802767, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.41453472, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 29853\n",
+ "Discriminator Loss: tf.Tensor(1.0343808, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.765184, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 29854\n",
+ "Discriminator Loss: tf.Tensor(0.6073644, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.53862625, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 29855\n",
+ "Discriminator Loss: tf.Tensor(1.0826916, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.8012434, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 29856\n",
+ "Discriminator Loss: tf.Tensor(1.0382013, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.10971264, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 29857\n",
+ "Discriminator Loss: tf.Tensor(0.68694156, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.5412396, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 29858\n",
+ "Discriminator Loss: tf.Tensor(0.87173814, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.49841455, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 29859\n",
+ "Discriminator Loss: tf.Tensor(0.51766825, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.3379377, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 29860\n",
+ "Discriminator Loss: tf.Tensor(0.85541946, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.5030959, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 29861\n",
+ "Discriminator Loss: tf.Tensor(0.28992373, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.1849447, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 29862\n",
+ "Discriminator Loss: tf.Tensor(0.48669165, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.3434639, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 29863\n",
+ "Discriminator Loss: tf.Tensor(0.32320592, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.2416342, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 29864\n",
+ "Discriminator Loss: tf.Tensor(0.9516535, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.78764, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 29865\n",
+ "Discriminator Loss: tf.Tensor(0.8298074, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.37714228, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 29866\n",
+ "Discriminator Loss: tf.Tensor(0.7854613, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.447673, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 29867\n",
+ "Discriminator Loss: tf.Tensor(0.411134, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.74752665, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 29868\n",
+ "Discriminator Loss: tf.Tensor(0.63056326, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.6420436, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 29869\n",
+ "Discriminator Loss: tf.Tensor(0.21354115, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.255314, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 29870\n",
+ "Discriminator Loss: tf.Tensor(0.2820517, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.4789124, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 29871\n",
+ "Discriminator Loss: tf.Tensor(0.41241148, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.2563066, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 29872\n",
+ "Discriminator Loss: tf.Tensor(0.7673956, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.011678, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 29873\n",
+ "Discriminator Loss: tf.Tensor(0.869836, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.9831038, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 29874\n",
+ "Discriminator Loss: tf.Tensor(0.6907218, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.41331005, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 29875\n",
+ "Discriminator Loss: tf.Tensor(1.2877498, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.0793188, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 29876\n",
+ "Discriminator Loss: tf.Tensor(0.50719845, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.6293269, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 29877\n",
+ "Discriminator Loss: tf.Tensor(1.0880216, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.4849843, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 29878\n",
+ "Discriminator Loss: tf.Tensor(0.4326043, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.9261431, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 29879\n",
+ "Discriminator Loss: tf.Tensor(0.2857763, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.017385, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 29880\n",
+ "Discriminator Loss: tf.Tensor(0.84683335, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.8872686, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 29881\n",
+ "Discriminator Loss: tf.Tensor(0.62802917, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.5162582, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 29882\n",
+ "Discriminator Loss: tf.Tensor(0.65500504, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.38095057, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 29883\n",
+ "Discriminator Loss: tf.Tensor(1.2766273, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.8974146, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 29884\n",
+ "Discriminator Loss: tf.Tensor(0.7318417, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.5843434, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 29885\n",
+ "Discriminator Loss: tf.Tensor(1.0435812, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.0871252, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 29886\n",
+ "Discriminator Loss: tf.Tensor(0.5755882, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.0642622, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 29887\n",
+ "Discriminator Loss: tf.Tensor(0.4114758, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.3323157, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 29888\n",
+ "Discriminator Loss: tf.Tensor(0.76217026, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.2170221, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 29889\n",
+ "Discriminator Loss: tf.Tensor(0.6286555, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.0599369, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 29890\n",
+ "Discriminator Loss: tf.Tensor(0.79549307, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.7330734, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 29891\n",
+ "Discriminator Loss: tf.Tensor(0.4343379, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.5528644, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 29892\n",
+ "Discriminator Loss: tf.Tensor(0.82877874, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.4674871, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 29893\n",
+ "Discriminator Loss: tf.Tensor(0.72667813, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.5812092, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 29894\n",
+ "Discriminator Loss: tf.Tensor(0.5822057, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.6779113, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 29895\n",
+ "Discriminator Loss: tf.Tensor(1.195692, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.1424818, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 29896\n",
+ "Discriminator Loss: tf.Tensor(0.612712, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.89884305, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 29897\n",
+ "Discriminator Loss: tf.Tensor(0.17931433, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.2475997, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 29898\n",
+ "Discriminator Loss: tf.Tensor(0.57643783, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.6107417, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 29899\n",
+ "Discriminator Loss: tf.Tensor(0.85581374, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.231798, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 29900\n",
+ "Discriminator Loss: tf.Tensor(0.6504748, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.57536465, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 29901\n",
+ "Discriminator Loss: tf.Tensor(0.4719143, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.6321169, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 29902\n",
+ "Discriminator Loss: tf.Tensor(0.300713, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.3001919, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 29903\n",
+ "Discriminator Loss: tf.Tensor(0.48056298, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.9933962, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 29904\n",
+ "Discriminator Loss: tf.Tensor(0.8784728, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.3437757, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 29905\n",
+ "Discriminator Loss: tf.Tensor(0.9546162, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.10532292, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 29906\n",
+ "Discriminator Loss: tf.Tensor(0.5953793, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.625978, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 29907\n",
+ "Discriminator Loss: tf.Tensor(0.6899293, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.43829286, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 29908\n",
+ "Discriminator Loss: tf.Tensor(1.0548372, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.5749058, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 29909\n",
+ "Discriminator Loss: tf.Tensor(0.6035718, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.69290656, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 29910\n",
+ "Discriminator Loss: tf.Tensor(0.59852546, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.2158996, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 29911\n",
+ "Discriminator Loss: tf.Tensor(0.37925702, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.0174328, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 29912\n",
+ "Discriminator Loss: tf.Tensor(0.79560226, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.3068489, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 29913\n",
+ "Discriminator Loss: tf.Tensor(0.63497806, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.6548032, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 29914\n",
+ "Discriminator Loss: tf.Tensor(1.1198651, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.5630078, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 29915\n",
+ "Discriminator Loss: tf.Tensor(0.6268275, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.604768, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 29916\n",
+ "Discriminator Loss: tf.Tensor(0.9860724, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.3925518, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 29917\n",
+ "Discriminator Loss: tf.Tensor(0.29057437, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.0038215, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 29918\n",
+ "Discriminator Loss: tf.Tensor(0.5070451, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.5723457, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 29919\n",
+ "Discriminator Loss: tf.Tensor(0.8904324, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.56664056, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 29920\n",
+ "Discriminator Loss: tf.Tensor(1.0402119, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.678682, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 29921\n",
+ "Discriminator Loss: tf.Tensor(0.6357785, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.3841115, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 29922\n",
+ "Discriminator Loss: tf.Tensor(1.1377751, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.8004332, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 29923\n",
+ "Discriminator Loss: tf.Tensor(0.83260524, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.6029917, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 29924\n",
+ "Discriminator Loss: tf.Tensor(0.55994284, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.0379366, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 29925\n",
+ "Discriminator Loss: tf.Tensor(0.45726776, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.1030711, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 29926\n",
+ "Discriminator Loss: tf.Tensor(0.36408538, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.0444295, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 29927\n",
+ "Discriminator Loss: tf.Tensor(0.6763443, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.4474484, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 29928\n",
+ "Discriminator Loss: tf.Tensor(0.680744, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.40334806, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 29929\n",
+ "Discriminator Loss: tf.Tensor(0.88923377, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.6417942, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 29930\n",
+ "Discriminator Loss: tf.Tensor(0.55404425, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.1394534, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 29931\n",
+ "Discriminator Loss: tf.Tensor(0.36499733, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.8491151, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 29932\n",
+ "Discriminator Loss: tf.Tensor(0.51891196, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.626327, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 29933\n",
+ "Discriminator Loss: tf.Tensor(0.50621456, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.74040294, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 29934\n",
+ "Discriminator Loss: tf.Tensor(0.7806787, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.75172, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 29935\n",
+ "Discriminator Loss: tf.Tensor(0.6564247, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.49490774, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 29936\n",
+ "Discriminator Loss: tf.Tensor(1.0167596, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.3397771, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 29937\n",
+ "Discriminator Loss: tf.Tensor(0.5057035, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.60958797, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 29938\n",
+ "Discriminator Loss: tf.Tensor(0.6823772, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.9121028, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 29939\n",
+ "Discriminator Loss: tf.Tensor(0.7130956, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.62886244, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 29940\n",
+ "Discriminator Loss: tf.Tensor(0.68141365, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.5036415, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 29941\n",
+ "Discriminator Loss: tf.Tensor(0.28196386, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.0485493, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 29942\n",
+ "Discriminator Loss: tf.Tensor(0.7531141, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.2193269, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 29943\n",
+ "Discriminator Loss: tf.Tensor(0.8315658, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.5933624, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 29944\n",
+ "Discriminator Loss: tf.Tensor(0.5244137, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.2879573, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 29945\n",
+ "Discriminator Loss: tf.Tensor(0.73029006, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.1280836, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 29946\n",
+ "Discriminator Loss: tf.Tensor(0.6039441, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.77570915, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 29947\n",
+ "Discriminator Loss: tf.Tensor(0.598012, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.4857583, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 29948\n",
+ "Discriminator Loss: tf.Tensor(0.7797348, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.3083652, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 29949\n",
+ "Discriminator Loss: tf.Tensor(0.82677686, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.8763299, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 29950\n",
+ "Discriminator Loss: tf.Tensor(0.84004974, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.67690736, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 29951\n",
+ "Discriminator Loss: tf.Tensor(0.5690302, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.0423884, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 29952\n",
+ "Discriminator Loss: tf.Tensor(0.26165944, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.0963608, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 29953\n",
+ "Discriminator Loss: tf.Tensor(1.241018, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.7926158, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 29954\n",
+ "Discriminator Loss: tf.Tensor(0.58240616, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.6778116, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 29955\n",
+ "Discriminator Loss: tf.Tensor(0.5126026, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.0963176, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 29956\n",
+ "Discriminator Loss: tf.Tensor(0.7590271, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.0671141, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 29957\n",
+ "Discriminator Loss: tf.Tensor(0.35956553, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.8001426, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 29958\n",
+ "Discriminator Loss: tf.Tensor(0.91129243, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.4484615, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 29959\n",
+ "Discriminator Loss: tf.Tensor(0.2610272, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.78849715, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 29960\n",
+ "Discriminator Loss: tf.Tensor(0.9263005, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.2185454, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 29961\n",
+ "Discriminator Loss: tf.Tensor(0.0424593, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.3237573, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 29962\n",
+ "Discriminator Loss: tf.Tensor(0.69243336, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.1148161, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 29963\n",
+ "Discriminator Loss: tf.Tensor(0.70631236, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.0552673, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 29964\n",
+ "Discriminator Loss: tf.Tensor(1.295095, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.3490447, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 29965\n",
+ "Discriminator Loss: tf.Tensor(1.0259877, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.35904405, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 29966\n",
+ "Discriminator Loss: tf.Tensor(0.86918515, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.97365427, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 29967\n",
+ "Discriminator Loss: tf.Tensor(0.5824251, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.7965965, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 29968\n",
+ "Discriminator Loss: tf.Tensor(1.3842571, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.6989096, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 29969\n",
+ "Discriminator Loss: tf.Tensor(0.8804312, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.33198872, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 29970\n",
+ "Discriminator Loss: tf.Tensor(0.6589808, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.11224, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 29971\n",
+ "Discriminator Loss: tf.Tensor(0.53058046, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.64614016, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 29972\n",
+ "Discriminator Loss: tf.Tensor(0.886083, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.3358898, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 29973\n",
+ "Discriminator Loss: tf.Tensor(0.84892035, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.3446778, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 29974\n",
+ "Discriminator Loss: tf.Tensor(0.97182864, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.1266366, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 29975\n",
+ "Discriminator Loss: tf.Tensor(0.6705986, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.79323864, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 29976\n",
+ "Discriminator Loss: tf.Tensor(0.77842754, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.1682581, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 29977\n",
+ "Discriminator Loss: tf.Tensor(0.65624154, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.2202996, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 29978\n",
+ "Discriminator Loss: tf.Tensor(0.42935625, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.7686534, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 29979\n",
+ "Discriminator Loss: tf.Tensor(0.82592034, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.4950451, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 29980\n",
+ "Discriminator Loss: tf.Tensor(0.97079766, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.2766342, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 29981\n",
+ "Discriminator Loss: tf.Tensor(0.7607042, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.1576186, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 29982\n",
+ "Discriminator Loss: tf.Tensor(0.7052823, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.674036, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 29983\n",
+ "Discriminator Loss: tf.Tensor(0.7337676, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.1949435, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 29984\n",
+ "Discriminator Loss: tf.Tensor(0.6970405, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.5385524, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 29985\n",
+ "Discriminator Loss: tf.Tensor(1.7410748, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.4045947, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 29986\n",
+ "Discriminator Loss: tf.Tensor(0.7691387, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.4923091, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 29987\n",
+ "Discriminator Loss: tf.Tensor(0.57258767, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.9967947, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 29988\n",
+ "Discriminator Loss: tf.Tensor(0.4902437, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.1795983, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 29989\n",
+ "Discriminator Loss: tf.Tensor(0.59271747, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.83577704, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 29990\n",
+ "Discriminator Loss: tf.Tensor(0.81122184, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.650606, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 29991\n",
+ "Discriminator Loss: tf.Tensor(0.81172985, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.29501852, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 29992\n",
+ "Discriminator Loss: tf.Tensor(0.84938073, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.8038687, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 29993\n",
+ "Discriminator Loss: tf.Tensor(0.5689652, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.5838315, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 29994\n",
+ "Discriminator Loss: tf.Tensor(1.1390418, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.9404465, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 29995\n",
+ "Discriminator Loss: tf.Tensor(0.64208186, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.48603722, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 29996\n",
+ "Discriminator Loss: tf.Tensor(1.1165932, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.4610378, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 29997\n",
+ "Discriminator Loss: tf.Tensor(0.644799, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.49101505, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 29998\n",
+ "Discriminator Loss: tf.Tensor(0.37671384, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.2511773, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 29999\n",
+ "Discriminator Loss: tf.Tensor(0.836885, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.635033, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 30000\n",
+ "Discriminator Loss: tf.Tensor(0.65949583, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.5252668, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 30001\n",
+ "Discriminator Loss: tf.Tensor(0.17517518, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.8548517, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 30002\n",
+ "Discriminator Loss: tf.Tensor(0.6596997, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.6640476, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 30003\n",
+ "Discriminator Loss: tf.Tensor(0.5888227, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.8374996, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 30004\n",
+ "Discriminator Loss: tf.Tensor(0.6407069, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.875995, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 30005\n",
+ "Discriminator Loss: tf.Tensor(0.7636186, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.514772, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 30006\n",
+ "Discriminator Loss: tf.Tensor(1.1819484, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.9075028, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 30007\n",
+ "Discriminator Loss: tf.Tensor(0.50144833, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.6575834, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 30008\n",
+ "Discriminator Loss: tf.Tensor(0.8318312, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.0375168, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 30009\n",
+ "Discriminator Loss: tf.Tensor(0.40019187, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.8458603, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 30010\n",
+ "Discriminator Loss: tf.Tensor(0.8227817, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.2678353, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 30011\n",
+ "Discriminator Loss: tf.Tensor(0.53642523, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.85506326, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 30012\n",
+ "Discriminator Loss: tf.Tensor(0.39407137, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.2856838, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 30013\n",
+ "Discriminator Loss: tf.Tensor(0.69967026, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.1660037, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 30014\n",
+ "Discriminator Loss: tf.Tensor(0.5916749, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.5999134, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 30015\n",
+ "Discriminator Loss: tf.Tensor(1.2504693, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.7502621, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 30016\n",
+ "Discriminator Loss: tf.Tensor(0.7687059, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.31400982, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 30017\n",
+ "Discriminator Loss: tf.Tensor(1.1583802, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.3509035, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 30018\n",
+ "Discriminator Loss: tf.Tensor(0.5451471, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.6008702, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 30019\n",
+ "Discriminator Loss: tf.Tensor(0.617764, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.5824947, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 30020\n",
+ "Discriminator Loss: tf.Tensor(0.81903946, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.23666203, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 30021\n",
+ "Discriminator Loss: tf.Tensor(0.6162702, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.7938861, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 30022\n",
+ "Discriminator Loss: tf.Tensor(0.20662132, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.0011858, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 30023\n",
+ "Discriminator Loss: tf.Tensor(0.85292524, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.5058341, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 30024\n",
+ "Discriminator Loss: tf.Tensor(0.9075517, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.20658769, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 30025\n",
+ "Discriminator Loss: tf.Tensor(0.85643625, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.4731274, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 30026\n",
+ "Discriminator Loss: tf.Tensor(0.55231434, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.5704451, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 30027\n",
+ "Discriminator Loss: tf.Tensor(0.9185965, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.5417933, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 30028\n",
+ "Discriminator Loss: tf.Tensor(0.880912, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.32375628, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 30029\n",
+ "Discriminator Loss: tf.Tensor(0.78355056, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.6370627, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 30030\n",
+ "Discriminator Loss: tf.Tensor(0.21534215, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.9615414, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 30031\n",
+ "Discriminator Loss: tf.Tensor(0.9499649, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.2341446, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 30032\n",
+ "Discriminator Loss: tf.Tensor(0.6452243, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.53293926, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 30033\n",
+ "Discriminator Loss: tf.Tensor(0.47073355, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.2217164, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 30034\n",
+ "Discriminator Loss: tf.Tensor(0.83744484, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.4212294, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 30035\n",
+ "Discriminator Loss: tf.Tensor(0.7273815, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.46105167, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 30036\n",
+ "Discriminator Loss: tf.Tensor(0.75570786, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.641406, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 30037\n",
+ "Discriminator Loss: tf.Tensor(0.64501834, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.5794757, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 30038\n",
+ "Discriminator Loss: tf.Tensor(1.1658953, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.3939654, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 30039\n",
+ "Discriminator Loss: tf.Tensor(0.7209062, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.4979761, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 30040\n",
+ "Discriminator Loss: tf.Tensor(0.46040225, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.4372778, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 30041\n",
+ "Discriminator Loss: tf.Tensor(0.55857986, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.59924513, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 30042\n",
+ "Discriminator Loss: tf.Tensor(0.6260902, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.3768796, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 30043\n",
+ "Discriminator Loss: tf.Tensor(0.58408713, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.3225117, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 30044\n",
+ "Discriminator Loss: tf.Tensor(0.7305734, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.3362643, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 30045\n",
+ "Discriminator Loss: tf.Tensor(0.7685764, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.44767556, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 30046\n",
+ "Discriminator Loss: tf.Tensor(1.350425, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.7454667, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 30047\n",
+ "Discriminator Loss: tf.Tensor(0.66098624, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.5212258, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 30048\n",
+ "Discriminator Loss: tf.Tensor(0.7004219, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.4927783, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 30049\n",
+ "Discriminator Loss: tf.Tensor(0.5821548, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.8293869, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 30050\n",
+ "Discriminator Loss: tf.Tensor(0.44753337, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.7143698, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 30051\n",
+ "Discriminator Loss: tf.Tensor(0.42025992, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.0168579, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 30052\n",
+ "Discriminator Loss: tf.Tensor(0.5619236, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.92791694, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 30053\n",
+ "Discriminator Loss: tf.Tensor(0.6273181, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.7389048, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 30054\n",
+ "Discriminator Loss: tf.Tensor(0.64066327, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.6164927, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 30055\n",
+ "Discriminator Loss: tf.Tensor(0.5245105, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.7989311, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 30056\n",
+ "Discriminator Loss: tf.Tensor(0.40448195, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.9755247, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 30057\n",
+ "Discriminator Loss: tf.Tensor(0.82602334, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.2610068, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 30058\n",
+ "Discriminator Loss: tf.Tensor(0.72302234, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.1847639, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 30059\n",
+ "Discriminator Loss: tf.Tensor(0.49990347, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.0787574, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 30060\n",
+ "Discriminator Loss: tf.Tensor(0.5652961, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.1726893, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 30061\n",
+ "Discriminator Loss: tf.Tensor(0.46381533, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.290925, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 30062\n",
+ "Discriminator Loss: tf.Tensor(0.71605945, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.3148812, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 30063\n",
+ "Discriminator Loss: tf.Tensor(0.67573714, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.2322518, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 30064\n",
+ "Discriminator Loss: tf.Tensor(0.85329956, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.20367108, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 30065\n",
+ "Discriminator Loss: tf.Tensor(1.1626289, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.2101505, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 30066\n",
+ "Discriminator Loss: tf.Tensor(0.37538904, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.8116653, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 30067\n",
+ "Discriminator Loss: tf.Tensor(0.8392972, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.5925118, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 30068\n",
+ "Discriminator Loss: tf.Tensor(0.6256443, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.7033167, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 30069\n",
+ "Discriminator Loss: tf.Tensor(0.46163088, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.6202275, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 30070\n",
+ "Discriminator Loss: tf.Tensor(0.11502697, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.0378513, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 30071\n",
+ "Discriminator Loss: tf.Tensor(0.47789133, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.2488798, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 30072\n",
+ "Discriminator Loss: tf.Tensor(0.8289083, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.42700768, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 30073\n",
+ "Discriminator Loss: tf.Tensor(0.47585532, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.3605436, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 30074\n",
+ "Discriminator Loss: tf.Tensor(0.85730493, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.1445203, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 30075\n",
+ "Discriminator Loss: tf.Tensor(0.3641103, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.8186073, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 30076\n",
+ "Discriminator Loss: tf.Tensor(1.3093871, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.0606655, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 30077\n",
+ "Discriminator Loss: tf.Tensor(0.5352778, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.7680037, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 30078\n",
+ "Discriminator Loss: tf.Tensor(0.60302204, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.9735794, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 30079\n",
+ "Discriminator Loss: tf.Tensor(0.76690006, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.2268586, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 30080\n",
+ "Discriminator Loss: tf.Tensor(0.9997045, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.056420173, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 30081\n",
+ "Discriminator Loss: tf.Tensor(0.8499621, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.7463913, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 30082\n",
+ "Discriminator Loss: tf.Tensor(0.9291875, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.21111085, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 30083\n",
+ "Discriminator Loss: tf.Tensor(0.9639256, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.4121155, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 30084\n",
+ "Discriminator Loss: tf.Tensor(0.80591196, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.31892264, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 30085\n",
+ "Discriminator Loss: tf.Tensor(0.81203294, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.6217418, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 30086\n",
+ "Discriminator Loss: tf.Tensor(0.5106878, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.6558632, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 30087\n",
+ "Discriminator Loss: tf.Tensor(0.5088488, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.6603307, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 30088\n",
+ "Discriminator Loss: tf.Tensor(0.64469814, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.045245, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 30089\n",
+ "Discriminator Loss: tf.Tensor(0.48622847, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.6938978, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 30090\n",
+ "Discriminator Loss: tf.Tensor(1.5471058, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.153284, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 30091\n",
+ "Discriminator Loss: tf.Tensor(0.6472539, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.45045233, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 30092\n",
+ "Discriminator Loss: tf.Tensor(0.8092879, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.6643186, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 30093\n",
+ "Discriminator Loss: tf.Tensor(0.5178125, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.686138, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 30094\n",
+ "Discriminator Loss: tf.Tensor(0.5905889, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.1701905, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 30095\n",
+ "Discriminator Loss: tf.Tensor(0.716409, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.0449368, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 30096\n",
+ "Discriminator Loss: tf.Tensor(0.9840441, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.569321, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 30097\n",
+ "Discriminator Loss: tf.Tensor(0.5714795, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.6245274, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 30098\n",
+ "Discriminator Loss: tf.Tensor(0.53271484, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.5367528, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 30099\n",
+ "Discriminator Loss: tf.Tensor(0.8310484, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.5975238, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 30100\n",
+ "Discriminator Loss: tf.Tensor(0.6750625, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.8230816, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 30101\n",
+ "Discriminator Loss: tf.Tensor(0.33292878, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.75784105, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 30102\n",
+ "Discriminator Loss: tf.Tensor(0.6990641, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.4346933, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 30103\n",
+ "Discriminator Loss: tf.Tensor(0.49539143, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.91996604, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 30104\n",
+ "Discriminator Loss: tf.Tensor(0.420963, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.2069501, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 30105\n",
+ "Discriminator Loss: tf.Tensor(0.30490154, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.3559705, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 30106\n",
+ "Discriminator Loss: tf.Tensor(0.2409457, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.2361153, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 30107\n",
+ "Discriminator Loss: tf.Tensor(2.4723246, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.9771621, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 30108\n",
+ "Discriminator Loss: tf.Tensor(0.78163826, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.7094454, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 30109\n",
+ "Discriminator Loss: tf.Tensor(0.61718726, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.3390766, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 30110\n",
+ "Discriminator Loss: tf.Tensor(0.7111679, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.5229569, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 30111\n",
+ "Discriminator Loss: tf.Tensor(1.0668304, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.1704568, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 30112\n",
+ "Discriminator Loss: tf.Tensor(0.44751847, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.3568038, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 30113\n",
+ "Discriminator Loss: tf.Tensor(0.7558407, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.35498214, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 30114\n",
+ "Discriminator Loss: tf.Tensor(0.9660272, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.7719345, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 30115\n",
+ "Discriminator Loss: tf.Tensor(0.56128204, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.4619526, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 30116\n",
+ "Discriminator Loss: tf.Tensor(1.2319056, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.00233, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 30117\n",
+ "Discriminator Loss: tf.Tensor(0.4712207, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.78739244, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 30118\n",
+ "Discriminator Loss: tf.Tensor(1.1855371, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.18815367, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 30119\n",
+ "Discriminator Loss: tf.Tensor(1.0771406, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.4288212, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 30120\n",
+ "Discriminator Loss: tf.Tensor(1.0924902, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.124462225, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 30121\n",
+ "Discriminator Loss: tf.Tensor(0.8464066, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.6800879, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 30122\n",
+ "Discriminator Loss: tf.Tensor(0.70054144, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.43269372, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 30123\n",
+ "Discriminator Loss: tf.Tensor(0.32964677, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.3919902, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 30124\n",
+ "Discriminator Loss: tf.Tensor(0.36045623, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.98653036, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 30125\n",
+ "Discriminator Loss: tf.Tensor(0.78909516, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.6433636, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 30126\n",
+ "Discriminator Loss: tf.Tensor(0.6965215, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.32345474, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 30127\n",
+ "Discriminator Loss: tf.Tensor(1.08955, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.5250822, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 30128\n",
+ "Discriminator Loss: tf.Tensor(0.38944432, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.0868641, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 30129\n",
+ "Discriminator Loss: tf.Tensor(0.6166953, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.85089105, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 30130\n",
+ "Discriminator Loss: tf.Tensor(0.33757332, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.4223047, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 30131\n",
+ "Discriminator Loss: tf.Tensor(0.749581, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.5450221, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 30132\n",
+ "Discriminator Loss: tf.Tensor(1.4834254, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.2817795, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 30133\n",
+ "Discriminator Loss: tf.Tensor(0.33894736, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.014995, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 30134\n",
+ "Discriminator Loss: tf.Tensor(0.536836, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.9888552, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 30135\n",
+ "Discriminator Loss: tf.Tensor(0.65129876, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.7858406, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 30136\n",
+ "Discriminator Loss: tf.Tensor(0.90018153, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.8843805, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 30137\n",
+ "Discriminator Loss: tf.Tensor(0.2844786, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.9090498, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 30138\n",
+ "Discriminator Loss: tf.Tensor(0.7082746, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.618657, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 30139\n",
+ "Discriminator Loss: tf.Tensor(0.60831, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.657633, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 30140\n",
+ "Discriminator Loss: tf.Tensor(0.8724705, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.7964407, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 30141\n",
+ "Discriminator Loss: tf.Tensor(0.410532, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.7298283, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 30142\n",
+ "Discriminator Loss: tf.Tensor(1.1425502, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.4656485, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 30143\n",
+ "Discriminator Loss: tf.Tensor(0.9632849, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.33727384, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 30144\n",
+ "Discriminator Loss: tf.Tensor(1.0576196, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.4698077, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 30145\n",
+ "Discriminator Loss: tf.Tensor(0.6114402, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.68489796, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 30146\n",
+ "Discriminator Loss: tf.Tensor(0.86441827, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.6546826, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 30147\n",
+ "Discriminator Loss: tf.Tensor(0.20049646, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.97361165, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 30148\n",
+ "Discriminator Loss: tf.Tensor(0.77007973, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.028603, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 30149\n",
+ "Discriminator Loss: tf.Tensor(0.4572556, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.90930766, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 30150\n",
+ "Discriminator Loss: tf.Tensor(0.7450774, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.6261367, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 30151\n",
+ "Discriminator Loss: tf.Tensor(0.7609116, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.34670505, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 30152\n",
+ "Discriminator Loss: tf.Tensor(1.0795113, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.5992981, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 30153\n",
+ "Discriminator Loss: tf.Tensor(0.736882, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.46364173, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 30154\n",
+ "Discriminator Loss: tf.Tensor(0.84244365, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.580439, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 30155\n",
+ "Discriminator Loss: tf.Tensor(0.5123139, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.0953923, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 30156\n",
+ "Discriminator Loss: tf.Tensor(0.35451195, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.4917673, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 30157\n",
+ "Discriminator Loss: tf.Tensor(0.22615205, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.8399119, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 30158\n",
+ "Discriminator Loss: tf.Tensor(1.1967616, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.0864937, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 30159\n",
+ "Discriminator Loss: tf.Tensor(0.48201454, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.82897395, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 30160\n",
+ "Discriminator Loss: tf.Tensor(1.2017815, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.3117243, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 30161\n",
+ "Discriminator Loss: tf.Tensor(0.48214537, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.93460935, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 30162\n",
+ "Discriminator Loss: tf.Tensor(0.77208334, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.1966032, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 30163\n",
+ "Discriminator Loss: tf.Tensor(0.7577977, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.4709278, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 30164\n",
+ "Discriminator Loss: tf.Tensor(2.1470623, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.329164, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 30165\n",
+ "Discriminator Loss: tf.Tensor(0.44893265, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.8600647, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 30166\n",
+ "Discriminator Loss: tf.Tensor(0.27617893, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.89823467, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 30167\n",
+ "Discriminator Loss: tf.Tensor(0.61484903, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.0883464, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 30168\n",
+ "Discriminator Loss: tf.Tensor(0.62052035, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.49632668, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 30169\n",
+ "Discriminator Loss: tf.Tensor(1.1825187, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.0908313, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 30170\n",
+ "Discriminator Loss: tf.Tensor(0.61339384, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.57275033, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 30171\n",
+ "Discriminator Loss: tf.Tensor(0.9962063, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.3004878, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 30172\n",
+ "Discriminator Loss: tf.Tensor(0.6937902, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.6016967, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 30173\n",
+ "Discriminator Loss: tf.Tensor(0.6746025, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.3270922, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 30174\n",
+ "Discriminator Loss: tf.Tensor(0.35196152, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.9187853, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 30175\n",
+ "Discriminator Loss: tf.Tensor(1.0523185, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.9670609, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 30176\n",
+ "Discriminator Loss: tf.Tensor(0.57092756, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.5169855, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 30177\n",
+ "Discriminator Loss: tf.Tensor(0.667941, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.5307869, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 30178\n",
+ "Discriminator Loss: tf.Tensor(0.60446876, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.58093446, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 30179\n",
+ "Discriminator Loss: tf.Tensor(0.3309006, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.023338, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 30180\n",
+ "Discriminator Loss: tf.Tensor(0.5742983, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.7551724, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 30181\n",
+ "Discriminator Loss: tf.Tensor(0.34205833, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.3554322, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 30182\n",
+ "Discriminator Loss: tf.Tensor(0.46823114, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.7016004, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 30183\n",
+ "Discriminator Loss: tf.Tensor(1.2097745, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.4295481, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 30184\n",
+ "Discriminator Loss: tf.Tensor(0.4680692, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.86741525, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 30185\n",
+ "Discriminator Loss: tf.Tensor(0.88972425, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.7204536, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 30186\n",
+ "Discriminator Loss: tf.Tensor(0.5632578, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.5443024, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 30187\n",
+ "Discriminator Loss: tf.Tensor(1.2531272, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.2667915, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 30188\n",
+ "Discriminator Loss: tf.Tensor(0.3445688, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.8798211, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 30189\n",
+ "Discriminator Loss: tf.Tensor(0.58844614, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.5682966, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 30190\n",
+ "Discriminator Loss: tf.Tensor(0.5561607, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.60452396, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 30191\n",
+ "Discriminator Loss: tf.Tensor(0.8310392, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.870108, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 30192\n",
+ "Discriminator Loss: tf.Tensor(0.5297101, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.6849621, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 30193\n",
+ "Discriminator Loss: tf.Tensor(0.94065756, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.5309929, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 30194\n",
+ "Discriminator Loss: tf.Tensor(0.17958389, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.9726276, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 30195\n",
+ "Discriminator Loss: tf.Tensor(0.21316463, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.0901234, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 30196\n",
+ "Discriminator Loss: tf.Tensor(0.7130874, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.5306538, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 30197\n",
+ "Discriminator Loss: tf.Tensor(0.4503137, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.72969466, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 30198\n",
+ "Discriminator Loss: tf.Tensor(0.7890148, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.7377272, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 30199\n",
+ "Discriminator Loss: tf.Tensor(0.58367175, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.59269756, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 30200\n",
+ "Discriminator Loss: tf.Tensor(0.9030482, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.3586527, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 30201\n",
+ "Discriminator Loss: tf.Tensor(0.56308115, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.6499436, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 30202\n",
+ "Discriminator Loss: tf.Tensor(1.0319505, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.1422104, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 30203\n",
+ "Discriminator Loss: tf.Tensor(0.65016985, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.5889999, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 30204\n",
+ "Discriminator Loss: tf.Tensor(1.3960192, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.0203378, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 30205\n",
+ "Discriminator Loss: tf.Tensor(0.59669685, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.58789057, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 30206\n",
+ "Discriminator Loss: tf.Tensor(0.9596971, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.69202065, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 30207\n",
+ "Discriminator Loss: tf.Tensor(1.5246768, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.843469, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 30208\n",
+ "Discriminator Loss: tf.Tensor(0.8474297, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.16937761, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 30209\n",
+ "Discriminator Loss: tf.Tensor(0.92413723, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.3457146, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 30210\n",
+ "Discriminator Loss: tf.Tensor(0.8059369, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.3071638, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 30211\n",
+ "Discriminator Loss: tf.Tensor(0.542531, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.194214, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 30212\n",
+ "Discriminator Loss: tf.Tensor(0.42235655, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.81061107, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 30213\n",
+ "Discriminator Loss: tf.Tensor(0.87707806, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.7544899, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 30214\n",
+ "Discriminator Loss: tf.Tensor(0.6540432, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.3658361, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 30215\n",
+ "Discriminator Loss: tf.Tensor(1.1909906, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.0839367, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 30216\n",
+ "Discriminator Loss: tf.Tensor(0.22958252, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.1013848, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 30217\n",
+ "Discriminator Loss: tf.Tensor(0.8687056, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.7085282, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 30218\n",
+ "Discriminator Loss: tf.Tensor(0.77822196, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.2073328, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 30219\n",
+ "Discriminator Loss: tf.Tensor(0.54135865, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.70957994, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 30220\n",
+ "Discriminator Loss: tf.Tensor(0.7808013, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.6582638, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 30221\n",
+ "Discriminator Loss: tf.Tensor(0.9049213, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.21586508, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 30222\n",
+ "Discriminator Loss: tf.Tensor(0.550442, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.1454421, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 30223\n",
+ "Discriminator Loss: tf.Tensor(0.4687966, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.87811106, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 30224\n",
+ "Discriminator Loss: tf.Tensor(0.6288742, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.625317, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 30225\n",
+ "Discriminator Loss: tf.Tensor(0.71608484, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.2400312, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 30226\n",
+ "Discriminator Loss: tf.Tensor(0.4742133, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.7838333, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 30227\n",
+ "Discriminator Loss: tf.Tensor(0.63402224, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.2530992, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 30228\n",
+ "Discriminator Loss: tf.Tensor(0.69691104, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.6447443, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 30229\n",
+ "Discriminator Loss: tf.Tensor(1.1839256, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.0941675, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 30230\n",
+ "Discriminator Loss: tf.Tensor(0.5510991, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.7546458, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 30231\n",
+ "Discriminator Loss: tf.Tensor(0.6809011, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.4464555, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 30232\n",
+ "Discriminator Loss: tf.Tensor(0.40789273, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.7215843, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 30233\n",
+ "Discriminator Loss: tf.Tensor(1.099181, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.7338047, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 30234\n",
+ "Discriminator Loss: tf.Tensor(0.8699593, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.41928804, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 30235\n",
+ "Discriminator Loss: tf.Tensor(0.96776104, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.298072, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 30236\n",
+ "Discriminator Loss: tf.Tensor(0.49235234, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.8703278, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 30237\n",
+ "Discriminator Loss: tf.Tensor(0.59418964, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.1530257, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 30238\n",
+ "Discriminator Loss: tf.Tensor(0.5929104, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.6361227, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 30239\n",
+ "Discriminator Loss: tf.Tensor(0.39515278, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.6870528, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 30240\n",
+ "Discriminator Loss: tf.Tensor(1.0990752, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.311484, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 30241\n",
+ "Discriminator Loss: tf.Tensor(0.5349846, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.67232245, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 30242\n",
+ "Discriminator Loss: tf.Tensor(1.1970766, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.0141435, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 30243\n",
+ "Discriminator Loss: tf.Tensor(0.43031937, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.61219376, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 30244\n",
+ "Discriminator Loss: tf.Tensor(1.0564167, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.6287156, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 30245\n",
+ "Discriminator Loss: tf.Tensor(0.6333121, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.39965507, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 30246\n",
+ "Discriminator Loss: tf.Tensor(1.3375138, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.9116453, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 30247\n",
+ "Discriminator Loss: tf.Tensor(0.65764236, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.7794929, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 30248\n",
+ "Discriminator Loss: tf.Tensor(0.52676314, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.67261666, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 30249\n",
+ "Discriminator Loss: tf.Tensor(1.1243758, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.0456693, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 30250\n",
+ "Discriminator Loss: tf.Tensor(0.5628762, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.53600377, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 30251\n",
+ "Discriminator Loss: tf.Tensor(0.60318613, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.2144994, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 30252\n",
+ "Discriminator Loss: tf.Tensor(0.22615394, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.1931838, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 30253\n",
+ "Discriminator Loss: tf.Tensor(0.44911498, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.7633233, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 30254\n",
+ "Discriminator Loss: tf.Tensor(0.48649883, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.76467246, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 30255\n",
+ "Discriminator Loss: tf.Tensor(1.1455479, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.282731, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 30256\n",
+ "Discriminator Loss: tf.Tensor(0.2227618, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.99695665, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 30257\n",
+ "Discriminator Loss: tf.Tensor(0.93391335, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.8307256, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 30258\n",
+ "Discriminator Loss: tf.Tensor(0.80542916, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.3705679, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 30259\n",
+ "Discriminator Loss: tf.Tensor(0.7976531, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.3296407, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 30260\n",
+ "Discriminator Loss: tf.Tensor(0.6246969, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.769437, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 30261\n",
+ "Discriminator Loss: tf.Tensor(0.814046, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.7705146, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 30262\n",
+ "Discriminator Loss: tf.Tensor(0.50091565, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.6304062, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 30263\n",
+ "Discriminator Loss: tf.Tensor(1.2443119, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.7023741, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 30264\n",
+ "Discriminator Loss: tf.Tensor(0.59505546, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.7079349, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 30265\n",
+ "Discriminator Loss: tf.Tensor(0.50289553, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.2547165, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 30266\n",
+ "Discriminator Loss: tf.Tensor(0.6604327, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.42044368, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 30267\n",
+ "Discriminator Loss: tf.Tensor(0.88381124, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.7000551, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 30268\n",
+ "Discriminator Loss: tf.Tensor(0.45988902, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.6962865, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 30269\n",
+ "Discriminator Loss: tf.Tensor(1.1382445, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.7607083, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 30270\n",
+ "Discriminator Loss: tf.Tensor(0.5117668, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.9203922, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 30271\n",
+ "Discriminator Loss: tf.Tensor(0.5012203, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.90464884, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 30272\n",
+ "Discriminator Loss: tf.Tensor(0.99296683, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.6291665, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 30273\n",
+ "Discriminator Loss: tf.Tensor(1.1296002, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.22400731, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 30274\n",
+ "Discriminator Loss: tf.Tensor(0.75995135, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.2644658, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 30275\n",
+ "Discriminator Loss: tf.Tensor(0.47402546, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.8300883, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 30276\n",
+ "Discriminator Loss: tf.Tensor(0.6085185, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.2086767, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 30277\n",
+ "Discriminator Loss: tf.Tensor(0.37125376, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.85873026, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 30278\n",
+ "Discriminator Loss: tf.Tensor(1.0559552, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.2058933, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 30279\n",
+ "Discriminator Loss: tf.Tensor(0.40726054, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.90698606, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 30280\n",
+ "Discriminator Loss: tf.Tensor(0.5233555, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.2424599, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 30281\n",
+ "Discriminator Loss: tf.Tensor(0.6214214, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.1278776, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 30282\n",
+ "Discriminator Loss: tf.Tensor(0.72655064, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.9346276, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 30283\n",
+ "Discriminator Loss: tf.Tensor(0.55323815, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.4370023, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 30284\n",
+ "Discriminator Loss: tf.Tensor(0.8040464, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.2755756, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 30285\n",
+ "Discriminator Loss: tf.Tensor(0.7881871, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.32430607, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 30286\n",
+ "Discriminator Loss: tf.Tensor(0.94814944, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.37827, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 30287\n",
+ "Discriminator Loss: tf.Tensor(0.61802775, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.42606685, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 30288\n",
+ "Discriminator Loss: tf.Tensor(1.084907, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.5168737, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 30289\n",
+ "Discriminator Loss: tf.Tensor(0.26274034, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.8688002, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 30290\n",
+ "Discriminator Loss: tf.Tensor(0.9698335, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.4427147, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 30291\n",
+ "Discriminator Loss: tf.Tensor(1.1128533, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.10330355, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 30292\n",
+ "Discriminator Loss: tf.Tensor(0.62278736, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.5173641, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 30293\n",
+ "Discriminator Loss: tf.Tensor(0.84744674, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.56566983, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 30294\n",
+ "Discriminator Loss: tf.Tensor(0.6032022, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.2788754, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 30295\n",
+ "Discriminator Loss: tf.Tensor(0.61685586, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.4409056, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 30296\n",
+ "Discriminator Loss: tf.Tensor(0.3212874, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.79203695, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 30297\n",
+ "Discriminator Loss: tf.Tensor(0.7079551, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.8792404, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 30298\n",
+ "Discriminator Loss: tf.Tensor(0.3809277, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.80654335, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 30299\n",
+ "Discriminator Loss: tf.Tensor(0.8291428, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.1653273, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 30300\n",
+ "Discriminator Loss: tf.Tensor(0.29277232, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.1085919, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 30301\n",
+ "Discriminator Loss: tf.Tensor(0.4457528, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.691621, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 30302\n",
+ "Discriminator Loss: tf.Tensor(0.25260162, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.0837188, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 30303\n",
+ "Discriminator Loss: tf.Tensor(0.7361355, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.777739, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 30304\n",
+ "Discriminator Loss: tf.Tensor(0.76607144, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.49023065, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 30305\n",
+ "Discriminator Loss: tf.Tensor(0.8632299, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.1884766, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 30306\n",
+ "Discriminator Loss: tf.Tensor(0.5881172, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.1452203, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 30307\n",
+ "Discriminator Loss: tf.Tensor(0.42374563, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.3636433, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 30308\n",
+ "Discriminator Loss: tf.Tensor(0.39369917, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.190732, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 30309\n",
+ "Discriminator Loss: tf.Tensor(0.71023333, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.2217118, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 30310\n",
+ "Discriminator Loss: tf.Tensor(0.7028723, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.2522329, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 30311\n",
+ "Discriminator Loss: tf.Tensor(1.3007283, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.18072756, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 30312\n",
+ "Discriminator Loss: tf.Tensor(0.41851196, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.1993262, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 30313\n",
+ "Discriminator Loss: tf.Tensor(0.6734538, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.8052576, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 30314\n",
+ "Discriminator Loss: tf.Tensor(1.0260434, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.0978345, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 30315\n",
+ "Discriminator Loss: tf.Tensor(1.040138, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.5577209, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 30316\n",
+ "Discriminator Loss: tf.Tensor(0.69744587, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.7869496, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 30317\n",
+ "Discriminator Loss: tf.Tensor(0.5705093, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.49142584, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 30318\n",
+ "Discriminator Loss: tf.Tensor(1.2040052, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.7566944, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 30319\n",
+ "Discriminator Loss: tf.Tensor(0.601383, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.53008586, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 30320\n",
+ "Discriminator Loss: tf.Tensor(0.58190525, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.5132605, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 30321\n",
+ "Discriminator Loss: tf.Tensor(0.59740967, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.70511717, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 30322\n",
+ "Discriminator Loss: tf.Tensor(0.6880193, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.4425408, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 30323\n",
+ "Discriminator Loss: tf.Tensor(0.7851314, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.1665833, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 30324\n",
+ "Discriminator Loss: tf.Tensor(0.35281694, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.2011594, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 30325\n",
+ "Discriminator Loss: tf.Tensor(0.38977945, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.0561591, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 30326\n",
+ "Discriminator Loss: tf.Tensor(0.3391162, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.2543756, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 30327\n",
+ "Discriminator Loss: tf.Tensor(0.9121664, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.4152904, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 30328\n",
+ "Discriminator Loss: tf.Tensor(0.30544823, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.8457306, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 30329\n",
+ "Discriminator Loss: tf.Tensor(1.566682, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.2038813, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 30330\n",
+ "Discriminator Loss: tf.Tensor(0.6843595, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.4836659, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 30331\n",
+ "Discriminator Loss: tf.Tensor(0.9510025, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.7069343, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 30332\n",
+ "Discriminator Loss: tf.Tensor(0.59605414, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.91703606, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 30333\n",
+ "Discriminator Loss: tf.Tensor(0.5899662, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.7293339, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 30334\n",
+ "Discriminator Loss: tf.Tensor(0.60414064, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.795446, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 30335\n",
+ "Discriminator Loss: tf.Tensor(0.65179455, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.6610222, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 30336\n",
+ "Discriminator Loss: tf.Tensor(0.8780858, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.332193, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 30337\n",
+ "Discriminator Loss: tf.Tensor(0.43474412, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.8745758, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 30338\n",
+ "Discriminator Loss: tf.Tensor(0.42006072, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.4163127, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 30339\n",
+ "Discriminator Loss: tf.Tensor(0.29940054, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.72366196, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 30340\n",
+ "Discriminator Loss: tf.Tensor(1.7161474, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.2926953, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 30341\n",
+ "Discriminator Loss: tf.Tensor(0.47439817, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.82751554, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 30342\n",
+ "Discriminator Loss: tf.Tensor(0.49611145, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.4626802, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 30343\n",
+ "Discriminator Loss: tf.Tensor(0.792892, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.38633803, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 30344\n",
+ "Discriminator Loss: tf.Tensor(0.7077092, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.9508387, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 30345\n",
+ "Discriminator Loss: tf.Tensor(0.28775966, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.7847983, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 30346\n",
+ "Discriminator Loss: tf.Tensor(0.8994607, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.3622235, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 30347\n",
+ "Discriminator Loss: tf.Tensor(0.14213097, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.4527861, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 30348\n",
+ "Discriminator Loss: tf.Tensor(0.4890979, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.2898177, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 30349\n",
+ "Discriminator Loss: tf.Tensor(0.71752036, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.1055418, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 30350\n",
+ "Discriminator Loss: tf.Tensor(0.5094522, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.0344836, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 30351\n",
+ "Discriminator Loss: tf.Tensor(0.8152101, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.0365021, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 30352\n",
+ "Discriminator Loss: tf.Tensor(0.6414669, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.9953936, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 30353\n",
+ "Discriminator Loss: tf.Tensor(0.34685302, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.1589094, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 30354\n",
+ "Discriminator Loss: tf.Tensor(0.8523054, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.355313, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 30355\n",
+ "Discriminator Loss: tf.Tensor(0.97114724, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.26969844, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 30356\n",
+ "Discriminator Loss: tf.Tensor(0.91201913, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.282894, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 30357\n",
+ "Discriminator Loss: tf.Tensor(0.546748, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.5115835, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 30358\n",
+ "Discriminator Loss: tf.Tensor(1.0594068, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.7050105, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 30359\n",
+ "Discriminator Loss: tf.Tensor(0.81028044, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.65381926, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 30360\n",
+ "Discriminator Loss: tf.Tensor(0.4854533, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.132409, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 30361\n",
+ "Discriminator Loss: tf.Tensor(0.51753366, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.0049123, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 30362\n",
+ "Discriminator Loss: tf.Tensor(0.88294744, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.7287759, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 30363\n",
+ "Discriminator Loss: tf.Tensor(0.9069824, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.4137627, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 30364\n",
+ "Discriminator Loss: tf.Tensor(0.495062, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.74327, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 30365\n",
+ "Discriminator Loss: tf.Tensor(1.0366825, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.9568439, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 30366\n",
+ "Discriminator Loss: tf.Tensor(0.70814306, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.4459704, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 30367\n",
+ "Discriminator Loss: tf.Tensor(0.6218288, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.3515416, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 30368\n",
+ "Discriminator Loss: tf.Tensor(0.61005205, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.46604633, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 30369\n",
+ "Discriminator Loss: tf.Tensor(1.0671268, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.8540201, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 30370\n",
+ "Discriminator Loss: tf.Tensor(1.0721895, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.25250387, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 30371\n",
+ "Discriminator Loss: tf.Tensor(0.88075817, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.1570052, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 30372\n",
+ "Discriminator Loss: tf.Tensor(0.6081105, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.5938706, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 30373\n",
+ "Discriminator Loss: tf.Tensor(0.770434, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.3307009, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 30374\n",
+ "Discriminator Loss: tf.Tensor(0.52190816, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.6055466, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 30375\n",
+ "Discriminator Loss: tf.Tensor(0.54899555, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.35887, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 30376\n",
+ "Discriminator Loss: tf.Tensor(0.8109764, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.5272036, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 30377\n",
+ "Discriminator Loss: tf.Tensor(0.2447055, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.2423013, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 30378\n",
+ "Discriminator Loss: tf.Tensor(0.93856287, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.7602149, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 30379\n",
+ "Discriminator Loss: tf.Tensor(0.5037535, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.6544227, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 30380\n",
+ "Discriminator Loss: tf.Tensor(0.5311844, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.6829473, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 30381\n",
+ "Discriminator Loss: tf.Tensor(0.340276, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.0349089, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 30382\n",
+ "Discriminator Loss: tf.Tensor(0.662627, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.686525, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 30383\n",
+ "Discriminator Loss: tf.Tensor(0.7748594, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.5150973, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 30384\n",
+ "Discriminator Loss: tf.Tensor(0.469598, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.0062257, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 30385\n",
+ "Discriminator Loss: tf.Tensor(0.6243502, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.357454, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 30386\n",
+ "Discriminator Loss: tf.Tensor(0.9393215, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.2856422, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 30387\n",
+ "Discriminator Loss: tf.Tensor(0.75637126, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.7909946, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 30388\n",
+ "Discriminator Loss: tf.Tensor(0.7950171, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.32807347, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 30389\n",
+ "Discriminator Loss: tf.Tensor(0.6177286, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.1360558, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 30390\n",
+ "Discriminator Loss: tf.Tensor(0.53606975, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.2072359, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 30391\n",
+ "Discriminator Loss: tf.Tensor(0.75227547, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.5718805, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 30392\n",
+ "Discriminator Loss: tf.Tensor(1.0435408, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.6207823, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 30393\n",
+ "Discriminator Loss: tf.Tensor(0.78858423, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.38663626, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 30394\n",
+ "Discriminator Loss: tf.Tensor(1.3167748, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.7264748, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 30395\n",
+ "Discriminator Loss: tf.Tensor(0.78976244, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.3347398, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 30396\n",
+ "Discriminator Loss: tf.Tensor(0.689342, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.0230432, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 30397\n",
+ "Discriminator Loss: tf.Tensor(0.6285789, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.5007703, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 30398\n",
+ "Discriminator Loss: tf.Tensor(1.1279647, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.0720363, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 30399\n",
+ "Discriminator Loss: tf.Tensor(0.9420207, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.25925598, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 30400\n",
+ "Discriminator Loss: tf.Tensor(0.9344387, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.2560838, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 30401\n",
+ "Discriminator Loss: tf.Tensor(0.32461938, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.7270759, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 30402\n",
+ "Discriminator Loss: tf.Tensor(0.8770076, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.0754275, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 30403\n",
+ "Discriminator Loss: tf.Tensor(0.5468973, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.7717306, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 30404\n",
+ "Discriminator Loss: tf.Tensor(1.0171146, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.1443459, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 30405\n",
+ "Discriminator Loss: tf.Tensor(0.6066805, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.63844603, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 30406\n",
+ "Discriminator Loss: tf.Tensor(0.8238443, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.5660763, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 30407\n",
+ "Discriminator Loss: tf.Tensor(0.38130972, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.7514506, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 30408\n",
+ "Discriminator Loss: tf.Tensor(0.72822034, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.407209, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 30409\n",
+ "Discriminator Loss: tf.Tensor(0.19801241, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.871411, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 30410\n",
+ "Discriminator Loss: tf.Tensor(0.8479717, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.2641492, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 30411\n",
+ "Discriminator Loss: tf.Tensor(0.5080388, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.2630277, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 30412\n",
+ "Discriminator Loss: tf.Tensor(0.5963465, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.5761528, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 30413\n",
+ "Discriminator Loss: tf.Tensor(0.26052096, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.91969234, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 30414\n",
+ "Discriminator Loss: tf.Tensor(1.1484789, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.814834, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 30415\n",
+ "Discriminator Loss: tf.Tensor(0.4992758, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.935769, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 30416\n",
+ "Discriminator Loss: tf.Tensor(0.48298985, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.7552716, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 30417\n",
+ "Discriminator Loss: tf.Tensor(0.95364213, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.851817, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 30418\n",
+ "Discriminator Loss: tf.Tensor(1.0182495, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.36355543, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 30419\n",
+ "Discriminator Loss: tf.Tensor(0.752985, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.698752, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 30420\n",
+ "Discriminator Loss: tf.Tensor(0.61871433, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.62418014, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 30421\n",
+ "Discriminator Loss: tf.Tensor(0.86487305, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.5228796, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 30422\n",
+ "Discriminator Loss: tf.Tensor(0.65114725, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.40601873, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 30423\n",
+ "Discriminator Loss: tf.Tensor(0.8175874, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.9855787, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 30424\n",
+ "Discriminator Loss: tf.Tensor(0.55417955, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.73393434, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 30425\n",
+ "Discriminator Loss: tf.Tensor(0.4645918, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.2335752, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 30426\n",
+ "Discriminator Loss: tf.Tensor(0.18220332, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.95951456, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 30427\n",
+ "Discriminator Loss: tf.Tensor(0.6062147, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.6623673, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 30428\n",
+ "Discriminator Loss: tf.Tensor(0.3830721, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.8327256, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 30429\n",
+ "Discriminator Loss: tf.Tensor(0.2729976, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.4254136, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 30430\n",
+ "Discriminator Loss: tf.Tensor(0.72751373, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.0352007, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 30431\n",
+ "Discriminator Loss: tf.Tensor(0.64939946, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.1791716, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 30432\n",
+ "Discriminator Loss: tf.Tensor(0.674296, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.5575914, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 30433\n",
+ "Discriminator Loss: tf.Tensor(0.6511522, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.5477898, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 30434\n",
+ "Discriminator Loss: tf.Tensor(1.2419245, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.6864308, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 30435\n",
+ "Discriminator Loss: tf.Tensor(0.54638666, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.6241849, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 30436\n",
+ "Discriminator Loss: tf.Tensor(1.0057136, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.8928348, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 30437\n",
+ "Discriminator Loss: tf.Tensor(0.5270572, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.5266885, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 30438\n",
+ "Discriminator Loss: tf.Tensor(0.57447004, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.4483156, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 30439\n",
+ "Discriminator Loss: tf.Tensor(0.7751653, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.74735004, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 30440\n",
+ "Discriminator Loss: tf.Tensor(0.79965645, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.5572323, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 30441\n",
+ "Discriminator Loss: tf.Tensor(1.3935719, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.9483275, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 30442\n",
+ "Discriminator Loss: tf.Tensor(0.42020226, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.6702523, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 30443\n",
+ "Discriminator Loss: tf.Tensor(0.27360517, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.7741731, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 30444\n",
+ "Discriminator Loss: tf.Tensor(0.7415442, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.83623457, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 30445\n",
+ "Discriminator Loss: tf.Tensor(1.0592873, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.88264084, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 30446\n",
+ "Discriminator Loss: tf.Tensor(0.98134935, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.4658498, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 30447\n",
+ "Discriminator Loss: tf.Tensor(0.6543522, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.83530635, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 30448\n",
+ "Discriminator Loss: tf.Tensor(0.6001549, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.3246162, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 30449\n",
+ "Discriminator Loss: tf.Tensor(0.80985624, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.21029122, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 30450\n",
+ "Discriminator Loss: tf.Tensor(1.3409598, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.2752508, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 30451\n",
+ "Discriminator Loss: tf.Tensor(0.5911982, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.81962585, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 30452\n",
+ "Discriminator Loss: tf.Tensor(0.6735763, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.2079549, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 30453\n",
+ "Discriminator Loss: tf.Tensor(0.53850424, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.0237557, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 30454\n",
+ "Discriminator Loss: tf.Tensor(0.7044548, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.6367403, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 30455\n",
+ "Discriminator Loss: tf.Tensor(0.6143138, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.50445575, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 30456\n",
+ "Discriminator Loss: tf.Tensor(0.5540018, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.7247472, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 30457\n",
+ "Discriminator Loss: tf.Tensor(0.37346202, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.71581817, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 30458\n",
+ "Discriminator Loss: tf.Tensor(1.2557437, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.5491489, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 30459\n",
+ "Discriminator Loss: tf.Tensor(0.19146849, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.1845675, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 30460\n",
+ "Discriminator Loss: tf.Tensor(0.5265859, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.1683615, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 30461\n",
+ "Discriminator Loss: tf.Tensor(0.56318545, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.7993113, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 30462\n",
+ "Discriminator Loss: tf.Tensor(0.7092921, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.4643055, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 30463\n",
+ "Discriminator Loss: tf.Tensor(0.5423014, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.724943, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 30464\n",
+ "Discriminator Loss: tf.Tensor(0.77103895, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.7954162, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 30465\n",
+ "Discriminator Loss: tf.Tensor(0.8952675, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.338868, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 30466\n",
+ "Discriminator Loss: tf.Tensor(0.5033026, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.76002187, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 30467\n",
+ "Discriminator Loss: tf.Tensor(1.0310405, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.5757952, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 30468\n",
+ "Discriminator Loss: tf.Tensor(0.72119737, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.29812512, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 30469\n",
+ "Discriminator Loss: tf.Tensor(0.77866054, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.6878217, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 30470\n",
+ "Discriminator Loss: tf.Tensor(0.6875546, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.4886726, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 30471\n",
+ "Discriminator Loss: tf.Tensor(1.3626535, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.3070744, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 30472\n",
+ "Discriminator Loss: tf.Tensor(0.30832058, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.2209967, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 30473\n",
+ "Discriminator Loss: tf.Tensor(0.7651918, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.50458646, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 30474\n",
+ "Discriminator Loss: tf.Tensor(0.41073227, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.5041785, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 30475\n",
+ "Discriminator Loss: tf.Tensor(0.709097, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.9266455, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 30476\n",
+ "Discriminator Loss: tf.Tensor(0.6377276, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.210584, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 30477\n",
+ "Discriminator Loss: tf.Tensor(0.5552555, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.3986319, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 30478\n",
+ "Discriminator Loss: tf.Tensor(0.98551774, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.10676662, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 30479\n",
+ "Discriminator Loss: tf.Tensor(0.92079973, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.3346491, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 30480\n",
+ "Discriminator Loss: tf.Tensor(0.3358339, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.0805517, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 30481\n",
+ "Discriminator Loss: tf.Tensor(0.90795255, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.4214325, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 30482\n",
+ "Discriminator Loss: tf.Tensor(0.8134997, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.5093125, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 30483\n",
+ "Discriminator Loss: tf.Tensor(0.86760294, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.4073592, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 30484\n",
+ "Discriminator Loss: tf.Tensor(0.61512744, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.40399075, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 30485\n",
+ "Discriminator Loss: tf.Tensor(0.88310766, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.716341, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 30486\n",
+ "Discriminator Loss: tf.Tensor(0.7482567, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.49254298, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 30487\n",
+ "Discriminator Loss: tf.Tensor(0.7113875, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.036101, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 30488\n",
+ "Discriminator Loss: tf.Tensor(0.3096139, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.5860158, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 30489\n",
+ "Discriminator Loss: tf.Tensor(0.49941534, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.0432435, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 30490\n",
+ "Discriminator Loss: tf.Tensor(0.37878263, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.4399476, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 30491\n",
+ "Discriminator Loss: tf.Tensor(0.65743065, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.6994378, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 30492\n",
+ "Discriminator Loss: tf.Tensor(0.51435274, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.75518, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 30493\n",
+ "Discriminator Loss: tf.Tensor(0.72036254, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.70663905, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 30494\n",
+ "Discriminator Loss: tf.Tensor(0.6808343, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.7833196, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 30495\n",
+ "Discriminator Loss: tf.Tensor(0.6553378, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.6430749, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 30496\n",
+ "Discriminator Loss: tf.Tensor(0.74706066, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.4834367, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 30497\n",
+ "Discriminator Loss: tf.Tensor(0.4840767, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.1038895, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 30498\n",
+ "Discriminator Loss: tf.Tensor(0.46957514, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.7321059, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 30499\n",
+ "Discriminator Loss: tf.Tensor(0.958558, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.08000918, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 30500\n",
+ "Discriminator Loss: tf.Tensor(1.4871082, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.9681636, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 30501\n",
+ "Discriminator Loss: tf.Tensor(0.65787345, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.5841112, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 30502\n",
+ "Discriminator Loss: tf.Tensor(1.0171037, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.419249, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 30503\n",
+ "Discriminator Loss: tf.Tensor(0.7968183, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.58812827, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 30504\n",
+ "Discriminator Loss: tf.Tensor(0.66708255, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.94134206, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 30505\n",
+ "Discriminator Loss: tf.Tensor(0.56416005, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.74363273, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 30506\n",
+ "Discriminator Loss: tf.Tensor(0.5621831, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.5659904, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 30507\n",
+ "Discriminator Loss: tf.Tensor(1.1234816, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.08905276, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 30508\n",
+ "Discriminator Loss: tf.Tensor(0.7692286, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.5977927, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 30509\n",
+ "Discriminator Loss: tf.Tensor(0.6423826, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.6432835, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 30510\n",
+ "Discriminator Loss: tf.Tensor(0.7241454, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.4599887, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 30511\n",
+ "Discriminator Loss: tf.Tensor(0.4699672, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.60391504, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 30512\n",
+ "Discriminator Loss: tf.Tensor(0.70924, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.6105436, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 30513\n",
+ "Discriminator Loss: tf.Tensor(0.45337254, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.6145236, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 30514\n",
+ "Discriminator Loss: tf.Tensor(0.67003185, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.4093968, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 30515\n",
+ "Discriminator Loss: tf.Tensor(0.47624487, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.1424273, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 30516\n",
+ "Discriminator Loss: tf.Tensor(0.8551685, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.8870635, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 30517\n",
+ "Discriminator Loss: tf.Tensor(0.51427275, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.2376877, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 30518\n",
+ "Discriminator Loss: tf.Tensor(0.94321847, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.8641696, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 30519\n",
+ "Discriminator Loss: tf.Tensor(0.86993665, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.6738016, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 30520\n",
+ "Discriminator Loss: tf.Tensor(1.3649554, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.7599874, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 30521\n",
+ "Discriminator Loss: tf.Tensor(0.97175074, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.26233092, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 30522\n",
+ "Discriminator Loss: tf.Tensor(0.802149, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.1460291, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 30523\n",
+ "Discriminator Loss: tf.Tensor(0.3926504, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.0171779, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 30524\n",
+ "Discriminator Loss: tf.Tensor(0.6155396, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.77560234, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 30525\n",
+ "Discriminator Loss: tf.Tensor(1.1239052, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.0915022, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 30526\n",
+ "Discriminator Loss: tf.Tensor(0.7091188, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.39158878, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 30527\n",
+ "Discriminator Loss: tf.Tensor(1.2444844, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.4475378, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 30528\n",
+ "Discriminator Loss: tf.Tensor(0.5209775, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.73396826, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 30529\n",
+ "Discriminator Loss: tf.Tensor(0.557367, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.4936415, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 30530\n",
+ "Discriminator Loss: tf.Tensor(0.3637531, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.72544783, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 30531\n",
+ "Discriminator Loss: tf.Tensor(1.1533874, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.1029825, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 30532\n",
+ "Discriminator Loss: tf.Tensor(0.30637896, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.8318793, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 30533\n",
+ "Discriminator Loss: tf.Tensor(1.0851209, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.1117578, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 30534\n",
+ "Discriminator Loss: tf.Tensor(0.69715613, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.61822075, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 30535\n",
+ "Discriminator Loss: tf.Tensor(0.45384192, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.6470369, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 30536\n",
+ "Discriminator Loss: tf.Tensor(0.4038341, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.0058054, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 30537\n",
+ "Discriminator Loss: tf.Tensor(0.9208039, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.014369, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 30538\n",
+ "Discriminator Loss: tf.Tensor(0.5588354, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.69222325, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 30539\n",
+ "Discriminator Loss: tf.Tensor(0.69282055, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.2228585, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 30540\n",
+ "Discriminator Loss: tf.Tensor(0.73493165, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.49931598, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 30541\n",
+ "Discriminator Loss: tf.Tensor(1.2439705, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.3204286, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 30542\n",
+ "Discriminator Loss: tf.Tensor(0.4509455, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.8422956, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 30543\n",
+ "Discriminator Loss: tf.Tensor(0.5623324, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.1597371, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 30544\n",
+ "Discriminator Loss: tf.Tensor(0.96121466, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.188167, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 30545\n",
+ "Discriminator Loss: tf.Tensor(0.60176975, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.81997347, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 30546\n",
+ "Discriminator Loss: tf.Tensor(0.90563035, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.5097637, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 30547\n",
+ "Discriminator Loss: tf.Tensor(0.5713019, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.62382954, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 30548\n",
+ "Discriminator Loss: tf.Tensor(0.56491184, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.99416226, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 30549\n",
+ "Discriminator Loss: tf.Tensor(0.88658726, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.5381085, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 30550\n",
+ "Discriminator Loss: tf.Tensor(0.30539373, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.81240106, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 30551\n",
+ "Discriminator Loss: tf.Tensor(0.8123584, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.7189232, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 30552\n",
+ "Discriminator Loss: tf.Tensor(0.23625386, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.1890345, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 30553\n",
+ "Discriminator Loss: tf.Tensor(0.45835072, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.0692688, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 30554\n",
+ "Discriminator Loss: tf.Tensor(0.5527869, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.2550195, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 30555\n",
+ "Discriminator Loss: tf.Tensor(1.0253487, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.4053777, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 30556\n",
+ "Discriminator Loss: tf.Tensor(0.4408298, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.7537396, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 30557\n",
+ "Discriminator Loss: tf.Tensor(0.88629913, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.8320049, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 30558\n",
+ "Discriminator Loss: tf.Tensor(0.9605322, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.19740935, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 30559\n",
+ "Discriminator Loss: tf.Tensor(1.068065, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.7215608, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 30560\n",
+ "Discriminator Loss: tf.Tensor(0.94382787, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.34359172, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 30561\n",
+ "Discriminator Loss: tf.Tensor(0.6457256, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.3124561, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 30562\n",
+ "Discriminator Loss: tf.Tensor(1.2105788, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.40031424, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 30563\n",
+ "Discriminator Loss: tf.Tensor(0.6771192, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.2327882, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 30564\n",
+ "Discriminator Loss: tf.Tensor(0.58068573, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.4348959, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 30565\n",
+ "Discriminator Loss: tf.Tensor(0.7771532, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.6271521, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 30566\n",
+ "Discriminator Loss: tf.Tensor(1.2678864, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.2399428, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 30567\n",
+ "Discriminator Loss: tf.Tensor(0.5036947, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.6696642, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 30568\n",
+ "Discriminator Loss: tf.Tensor(0.7662717, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.5520657, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 30569\n",
+ "Discriminator Loss: tf.Tensor(0.52588934, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.61018103, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 30570\n",
+ "Discriminator Loss: tf.Tensor(1.1143969, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.8616632, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 30571\n",
+ "Discriminator Loss: tf.Tensor(0.9140356, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.18886168, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 30572\n",
+ "Discriminator Loss: tf.Tensor(1.3193208, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.1056805, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 30573\n",
+ "Discriminator Loss: tf.Tensor(0.47309268, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.6845123, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 30574\n",
+ "Discriminator Loss: tf.Tensor(0.8216711, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.4358182, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 30575\n",
+ "Discriminator Loss: tf.Tensor(0.45649546, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.644855, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 30576\n",
+ "Discriminator Loss: tf.Tensor(0.6846343, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.6506214, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 30577\n",
+ "Discriminator Loss: tf.Tensor(0.24869864, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.0515337, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 30578\n",
+ "Discriminator Loss: tf.Tensor(0.41649067, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.6381974, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 30579\n",
+ "Discriminator Loss: tf.Tensor(0.3322727, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.7833888, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 30580\n",
+ "Discriminator Loss: tf.Tensor(1.1559942, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.8377963, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 30581\n",
+ "Discriminator Loss: tf.Tensor(0.19359216, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.2173172, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 30582\n",
+ "Discriminator Loss: tf.Tensor(0.46953112, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.1863647, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 30583\n",
+ "Discriminator Loss: tf.Tensor(0.5646931, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.68288714, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 30584\n",
+ "Discriminator Loss: tf.Tensor(1.1125259, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.89084196, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 30585\n",
+ "Discriminator Loss: tf.Tensor(1.001137, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.8520321, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 30586\n",
+ "Discriminator Loss: tf.Tensor(0.85568875, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.37165537, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 30587\n",
+ "Discriminator Loss: tf.Tensor(1.1319779, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.5439638, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 30588\n",
+ "Discriminator Loss: tf.Tensor(0.867882, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.34233963, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 30589\n",
+ "Discriminator Loss: tf.Tensor(0.98824024, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.0320815, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 30590\n",
+ "Discriminator Loss: tf.Tensor(0.74904656, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.0124236, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 30591\n",
+ "Discriminator Loss: tf.Tensor(0.32555476, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.0871345, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 30592\n",
+ "Discriminator Loss: tf.Tensor(0.77081144, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.0610374, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 30593\n",
+ "Discriminator Loss: tf.Tensor(0.5233736, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.0536929, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 30594\n",
+ "Discriminator Loss: tf.Tensor(0.72913337, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.0211282, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 30595\n",
+ "Discriminator Loss: tf.Tensor(0.8304302, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.9060185, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 30596\n",
+ "Discriminator Loss: tf.Tensor(0.74150956, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.406087, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 30597\n",
+ "Discriminator Loss: tf.Tensor(0.7712031, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.3880228, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 30598\n",
+ "Discriminator Loss: tf.Tensor(1.4304326, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.1246014, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 30599\n",
+ "Discriminator Loss: tf.Tensor(0.90995336, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.57988703, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 30600\n",
+ "Discriminator Loss: tf.Tensor(0.74751526, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.8630533, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 30601\n",
+ "Discriminator Loss: tf.Tensor(0.5712623, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.7465344, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 30602\n",
+ "Discriminator Loss: tf.Tensor(0.56899714, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.4647833, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 30603\n",
+ "Discriminator Loss: tf.Tensor(0.7144069, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.66766137, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 30604\n",
+ "Discriminator Loss: tf.Tensor(0.74134314, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.4285923, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 30605\n",
+ "Discriminator Loss: tf.Tensor(0.5808517, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.48830533, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 30606\n",
+ "Discriminator Loss: tf.Tensor(0.8336801, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.8390051, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 30607\n",
+ "Discriminator Loss: tf.Tensor(0.56524646, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.45783767, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 30608\n",
+ "Discriminator Loss: tf.Tensor(0.81089836, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.3202648, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 30609\n",
+ "Discriminator Loss: tf.Tensor(0.39757732, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.8864322, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 30610\n",
+ "Discriminator Loss: tf.Tensor(0.7714907, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.1818781, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 30611\n",
+ "Discriminator Loss: tf.Tensor(0.5231284, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.8135988, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 30612\n",
+ "Discriminator Loss: tf.Tensor(1.4458333, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.5742235, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 30613\n",
+ "Discriminator Loss: tf.Tensor(0.5836462, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.64132124, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 30614\n",
+ "Discriminator Loss: tf.Tensor(0.6715263, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.2932173, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 30615\n",
+ "Discriminator Loss: tf.Tensor(0.49756864, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.97962433, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 30616\n",
+ "Discriminator Loss: tf.Tensor(0.7122116, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.1281005, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 30617\n",
+ "Discriminator Loss: tf.Tensor(0.482921, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.6622504, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 30618\n",
+ "Discriminator Loss: tf.Tensor(0.24099107, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.3301145, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 30619\n",
+ "Discriminator Loss: tf.Tensor(0.5274648, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.4551853, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 30620\n",
+ "Discriminator Loss: tf.Tensor(0.6789137, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.70166594, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 30621\n",
+ "Discriminator Loss: tf.Tensor(1.4629687, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.0400698, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 30622\n",
+ "Discriminator Loss: tf.Tensor(0.61242515, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.6240177, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 30623\n",
+ "Discriminator Loss: tf.Tensor(0.70161027, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.380968, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 30624\n",
+ "Discriminator Loss: tf.Tensor(0.5122572, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.78082895, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 30625\n",
+ "Discriminator Loss: tf.Tensor(1.1039729, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.0630512, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 30626\n",
+ "Discriminator Loss: tf.Tensor(0.47826254, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.7600918, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 30627\n",
+ "Discriminator Loss: tf.Tensor(0.52586466, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.4635631, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 30628\n",
+ "Discriminator Loss: tf.Tensor(0.5618428, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.0718867, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 30629\n",
+ "Discriminator Loss: tf.Tensor(0.5169273, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.9351883, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 30630\n",
+ "Discriminator Loss: tf.Tensor(0.25779825, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.61553, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 30631\n",
+ "Discriminator Loss: tf.Tensor(0.3426757, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.9091735, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 30632\n",
+ "Discriminator Loss: tf.Tensor(0.818457, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.0458806, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 30633\n",
+ "Discriminator Loss: tf.Tensor(0.68681437, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.6596809, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 30634\n",
+ "Discriminator Loss: tf.Tensor(0.97809416, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.3302599, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 30635\n",
+ "Discriminator Loss: tf.Tensor(0.53528094, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.48864374, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 30636\n",
+ "Discriminator Loss: tf.Tensor(2.056781, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.8020347, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 30637\n",
+ "Discriminator Loss: tf.Tensor(0.43990296, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.8558557, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 30638\n",
+ "Discriminator Loss: tf.Tensor(0.52527934, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.1638442, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 30639\n",
+ "Discriminator Loss: tf.Tensor(0.7358314, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.8803313, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 30640\n",
+ "Discriminator Loss: tf.Tensor(0.28272885, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.3503727, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 30641\n",
+ "Discriminator Loss: tf.Tensor(0.3911057, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.0862614, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 30642\n",
+ "Discriminator Loss: tf.Tensor(0.19650966, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.0930471, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 30643\n",
+ "Discriminator Loss: tf.Tensor(0.9844247, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.764356, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 30644\n",
+ "Discriminator Loss: tf.Tensor(0.9745429, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.061158832, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 30645\n",
+ "Discriminator Loss: tf.Tensor(0.7939446, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.7671415, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 30646\n",
+ "Discriminator Loss: tf.Tensor(0.49336675, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.80373025, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 30647\n",
+ "Discriminator Loss: tf.Tensor(0.8813068, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.5218633, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 30648\n",
+ "Discriminator Loss: tf.Tensor(0.4816503, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.82399297, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 30649\n",
+ "Discriminator Loss: tf.Tensor(0.79880184, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.6058277, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 30650\n",
+ "Discriminator Loss: tf.Tensor(0.7300569, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.6686674, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 30651\n",
+ "Discriminator Loss: tf.Tensor(0.49990577, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.5204601, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 30652\n",
+ "Discriminator Loss: tf.Tensor(0.71991986, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.7666377, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 30653\n",
+ "Discriminator Loss: tf.Tensor(0.46027482, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.9435995, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 30654\n",
+ "Discriminator Loss: tf.Tensor(0.2676173, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.1298469, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 30655\n",
+ "Discriminator Loss: tf.Tensor(0.532579, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.0891252, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 30656\n",
+ "Discriminator Loss: tf.Tensor(0.5701163, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.5340642, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 30657\n",
+ "Discriminator Loss: tf.Tensor(0.7488304, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.37443742, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 30658\n",
+ "Discriminator Loss: tf.Tensor(1.3490009, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.7937212, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 30659\n",
+ "Discriminator Loss: tf.Tensor(0.7482268, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.41401744, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 30660\n",
+ "Discriminator Loss: tf.Tensor(0.88765645, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.5685434, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 30661\n",
+ "Discriminator Loss: tf.Tensor(0.73968524, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.65934104, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 30662\n",
+ "Discriminator Loss: tf.Tensor(0.5968709, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.289344, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 30663\n",
+ "Discriminator Loss: tf.Tensor(0.5496917, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.60583085, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 30664\n",
+ "Discriminator Loss: tf.Tensor(0.71560454, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.6889143, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 30665\n",
+ "Discriminator Loss: tf.Tensor(0.5011921, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.9753848, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 30666\n",
+ "Discriminator Loss: tf.Tensor(0.6540241, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.1982573, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 30667\n",
+ "Discriminator Loss: tf.Tensor(0.6659652, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.9855752, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 30668\n",
+ "Discriminator Loss: tf.Tensor(0.72541845, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.7187971, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 30669\n",
+ "Discriminator Loss: tf.Tensor(0.3912534, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.83105105, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 30670\n",
+ "Discriminator Loss: tf.Tensor(0.52655315, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.0085169, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 30671\n",
+ "Discriminator Loss: tf.Tensor(0.414638, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.12745, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 30672\n",
+ "Discriminator Loss: tf.Tensor(0.43019724, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.3352003, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 30673\n",
+ "Discriminator Loss: tf.Tensor(0.8524833, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.4013348, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 30674\n",
+ "Discriminator Loss: tf.Tensor(0.7991647, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.35972095, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 30675\n",
+ "Discriminator Loss: tf.Tensor(0.9499825, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.8433281, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 30676\n",
+ "Discriminator Loss: tf.Tensor(0.88208354, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.33653143, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 30677\n",
+ "Discriminator Loss: tf.Tensor(1.0012343, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.8211912, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 30678\n",
+ "Discriminator Loss: tf.Tensor(0.53326315, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.68321127, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 30679\n",
+ "Discriminator Loss: tf.Tensor(0.4263208, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.3918508, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 30680\n",
+ "Discriminator Loss: tf.Tensor(0.7126322, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.46936134, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 30681\n",
+ "Discriminator Loss: tf.Tensor(0.5401289, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.698707, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 30682\n",
+ "Discriminator Loss: tf.Tensor(0.39980087, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.9470387, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 30683\n",
+ "Discriminator Loss: tf.Tensor(0.7080813, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.2047137, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 30684\n",
+ "Discriminator Loss: tf.Tensor(0.3890534, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.0788621, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 30685\n",
+ "Discriminator Loss: tf.Tensor(1.0095267, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.6723491, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 30686\n",
+ "Discriminator Loss: tf.Tensor(0.73448396, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.7609463, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 30687\n",
+ "Discriminator Loss: tf.Tensor(0.46947485, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.4646482, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 30688\n",
+ "Discriminator Loss: tf.Tensor(0.38982242, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.0707539, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 30689\n",
+ "Discriminator Loss: tf.Tensor(0.5069691, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.0968174, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 30690\n",
+ "Discriminator Loss: tf.Tensor(0.677502, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.63568765, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 30691\n",
+ "Discriminator Loss: tf.Tensor(1.2905564, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.0333955, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 30692\n",
+ "Discriminator Loss: tf.Tensor(0.8682113, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.22217214, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 30693\n",
+ "Discriminator Loss: tf.Tensor(1.3011974, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.1670822, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 30694\n",
+ "Discriminator Loss: tf.Tensor(0.36129752, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.7532068, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 30695\n",
+ "Discriminator Loss: tf.Tensor(1.3698528, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.9796902, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 30696\n",
+ "Discriminator Loss: tf.Tensor(0.87683153, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.40046343, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 30697\n",
+ "Discriminator Loss: tf.Tensor(0.5685693, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.3881912, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 30698\n",
+ "Discriminator Loss: tf.Tensor(0.81624395, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.27858838, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 30699\n",
+ "Discriminator Loss: tf.Tensor(1.1691394, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.7008034, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 30700\n",
+ "Discriminator Loss: tf.Tensor(0.22064562, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.0492934, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 30701\n",
+ "Discriminator Loss: tf.Tensor(0.61994904, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.86674166, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 30702\n",
+ "Discriminator Loss: tf.Tensor(1.2190928, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.1085435, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 30703\n",
+ "Discriminator Loss: tf.Tensor(0.62652653, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.6378181, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 30704\n",
+ "Discriminator Loss: tf.Tensor(1.1796553, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.8287834, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 30705\n",
+ "Discriminator Loss: tf.Tensor(0.31481916, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.81136924, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 30706\n",
+ "Discriminator Loss: tf.Tensor(0.46835196, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.6667777, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 30707\n",
+ "Discriminator Loss: tf.Tensor(0.320142, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.7115405, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 30708\n",
+ "Discriminator Loss: tf.Tensor(0.97099227, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.8364316, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 30709\n",
+ "Discriminator Loss: tf.Tensor(0.75159216, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.6880486, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 30710\n",
+ "Discriminator Loss: tf.Tensor(0.78913116, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.9659188, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 30711\n",
+ "Discriminator Loss: tf.Tensor(1.0333488, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.7344531, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 30712\n",
+ "Discriminator Loss: tf.Tensor(0.4420113, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.0162498, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 30713\n",
+ "Discriminator Loss: tf.Tensor(0.3935495, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.0903605, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 30714\n",
+ "Discriminator Loss: tf.Tensor(0.53791076, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.2750723, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 30715\n",
+ "Discriminator Loss: tf.Tensor(0.4065736, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.4751954, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 30716\n",
+ "Discriminator Loss: tf.Tensor(0.7182588, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.6076656, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 30717\n",
+ "Discriminator Loss: tf.Tensor(1.1182505, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.3082882, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 30718\n",
+ "Discriminator Loss: tf.Tensor(0.62074053, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.6978166, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 30719\n",
+ "Discriminator Loss: tf.Tensor(0.7126689, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.3398446, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 30720\n",
+ "Discriminator Loss: tf.Tensor(0.77561355, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.2422741, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 30721\n",
+ "Discriminator Loss: tf.Tensor(0.8429822, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.770627, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 30722\n",
+ "Discriminator Loss: tf.Tensor(0.48890945, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.6590385, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 30723\n",
+ "Discriminator Loss: tf.Tensor(0.6726018, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.6557856, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 30724\n",
+ "Discriminator Loss: tf.Tensor(0.29899076, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.85072166, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 30725\n",
+ "Discriminator Loss: tf.Tensor(0.9836476, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.6373682, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 30726\n",
+ "Discriminator Loss: tf.Tensor(0.70386744, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.5489636, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 30727\n",
+ "Discriminator Loss: tf.Tensor(0.51430786, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.4948422, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 30728\n",
+ "Discriminator Loss: tf.Tensor(0.7318424, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.47037205, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 30729\n",
+ "Discriminator Loss: tf.Tensor(0.8640137, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.5443791, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 30730\n",
+ "Discriminator Loss: tf.Tensor(0.6984015, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.6191585, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 30731\n",
+ "Discriminator Loss: tf.Tensor(0.5018168, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.8319483, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 30732\n",
+ "Discriminator Loss: tf.Tensor(0.6813823, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.262597, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 30733\n",
+ "Discriminator Loss: tf.Tensor(0.4693294, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.72564745, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 30734\n",
+ "Discriminator Loss: tf.Tensor(0.6687136, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.6512004, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 30735\n",
+ "Discriminator Loss: tf.Tensor(0.5601378, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.84298325, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 30736\n",
+ "Discriminator Loss: tf.Tensor(0.15001355, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.5483233, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 30737\n",
+ "Discriminator Loss: tf.Tensor(0.4128691, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.3563315, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 30738\n",
+ "Discriminator Loss: tf.Tensor(0.16165027, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.2476487, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 30739\n",
+ "Discriminator Loss: tf.Tensor(1.6385312, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(2.112047, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 30740\n",
+ "Discriminator Loss: tf.Tensor(0.49370748, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.78116816, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 30741\n",
+ "Discriminator Loss: tf.Tensor(1.005318, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.3184465, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 30742\n",
+ "Discriminator Loss: tf.Tensor(0.6559067, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.63995117, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 30743\n",
+ "Discriminator Loss: tf.Tensor(0.88771135, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.4579029, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 30744\n",
+ "Discriminator Loss: tf.Tensor(0.46080688, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.7582595, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 30745\n",
+ "Discriminator Loss: tf.Tensor(1.0638759, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.843618, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 30746\n",
+ "Discriminator Loss: tf.Tensor(0.78088117, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.7463024, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 30747\n",
+ "Discriminator Loss: tf.Tensor(0.25465906, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.2218431, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 30748\n",
+ "Discriminator Loss: tf.Tensor(0.40058857, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.9926219, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 30749\n",
+ "Discriminator Loss: tf.Tensor(0.4490506, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.0310298, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 30750\n",
+ "Discriminator Loss: tf.Tensor(0.4896462, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.3516403, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 30751\n",
+ "Discriminator Loss: tf.Tensor(0.6945324, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.68217057, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 30752\n",
+ "Discriminator Loss: tf.Tensor(1.5509756, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.985005, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 30753\n",
+ "Discriminator Loss: tf.Tensor(0.8871447, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.28289816, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 30754\n",
+ "Discriminator Loss: tf.Tensor(0.91197187, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.4219265, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 30755\n",
+ "Discriminator Loss: tf.Tensor(0.63961184, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.5174354, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 30756\n",
+ "Discriminator Loss: tf.Tensor(0.8866612, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.2356874, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 30757\n",
+ "Discriminator Loss: tf.Tensor(0.40163657, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.7784589, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 30758\n",
+ "Discriminator Loss: tf.Tensor(0.26613373, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.3370308, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 30759\n",
+ "Discriminator Loss: tf.Tensor(0.384893, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.795482, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 30760\n",
+ "Discriminator Loss: tf.Tensor(1.4122274, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.9749851, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 30761\n",
+ "Discriminator Loss: tf.Tensor(0.7982526, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.36189517, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 30762\n",
+ "Discriminator Loss: tf.Tensor(0.99380314, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.4483379, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 30763\n",
+ "Discriminator Loss: tf.Tensor(1.2138681, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(-0.0046028993, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 30764\n",
+ "Discriminator Loss: tf.Tensor(1.3199501, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.4080099, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 30765\n",
+ "Discriminator Loss: tf.Tensor(0.69421077, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.37731242, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 30766\n",
+ "Discriminator Loss: tf.Tensor(0.7707094, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.3047886, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 30767\n",
+ "Discriminator Loss: tf.Tensor(0.7090869, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.7105573, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 30768\n",
+ "Discriminator Loss: tf.Tensor(0.7580143, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.1636966, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 30769\n",
+ "Discriminator Loss: tf.Tensor(0.42057335, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.6331355, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 30770\n",
+ "Discriminator Loss: tf.Tensor(0.97563535, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.929368, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 30771\n",
+ "Discriminator Loss: tf.Tensor(0.5813011, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.7172382, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 30772\n",
+ "Discriminator Loss: tf.Tensor(0.691602, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.3902888, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 30773\n",
+ "Discriminator Loss: tf.Tensor(0.65967244, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.377067, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 30774\n",
+ "Discriminator Loss: tf.Tensor(0.8542554, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(0.17839266, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "==============================\n",
+ "Epoch: 30775\n",
+ "Discriminator Loss: tf.Tensor(0.49936545, shape=(), dtype=float32)\n",
+ "Generator Loss: tf.Tensor(1.3735672, shape=(), dtype=float32)\n",
+ "==============================\n",
+ "\n",
+ "(1184, 256, 256, 3)\n",
+ "\n",
+ "===================