-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
b5a0500
commit e88a80d
Showing
741 changed files
with
3,597 additions
and
0 deletions.
There are no files selected for viewing
Binary file added
BIN
+8.87 KB
...train_depth_3_lr_scale_0.5_act_lrelu_0.05/gen_samples_stage_5/gen_sample_20.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added
BIN
+8.77 KB
...train_depth_3_lr_scale_0.5_act_lrelu_0.05/gen_samples_stage_5/gen_sample_21.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added
BIN
+8.81 KB
...train_depth_3_lr_scale_0.5_act_lrelu_0.05/gen_samples_stage_5/gen_sample_22.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added
BIN
+8.86 KB
...train_depth_3_lr_scale_0.5_act_lrelu_0.05/gen_samples_stage_5/gen_sample_23.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added
BIN
+8.63 KB
...train_depth_3_lr_scale_0.5_act_lrelu_0.05/gen_samples_stage_5/gen_sample_24.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added
BIN
+8.76 KB
..._train_depth_3_lr_scale_0.5_act_lrelu_0.05/gen_samples_stage_5/gen_sample_3.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added
BIN
+8.67 KB
..._train_depth_3_lr_scale_0.5_act_lrelu_0.05/gen_samples_stage_5/gen_sample_4.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added
BIN
+8.75 KB
..._train_depth_3_lr_scale_0.5_act_lrelu_0.05/gen_samples_stage_5/gen_sample_5.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added
BIN
+8.89 KB
..._train_depth_3_lr_scale_0.5_act_lrelu_0.05/gen_samples_stage_5/gen_sample_6.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added
BIN
+8.81 KB
..._train_depth_3_lr_scale_0.5_act_lrelu_0.05/gen_samples_stage_5/gen_sample_7.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added
BIN
+8.71 KB
..._train_depth_3_lr_scale_0.5_act_lrelu_0.05/gen_samples_stage_5/gen_sample_8.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added
BIN
+8.88 KB
..._train_depth_3_lr_scale_0.5_act_lrelu_0.05/gen_samples_stage_5/gen_sample_9.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
129 changes: 129 additions & 0 deletions
129
...baysands/2024_04_12_20_49_12_generation_train_depth_3_lr_scale_0.5_act_lrelu_0.05/main.py
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,129 @@ | ||
import datetime | ||
import dateutil.tz | ||
import os | ||
import os.path as osp | ||
from shutil import copyfile, copytree | ||
import glob | ||
import time | ||
import random | ||
import torch | ||
import math | ||
import argparse | ||
from SoloSynthGAN import functions | ||
|
||
|
||
def get_arguments(): | ||
parser = argparse.ArgumentParser() | ||
|
||
parser.add_argument('--not_cuda', action='store_true', help='disables cuda', default=0) | ||
parser.add_argument('--manualSeed', type=int, help='manual seed') | ||
|
||
|
||
parser.add_argument('--nfc', type=int,help='number of filters per conv layer', default=64) | ||
parser.add_argument('--ker_size',type=int,help='kernel size',default=3) | ||
parser.add_argument('--num_layer',type=int,help='number of layers per stage',default=3) | ||
parser.add_argument('--padd_size',type=int,help='net pad size',default=0) | ||
|
||
|
||
parser.add_argument('--nc_im',type=int,help='image # channels',default=3) | ||
parser.add_argument('--noise_amp',type=float,help='additive noise cont weight',default=0.1) | ||
parser.add_argument('--min_size',type=int,help='image minimal size at the coarser scale',default=25) | ||
parser.add_argument('--max_size', type=int,help='image minimal size at the coarser scale', default=250) | ||
parser.add_argument('--train_depth', type=int, help='how many layers are trained if growing', default=3) | ||
parser.add_argument('--start_scale', type=int, help='at which stage to start training', default=0) | ||
|
||
|
||
parser.add_argument('--niter', type=int, default=1500, help='number of epochs to train per scale') | ||
parser.add_argument('--gamma',type=float,help='scheduler gamma',default=0.1) | ||
parser.add_argument('--lr_g', type=float, default=0.0005, help='learning rate, default=0.0005') | ||
parser.add_argument('--lr_d', type=float, default=0.0005, help='learning rate, default=0.0005') | ||
parser.add_argument('--beta1', type=float, default=0.5, help='beta1 for adam. default=0.5') | ||
parser.add_argument('--Gsteps',type=int, help='Generator inner steps',default=3) | ||
parser.add_argument('--Dsteps',type=int, help='Discriminator inner steps',default=3) | ||
parser.add_argument('--lambda_grad',type=float, help='gradient penalty weight',default=0.1) | ||
parser.add_argument('--alpha',type=float, help='reconstruction loss weight',default=10) | ||
parser.add_argument('--activation', default='lrelu', help="activation function {lrelu, prelu, elu, selu}") | ||
parser.add_argument('--lrelu_alpha', type=float, help='alpha for leaky relu', default=0.05) | ||
parser.add_argument('--batch_norm', action='store_true', help='use batch norm in generator', default=0) | ||
|
||
return parser | ||
|
||
|
||
|
||
|
||
if __name__ == '__main__': | ||
parser = get_arguments() | ||
parser.add_argument('--input_name', help='input image name for training', required=True) | ||
parser.add_argument('--naive_img', help='naive input image (harmonization or editing)', default="") | ||
parser.add_argument('--gpu', type=int, help='which GPU to use', default=0) | ||
parser.add_argument('--train_mode', default='generation', | ||
choices=['generation', 'retarget', 'harmonization', 'editing', 'animation'], | ||
help="generation, retarget, harmonization, editing, animation") | ||
parser.add_argument('--lr_scale', type=float, help='scaling of learning rate for lower stages', default=0.5) | ||
parser.add_argument('--train_stages', type=int, help='how many stages to use for training', default=6) | ||
|
||
parser.add_argument('--fine_tune', action='store_true', help='whether to fine tune on a given image', default=0) | ||
parser.add_argument('--model_dir', help='model to be used for fine tuning (harmonization or editing)', default="") | ||
|
||
opt = parser.parse_args() | ||
print(opt) | ||
opt = functions.post_config(opt) | ||
|
||
|
||
if opt.fine_tune: | ||
_gpu = opt.gpu | ||
_model_dir = opt.model_dir | ||
_timestamp = opt.timestamp | ||
_naive_img = opt.naive_img | ||
_niter = opt.niter | ||
|
||
opt = functions.load_config(opt) | ||
|
||
opt.gpu = _gpu | ||
opt.model_dir = _model_dir | ||
opt.start_scale = opt.train_stages - 1 | ||
opt.timestamp = _timestamp | ||
opt.fine_tune = True | ||
opt.naive_img = _naive_img | ||
opt.niter = _niter | ||
|
||
if not os.path.exists(opt.input_name): | ||
print("Image does not exist: {}".format(opt.input_name)) | ||
print("Please specify a valid image.") | ||
exit() | ||
|
||
if torch.cuda.is_available(): | ||
torch.cuda.set_device(opt.gpu) | ||
|
||
|
||
if opt.train_mode == "generation" or opt.train_mode == "retarget" or opt.train_mode == "animation": | ||
if opt.train_mode == "animation": | ||
opt.min_size = 20 | ||
from SoloSynthGAN.training_generation import * | ||
|
||
dir2save = functions.generate_dir2save(opt) | ||
|
||
if osp.exists(dir2save): | ||
print('Trained model already exist: {}'.format(dir2save)) | ||
exit() | ||
try: | ||
os.makedirs(dir2save) | ||
except OSError: | ||
pass | ||
|
||
with open(osp.join(dir2save, 'parameters.txt'), 'w') as f: | ||
for o in opt.__dict__: | ||
f.write("{}\t-\t{}\n".format(o, opt.__dict__[o])) | ||
current_path = os.path.dirname(os.path.abspath(__file__)) | ||
for py_file in glob.glob(osp.join(current_path, "*.py")): | ||
copyfile(py_file, osp.join(dir2save, py_file.split("/")[-1])) | ||
copytree(osp.join(current_path, "SoloSynthGAN"), osp.join(dir2save, "SoloSynthGAN")) | ||
|
||
|
||
|
||
print("Training model ({})".format(dir2save)) | ||
start = time.time() | ||
train(opt) | ||
end = time.time() | ||
elapsed_time = end - start | ||
print("Time for training: {} seconds".format(elapsed_time)) |
Binary file added
BIN
+1.65 KB
...ds/2024_04_12_20_49_12_generation_train_depth_3_lr_scale_0.5_act_lrelu_0.05/noise_amp.pth
Binary file not shown.
35 changes: 35 additions & 0 deletions
35
...s/2024_04_12_20_49_12_generation_train_depth_3_lr_scale_0.5_act_lrelu_0.05/parameters.txt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,35 @@ | ||
not_cuda - 0 | ||
manualSeed - 5060 | ||
nfc - 64 | ||
ker_size - 3 | ||
num_layer - 3 | ||
padd_size - 0 | ||
nc_im - 3 | ||
noise_amp - 0.1 | ||
min_size - 25 | ||
max_size - 250 | ||
train_depth - 3 | ||
start_scale - 0 | ||
niter - 1500 | ||
gamma - 0.1 | ||
lr_g - 0.0005 | ||
lr_d - 0.0005 | ||
beta1 - 0.5 | ||
Gsteps - 3 | ||
Dsteps - 3 | ||
lambda_grad - 0.1 | ||
alpha - 10 | ||
activation - lrelu | ||
lrelu_alpha - 0.05 | ||
batch_norm - 0 | ||
input_name - Images/marinabaysands.jpg | ||
naive_img - | ||
gpu - 0 | ||
train_mode - generation | ||
lr_scale - 0.5 | ||
train_stages - 6 | ||
fine_tune - 0 | ||
model_dir - | ||
device - cuda:0 | ||
noise_amp_init - 0.1 | ||
timestamp - 2024_04_12_20_49_12 |
Binary file added
BIN
+842 KB
...ysands/2024_04_12_20_49_12_generation_train_depth_3_lr_scale_0.5_act_lrelu_0.05/reals.pth
Binary file not shown.
6 changes: 6 additions & 0 deletions
6
...enge/2024_02_09_16_42_52_generation_train_depth_3_lr_scale_0.12_act_lrelu_0.05/.amlignore
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
## This file was auto generated by the Azure Machine Learning Studio. Please do not remove. | ||
## Read more about the .amlignore file here: https://docs.microsoft.com/azure/machine-learning/how-to-save-write-experiment-files#storage-limits-of-experiment-snapshots | ||
|
||
.ipynb_aml_checkpoints/ | ||
*.amltmp | ||
*.amltemp |
6 changes: 6 additions & 0 deletions
6
...24_02_09_16_42_52_generation_train_depth_3_lr_scale_0.12_act_lrelu_0.05/.amlignore.amltmp
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
## This file was auto generated by the Azure Machine Learning Studio. Please do not remove. | ||
## Read more about the .amlignore file here: https://docs.microsoft.com/azure/machine-learning/how-to-save-write-experiment-files#storage-limits-of-experiment-snapshots | ||
|
||
.ipynb_aml_checkpoints/ | ||
*.amltmp | ||
*.amltemp |
Binary file added
BIN
+184 KB
...rain_depth_3_lr_scale_0.12_act_lrelu_0.05/0/events.out.tfevents.1707496978.pjannu1.7571.0
Binary file not shown.
Binary file added
BIN
+661 Bytes
...42_52_generation_train_depth_3_lr_scale_0.12_act_lrelu_0.05/0/fake_sample_1.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added
BIN
+1.12 KB
..._52_generation_train_depth_3_lr_scale_0.12_act_lrelu_0.05/0/fake_sample_501.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added
BIN
+1.11 KB
..._52_generation_train_depth_3_lr_scale_0.12_act_lrelu_0.05/0/fake_sample_800.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added
BIN
+445 KB
...enge/2024_02_09_16_42_52_generation_train_depth_3_lr_scale_0.12_act_lrelu_0.05/0/netD.pth
Binary file not shown.
Binary file added
BIN
+450 KB
...enge/2024_02_09_16_42_52_generation_train_depth_3_lr_scale_0.12_act_lrelu_0.05/0/netG.pth
Binary file not shown.
Binary file added
BIN
+1.12 KB
...16_42_52_generation_train_depth_3_lr_scale_0.12_act_lrelu_0.05/0/real_scale.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added
BIN
+658 Bytes
...52_generation_train_depth_3_lr_scale_0.12_act_lrelu_0.05/0/reconstruction_1.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added
BIN
+1.04 KB
..._generation_train_depth_3_lr_scale_0.12_act_lrelu_0.05/0/reconstruction_501.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added
BIN
+1.05 KB
..._generation_train_depth_3_lr_scale_0.12_act_lrelu_0.05/0/reconstruction_800.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added
BIN
+18.9 KB
...nge/2024_02_09_16_42_52_generation_train_depth_3_lr_scale_0.12_act_lrelu_0.05/0/z_opt.pth
Binary file not shown.
Binary file added
BIN
+309 KB
...rain_depth_3_lr_scale_0.12_act_lrelu_0.05/1/events.out.tfevents.1707497010.pjannu1.7571.1
Binary file not shown.
Binary file added
BIN
+1.27 KB
...42_52_generation_train_depth_3_lr_scale_0.12_act_lrelu_0.05/1/fake_sample_1.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added
BIN
+1.22 KB
..._52_generation_train_depth_3_lr_scale_0.12_act_lrelu_0.05/1/fake_sample_501.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added
BIN
+1.22 KB
..._52_generation_train_depth_3_lr_scale_0.12_act_lrelu_0.05/1/fake_sample_800.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added
BIN
+445 KB
...enge/2024_02_09_16_42_52_generation_train_depth_3_lr_scale_0.12_act_lrelu_0.05/1/netD.pth
Binary file not shown.
Binary file added
BIN
+885 KB
...enge/2024_02_09_16_42_52_generation_train_depth_3_lr_scale_0.12_act_lrelu_0.05/1/netG.pth
Binary file not shown.
Binary file added
BIN
+1.21 KB
...16_42_52_generation_train_depth_3_lr_scale_0.12_act_lrelu_0.05/1/real_scale.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added
BIN
+1.26 KB
...52_generation_train_depth_3_lr_scale_0.12_act_lrelu_0.05/1/reconstruction_1.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added
BIN
+1.2 KB
..._generation_train_depth_3_lr_scale_0.12_act_lrelu_0.05/1/reconstruction_501.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added
BIN
+1.2 KB
..._generation_train_depth_3_lr_scale_0.12_act_lrelu_0.05/1/reconstruction_800.jpg
Oops, something went wrong.
Binary file added
BIN
+621 KB
...nge/2024_02_09_16_42_52_generation_train_depth_3_lr_scale_0.12_act_lrelu_0.05/1/z_opt.pth
Binary file not shown.
Binary file added
BIN
+350 KB
...rain_depth_3_lr_scale_0.12_act_lrelu_0.05/2/events.out.tfevents.1707497044.pjannu1.7571.2
Binary file not shown.
Binary file added
BIN
+1.35 KB
...42_52_generation_train_depth_3_lr_scale_0.12_act_lrelu_0.05/2/fake_sample_1.jpg
Oops, something went wrong.
Binary file added
BIN
+1.26 KB
..._52_generation_train_depth_3_lr_scale_0.12_act_lrelu_0.05/2/fake_sample_501.jpg
Oops, something went wrong.
Binary file added
BIN
+1.26 KB
..._52_generation_train_depth_3_lr_scale_0.12_act_lrelu_0.05/2/fake_sample_800.jpg
Oops, something went wrong.
Binary file added
BIN
+445 KB
...enge/2024_02_09_16_42_52_generation_train_depth_3_lr_scale_0.12_act_lrelu_0.05/2/netD.pth
Binary file not shown.
Binary file added
BIN
+1.29 MB
...enge/2024_02_09_16_42_52_generation_train_depth_3_lr_scale_0.12_act_lrelu_0.05/2/netG.pth
Binary file not shown.
Binary file added
BIN
+1.28 KB
...16_42_52_generation_train_depth_3_lr_scale_0.12_act_lrelu_0.05/2/real_scale.jpg
Oops, something went wrong.
Binary file added
BIN
+1.3 KB
...52_generation_train_depth_3_lr_scale_0.12_act_lrelu_0.05/2/reconstruction_1.jpg
Oops, something went wrong.
Binary file added
BIN
+1.26 KB
..._generation_train_depth_3_lr_scale_0.12_act_lrelu_0.05/2/reconstruction_501.jpg
Oops, something went wrong.
Binary file added
BIN
+1.28 KB
..._generation_train_depth_3_lr_scale_0.12_act_lrelu_0.05/2/reconstruction_800.jpg
Oops, something went wrong.
Binary file added
BIN
+712 KB
...nge/2024_02_09_16_42_52_generation_train_depth_3_lr_scale_0.12_act_lrelu_0.05/2/z_opt.pth
Binary file not shown.
Binary file added
BIN
+426 KB
...rain_depth_3_lr_scale_0.12_act_lrelu_0.05/3/events.out.tfevents.1707497083.pjannu1.7571.3
Binary file not shown.
Binary file added
BIN
+1.54 KB
...42_52_generation_train_depth_3_lr_scale_0.12_act_lrelu_0.05/3/fake_sample_1.jpg
Oops, something went wrong.
Binary file added
BIN
+1.47 KB
..._52_generation_train_depth_3_lr_scale_0.12_act_lrelu_0.05/3/fake_sample_501.jpg
Oops, something went wrong.
Binary file added
BIN
+1.43 KB
..._52_generation_train_depth_3_lr_scale_0.12_act_lrelu_0.05/3/fake_sample_800.jpg
Oops, something went wrong.
Binary file added
BIN
+445 KB
...enge/2024_02_09_16_42_52_generation_train_depth_3_lr_scale_0.12_act_lrelu_0.05/3/netD.pth
Binary file not shown.
Binary file added
BIN
+1.71 MB
...enge/2024_02_09_16_42_52_generation_train_depth_3_lr_scale_0.12_act_lrelu_0.05/3/netG.pth
Binary file not shown.
Binary file added
BIN
+1.46 KB
...16_42_52_generation_train_depth_3_lr_scale_0.12_act_lrelu_0.05/3/real_scale.jpg
Oops, something went wrong.
Binary file added
BIN
+1.46 KB
...52_generation_train_depth_3_lr_scale_0.12_act_lrelu_0.05/3/reconstruction_1.jpg
Oops, something went wrong.
Binary file added
BIN
+1.4 KB
..._generation_train_depth_3_lr_scale_0.12_act_lrelu_0.05/3/reconstruction_501.jpg
Oops, something went wrong.
Binary file added
BIN
+1.42 KB
..._generation_train_depth_3_lr_scale_0.12_act_lrelu_0.05/3/reconstruction_800.jpg
Oops, something went wrong.
Binary file added
BIN
+871 KB
...nge/2024_02_09_16_42_52_generation_train_depth_3_lr_scale_0.12_act_lrelu_0.05/3/z_opt.pth
Binary file not shown.
Binary file added
BIN
+528 KB
...rain_depth_3_lr_scale_0.12_act_lrelu_0.05/4/events.out.tfevents.1707497125.pjannu1.7571.4
Binary file not shown.
Binary file added
BIN
+1.65 KB
...42_52_generation_train_depth_3_lr_scale_0.12_act_lrelu_0.05/4/fake_sample_1.jpg
Oops, something went wrong.
Binary file added
BIN
+1.57 KB
..._52_generation_train_depth_3_lr_scale_0.12_act_lrelu_0.05/4/fake_sample_501.jpg
Oops, something went wrong.
Binary file added
BIN
+1.56 KB
..._52_generation_train_depth_3_lr_scale_0.12_act_lrelu_0.05/4/fake_sample_800.jpg
Oops, something went wrong.
Binary file added
BIN
+445 KB
...enge/2024_02_09_16_42_52_generation_train_depth_3_lr_scale_0.12_act_lrelu_0.05/4/netD.pth
Binary file not shown.
Binary file added
BIN
+2.14 MB
...enge/2024_02_09_16_42_52_generation_train_depth_3_lr_scale_0.12_act_lrelu_0.05/4/netG.pth
Binary file not shown.
Binary file added
BIN
+1.62 KB
...16_42_52_generation_train_depth_3_lr_scale_0.12_act_lrelu_0.05/4/real_scale.jpg
Oops, something went wrong.
Binary file added
BIN
+1.58 KB
...52_generation_train_depth_3_lr_scale_0.12_act_lrelu_0.05/4/reconstruction_1.jpg
Oops, something went wrong.
Binary file added
BIN
+1.59 KB
..._generation_train_depth_3_lr_scale_0.12_act_lrelu_0.05/4/reconstruction_501.jpg
Oops, something went wrong.
Binary file added
BIN
+1.59 KB
..._generation_train_depth_3_lr_scale_0.12_act_lrelu_0.05/4/reconstruction_800.jpg
Oops, something went wrong.
Binary file added
BIN
+1.06 MB
...nge/2024_02_09_16_42_52_generation_train_depth_3_lr_scale_0.12_act_lrelu_0.05/4/z_opt.pth
Binary file not shown.
Binary file added
BIN
+716 KB
...rain_depth_3_lr_scale_0.12_act_lrelu_0.05/5/events.out.tfevents.1707497168.pjannu1.7571.5
Binary file not shown.
Binary file added
BIN
+1.91 KB
...42_52_generation_train_depth_3_lr_scale_0.12_act_lrelu_0.05/5/fake_sample_1.jpg
Oops, something went wrong.
Binary file added
BIN
+1.83 KB
..._52_generation_train_depth_3_lr_scale_0.12_act_lrelu_0.05/5/fake_sample_501.jpg
Oops, something went wrong.
Binary file added
BIN
+1.86 KB
..._52_generation_train_depth_3_lr_scale_0.12_act_lrelu_0.05/5/fake_sample_800.jpg
Oops, something went wrong.
Binary file added
BIN
+445 KB
...enge/2024_02_09_16_42_52_generation_train_depth_3_lr_scale_0.12_act_lrelu_0.05/5/netD.pth
Binary file not shown.
Binary file added
BIN
+2.56 MB
...enge/2024_02_09_16_42_52_generation_train_depth_3_lr_scale_0.12_act_lrelu_0.05/5/netG.pth
Binary file not shown.
Binary file added
BIN
+1.89 KB
...16_42_52_generation_train_depth_3_lr_scale_0.12_act_lrelu_0.05/5/real_scale.jpg
Oops, something went wrong.
Binary file added
BIN
+1.87 KB
...52_generation_train_depth_3_lr_scale_0.12_act_lrelu_0.05/5/reconstruction_1.jpg
Oops, something went wrong.
Binary file added
BIN
+1.83 KB
..._generation_train_depth_3_lr_scale_0.12_act_lrelu_0.05/5/reconstruction_501.jpg
Oops, something went wrong.
Binary file added
BIN
+1.84 KB
..._generation_train_depth_3_lr_scale_0.12_act_lrelu_0.05/5/reconstruction_800.jpg
Oops, something went wrong.
Binary file added
BIN
+1.45 MB
...nge/2024_02_09_16_42_52_generation_train_depth_3_lr_scale_0.12_act_lrelu_0.05/5/z_opt.pth
Binary file not shown.
Binary file added
BIN
+1.09 MB
...rain_depth_3_lr_scale_0.12_act_lrelu_0.05/6/events.out.tfevents.1707497213.pjannu1.7571.6
Binary file not shown.
Binary file added
BIN
+2.6 KB
...42_52_generation_train_depth_3_lr_scale_0.12_act_lrelu_0.05/6/fake_sample_1.jpg
Oops, something went wrong.
Binary file added
BIN
+2.61 KB
..._52_generation_train_depth_3_lr_scale_0.12_act_lrelu_0.05/6/fake_sample_501.jpg
Oops, something went wrong.
Binary file added
BIN
+2.58 KB
..._52_generation_train_depth_3_lr_scale_0.12_act_lrelu_0.05/6/fake_sample_800.jpg
Oops, something went wrong.
Binary file added
BIN
+445 KB
...enge/2024_02_09_16_42_52_generation_train_depth_3_lr_scale_0.12_act_lrelu_0.05/6/netD.pth
Binary file not shown.
Binary file added
BIN
+2.99 MB
...enge/2024_02_09_16_42_52_generation_train_depth_3_lr_scale_0.12_act_lrelu_0.05/6/netG.pth
Binary file not shown.
Binary file added
BIN
+2.66 KB
...16_42_52_generation_train_depth_3_lr_scale_0.12_act_lrelu_0.05/6/real_scale.jpg
Oops, something went wrong.
Binary file added
BIN
+2.45 KB
...52_generation_train_depth_3_lr_scale_0.12_act_lrelu_0.05/6/reconstruction_1.jpg
Oops, something went wrong.
Binary file added
BIN
+2.53 KB
..._generation_train_depth_3_lr_scale_0.12_act_lrelu_0.05/6/reconstruction_501.jpg
Oops, something went wrong.
Binary file added
BIN
+2.56 KB
..._generation_train_depth_3_lr_scale_0.12_act_lrelu_0.05/6/reconstruction_800.jpg
Oops, something went wrong.
Binary file added
BIN
+2.25 MB
...nge/2024_02_09_16_42_52_generation_train_depth_3_lr_scale_0.12_act_lrelu_0.05/6/z_opt.pth
Binary file not shown.
Binary file added
BIN
+2.31 MB
...rain_depth_3_lr_scale_0.12_act_lrelu_0.05/7/events.out.tfevents.1707497324.pjannu1.7571.7
Binary file not shown.
Binary file added
BIN
+4.35 KB
...42_52_generation_train_depth_3_lr_scale_0.12_act_lrelu_0.05/7/fake_sample_1.jpg
Oops, something went wrong.
Binary file added
BIN
+4.55 KB
..._52_generation_train_depth_3_lr_scale_0.12_act_lrelu_0.05/7/fake_sample_501.jpg
Oops, something went wrong.
Binary file added
BIN
+4.67 KB
..._52_generation_train_depth_3_lr_scale_0.12_act_lrelu_0.05/7/fake_sample_800.jpg
Oops, something went wrong.
Binary file added
BIN
+445 KB
...enge/2024_02_09_16_42_52_generation_train_depth_3_lr_scale_0.12_act_lrelu_0.05/7/netD.pth
Binary file not shown.
Binary file added
BIN
+3.41 MB
...enge/2024_02_09_16_42_52_generation_train_depth_3_lr_scale_0.12_act_lrelu_0.05/7/netG.pth
Binary file not shown.
Binary file added
BIN
+4.61 KB
...16_42_52_generation_train_depth_3_lr_scale_0.12_act_lrelu_0.05/7/real_scale.jpg
Oops, something went wrong.
Binary file added
BIN
+3.96 KB
...52_generation_train_depth_3_lr_scale_0.12_act_lrelu_0.05/7/reconstruction_1.jpg
Oops, something went wrong.
Binary file added
BIN
+4.42 KB
..._generation_train_depth_3_lr_scale_0.12_act_lrelu_0.05/7/reconstruction_501.jpg
Oops, something went wrong.
Binary file added
BIN
+4.39 KB
..._generation_train_depth_3_lr_scale_0.12_act_lrelu_0.05/7/reconstruction_800.jpg
Oops, something went wrong.
Binary file added
BIN
+4.85 MB
...nge/2024_02_09_16_42_52_generation_train_depth_3_lr_scale_0.12_act_lrelu_0.05/7/z_opt.pth
Binary file not shown.
Binary file added
BIN
+3.33 MB
...rain_depth_3_lr_scale_0.12_act_lrelu_0.05/8/events.out.tfevents.1707497448.pjannu1.7571.8
Binary file not shown.
Binary file added
BIN
+6.48 KB
...42_52_generation_train_depth_3_lr_scale_0.12_act_lrelu_0.05/8/fake_sample_1.jpg
Oops, something went wrong.
Binary file added
BIN
+6.01 KB
..._52_generation_train_depth_3_lr_scale_0.12_act_lrelu_0.05/8/fake_sample_501.jpg
Oops, something went wrong.
Binary file added
BIN
+6.14 KB
..._52_generation_train_depth_3_lr_scale_0.12_act_lrelu_0.05/8/fake_sample_800.jpg
Oops, something went wrong.
Binary file added
BIN
+445 KB
...enge/2024_02_09_16_42_52_generation_train_depth_3_lr_scale_0.12_act_lrelu_0.05/8/netD.pth
Binary file not shown.
Binary file added
BIN
+3.84 MB
...enge/2024_02_09_16_42_52_generation_train_depth_3_lr_scale_0.12_act_lrelu_0.05/8/netG.pth
Binary file not shown.
Binary file added
BIN
+6.09 KB
...16_42_52_generation_train_depth_3_lr_scale_0.12_act_lrelu_0.05/8/real_scale.jpg
Oops, something went wrong.
Binary file added
BIN
+5.92 KB
...52_generation_train_depth_3_lr_scale_0.12_act_lrelu_0.05/8/reconstruction_1.jpg
Oops, something went wrong.
Binary file added
BIN
+5.8 KB
..._generation_train_depth_3_lr_scale_0.12_act_lrelu_0.05/8/reconstruction_501.jpg
Oops, something went wrong.
Binary file added
BIN
+5.85 KB
..._generation_train_depth_3_lr_scale_0.12_act_lrelu_0.05/8/reconstruction_800.jpg
Oops, something went wrong.
Binary file added
BIN
+6.75 MB
...nge/2024_02_09_16_42_52_generation_train_depth_3_lr_scale_0.12_act_lrelu_0.05/8/z_opt.pth
Binary file not shown.
Binary file added
BIN
+6.47 KB
...depth_3_lr_scale_0.12_act_lrelu_0.05/Evaluation/random_samples/gen_sample_0.jpg
Oops, something went wrong.
Binary file added
BIN
+6.14 KB
...depth_3_lr_scale_0.12_act_lrelu_0.05/Evaluation/random_samples/gen_sample_1.jpg
Oops, something went wrong.
Binary file added
BIN
+6.31 KB
...epth_3_lr_scale_0.12_act_lrelu_0.05/Evaluation/random_samples/gen_sample_10.jpg
Oops, something went wrong.
Binary file added
BIN
+6.18 KB
...epth_3_lr_scale_0.12_act_lrelu_0.05/Evaluation/random_samples/gen_sample_11.jpg
Oops, something went wrong.
Binary file added
BIN
+6.36 KB
...epth_3_lr_scale_0.12_act_lrelu_0.05/Evaluation/random_samples/gen_sample_12.jpg
Oops, something went wrong.
Binary file added
BIN
+6.34 KB
...epth_3_lr_scale_0.12_act_lrelu_0.05/Evaluation/random_samples/gen_sample_13.jpg
Oops, something went wrong.
Binary file added
BIN
+6.21 KB
...epth_3_lr_scale_0.12_act_lrelu_0.05/Evaluation/random_samples/gen_sample_14.jpg
Oops, something went wrong.
Binary file added
BIN
+6.13 KB
...epth_3_lr_scale_0.12_act_lrelu_0.05/Evaluation/random_samples/gen_sample_15.jpg
Oops, something went wrong.
Binary file added
BIN
+6.09 KB
...epth_3_lr_scale_0.12_act_lrelu_0.05/Evaluation/random_samples/gen_sample_16.jpg
Oops, something went wrong.
Binary file added
BIN
+6.25 KB
...epth_3_lr_scale_0.12_act_lrelu_0.05/Evaluation/random_samples/gen_sample_17.jpg
Oops, something went wrong.
Binary file added
BIN
+6.09 KB
...epth_3_lr_scale_0.12_act_lrelu_0.05/Evaluation/random_samples/gen_sample_18.jpg
Oops, something went wrong.
Binary file added
BIN
+6.04 KB
...epth_3_lr_scale_0.12_act_lrelu_0.05/Evaluation/random_samples/gen_sample_19.jpg
Oops, something went wrong.
Binary file added
BIN
+6.2 KB
...depth_3_lr_scale_0.12_act_lrelu_0.05/Evaluation/random_samples/gen_sample_2.jpg
Oops, something went wrong.
Binary file added
BIN
+6.31 KB
...epth_3_lr_scale_0.12_act_lrelu_0.05/Evaluation/random_samples/gen_sample_20.jpg
Oops, something went wrong.
Binary file added
BIN
+6.17 KB
...epth_3_lr_scale_0.12_act_lrelu_0.05/Evaluation/random_samples/gen_sample_21.jpg
Oops, something went wrong.
Binary file added
BIN
+6.37 KB
...epth_3_lr_scale_0.12_act_lrelu_0.05/Evaluation/random_samples/gen_sample_22.jpg
Oops, something went wrong.
Binary file added
BIN
+6.21 KB
...epth_3_lr_scale_0.12_act_lrelu_0.05/Evaluation/random_samples/gen_sample_23.jpg
Oops, something went wrong.
Binary file added
BIN
+6.06 KB
...epth_3_lr_scale_0.12_act_lrelu_0.05/Evaluation/random_samples/gen_sample_24.jpg
Oops, something went wrong.
Binary file added
BIN
+6.22 KB
...epth_3_lr_scale_0.12_act_lrelu_0.05/Evaluation/random_samples/gen_sample_25.jpg
Oops, something went wrong.
Binary file added
BIN
+6.31 KB
...epth_3_lr_scale_0.12_act_lrelu_0.05/Evaluation/random_samples/gen_sample_26.jpg
Oops, something went wrong.
Binary file added
BIN
+6.32 KB
...epth_3_lr_scale_0.12_act_lrelu_0.05/Evaluation/random_samples/gen_sample_27.jpg
Oops, something went wrong.
Binary file added
BIN
+6.29 KB
...epth_3_lr_scale_0.12_act_lrelu_0.05/Evaluation/random_samples/gen_sample_28.jpg
Oops, something went wrong.
Binary file added
BIN
+6.18 KB
...epth_3_lr_scale_0.12_act_lrelu_0.05/Evaluation/random_samples/gen_sample_29.jpg
Oops, something went wrong.
Binary file added
BIN
+6.24 KB
...depth_3_lr_scale_0.12_act_lrelu_0.05/Evaluation/random_samples/gen_sample_3.jpg
Oops, something went wrong.
Binary file added
BIN
+6.26 KB
...epth_3_lr_scale_0.12_act_lrelu_0.05/Evaluation/random_samples/gen_sample_30.jpg
Oops, something went wrong.
Binary file added
BIN
+6.07 KB
...epth_3_lr_scale_0.12_act_lrelu_0.05/Evaluation/random_samples/gen_sample_31.jpg
Oops, something went wrong.
Binary file added
BIN
+6.19 KB
...epth_3_lr_scale_0.12_act_lrelu_0.05/Evaluation/random_samples/gen_sample_32.jpg
Oops, something went wrong.
Binary file added
BIN
+6.28 KB
...epth_3_lr_scale_0.12_act_lrelu_0.05/Evaluation/random_samples/gen_sample_33.jpg
Oops, something went wrong.
Binary file added
BIN
+6.21 KB
...epth_3_lr_scale_0.12_act_lrelu_0.05/Evaluation/random_samples/gen_sample_34.jpg
Oops, something went wrong.
Binary file added
BIN
+6.26 KB
...epth_3_lr_scale_0.12_act_lrelu_0.05/Evaluation/random_samples/gen_sample_35.jpg
Oops, something went wrong.
Binary file added
BIN
+6.21 KB
...epth_3_lr_scale_0.12_act_lrelu_0.05/Evaluation/random_samples/gen_sample_36.jpg
Oops, something went wrong.
Binary file added
BIN
+6.22 KB
...epth_3_lr_scale_0.12_act_lrelu_0.05/Evaluation/random_samples/gen_sample_37.jpg
Oops, something went wrong.
Binary file added
BIN
+6.03 KB
...epth_3_lr_scale_0.12_act_lrelu_0.05/Evaluation/random_samples/gen_sample_38.jpg
Oops, something went wrong.
Binary file added
BIN
+6.36 KB
...epth_3_lr_scale_0.12_act_lrelu_0.05/Evaluation/random_samples/gen_sample_39.jpg
Oops, something went wrong.
Binary file added
BIN
+6.1 KB
...depth_3_lr_scale_0.12_act_lrelu_0.05/Evaluation/random_samples/gen_sample_4.jpg
Oops, something went wrong.
Binary file added
BIN
+6.2 KB
...epth_3_lr_scale_0.12_act_lrelu_0.05/Evaluation/random_samples/gen_sample_40.jpg
Oops, something went wrong.
Binary file added
BIN
+6.24 KB
...epth_3_lr_scale_0.12_act_lrelu_0.05/Evaluation/random_samples/gen_sample_41.jpg
Oops, something went wrong.
Binary file added
BIN
+6.3 KB
...epth_3_lr_scale_0.12_act_lrelu_0.05/Evaluation/random_samples/gen_sample_42.jpg
Oops, something went wrong.
Binary file added
BIN
+6.17 KB
...epth_3_lr_scale_0.12_act_lrelu_0.05/Evaluation/random_samples/gen_sample_43.jpg
Oops, something went wrong.
Binary file added
BIN
+6.07 KB
...epth_3_lr_scale_0.12_act_lrelu_0.05/Evaluation/random_samples/gen_sample_44.jpg
Oops, something went wrong.
Binary file added
BIN
+6.3 KB
...epth_3_lr_scale_0.12_act_lrelu_0.05/Evaluation/random_samples/gen_sample_45.jpg
Oops, something went wrong.
Binary file added
BIN
+6.29 KB
...epth_3_lr_scale_0.12_act_lrelu_0.05/Evaluation/random_samples/gen_sample_46.jpg
Oops, something went wrong.
Binary file added
BIN
+6.31 KB
...epth_3_lr_scale_0.12_act_lrelu_0.05/Evaluation/random_samples/gen_sample_47.jpg
Oops, something went wrong.
Binary file added
BIN
+6.18 KB
...epth_3_lr_scale_0.12_act_lrelu_0.05/Evaluation/random_samples/gen_sample_48.jpg
Oops, something went wrong.
Binary file added
BIN
+6.09 KB
...epth_3_lr_scale_0.12_act_lrelu_0.05/Evaluation/random_samples/gen_sample_49.jpg
Oops, something went wrong.
Binary file added
BIN
+6.35 KB
...depth_3_lr_scale_0.12_act_lrelu_0.05/Evaluation/random_samples/gen_sample_5.jpg
Oops, something went wrong.
Binary file added
BIN
+6.26 KB
...depth_3_lr_scale_0.12_act_lrelu_0.05/Evaluation/random_samples/gen_sample_6.jpg
Oops, something went wrong.
Binary file added
BIN
+6.08 KB
...depth_3_lr_scale_0.12_act_lrelu_0.05/Evaluation/random_samples/gen_sample_7.jpg
Oops, something went wrong.
Binary file added
BIN
+6.17 KB
...depth_3_lr_scale_0.12_act_lrelu_0.05/Evaluation/random_samples/gen_sample_8.jpg
Oops, something went wrong.
Binary file added
BIN
+6.19 KB
...depth_3_lr_scale_0.12_act_lrelu_0.05/Evaluation/random_samples/gen_sample_9.jpg
Oops, something went wrong.
Binary file added
BIN
+11.6 KB
...2_act_lrelu_0.05/Evaluation/random_samples_scale_h_1_scale_w_2/gen_sample_0.jpg
Oops, something went wrong.
Binary file added
BIN
+11.6 KB
...2_act_lrelu_0.05/Evaluation/random_samples_scale_h_1_scale_w_2/gen_sample_1.jpg
Oops, something went wrong.
Binary file added
BIN
+11.7 KB
..._act_lrelu_0.05/Evaluation/random_samples_scale_h_1_scale_w_2/gen_sample_10.jpg
Oops, something went wrong.
Binary file added
BIN
+11.6 KB
..._act_lrelu_0.05/Evaluation/random_samples_scale_h_1_scale_w_2/gen_sample_11.jpg
Oops, something went wrong.
Binary file added
BIN
+11.6 KB
..._act_lrelu_0.05/Evaluation/random_samples_scale_h_1_scale_w_2/gen_sample_12.jpg
Oops, something went wrong.
Binary file added
BIN
+11.6 KB
..._act_lrelu_0.05/Evaluation/random_samples_scale_h_1_scale_w_2/gen_sample_13.jpg
Oops, something went wrong.
Binary file added
BIN
+11.8 KB
..._act_lrelu_0.05/Evaluation/random_samples_scale_h_1_scale_w_2/gen_sample_14.jpg
Oops, something went wrong.
Binary file added
BIN
+11.6 KB
..._act_lrelu_0.05/Evaluation/random_samples_scale_h_1_scale_w_2/gen_sample_15.jpg
Oops, something went wrong.
Binary file added
BIN
+11.8 KB
..._act_lrelu_0.05/Evaluation/random_samples_scale_h_1_scale_w_2/gen_sample_16.jpg
Oops, something went wrong.
Binary file added
BIN
+11.6 KB
..._act_lrelu_0.05/Evaluation/random_samples_scale_h_1_scale_w_2/gen_sample_17.jpg
Oops, something went wrong.
Binary file added
BIN
+11.8 KB
..._act_lrelu_0.05/Evaluation/random_samples_scale_h_1_scale_w_2/gen_sample_18.jpg
Oops, something went wrong.
Binary file added
BIN
+11.8 KB
..._act_lrelu_0.05/Evaluation/random_samples_scale_h_1_scale_w_2/gen_sample_19.jpg
Oops, something went wrong.
Binary file added
BIN
+11.5 KB
...2_act_lrelu_0.05/Evaluation/random_samples_scale_h_1_scale_w_2/gen_sample_2.jpg
Oops, something went wrong.
Binary file added
BIN
+11.7 KB
..._act_lrelu_0.05/Evaluation/random_samples_scale_h_1_scale_w_2/gen_sample_20.jpg
Oops, something went wrong.
Binary file added
BIN
+11.5 KB
..._act_lrelu_0.05/Evaluation/random_samples_scale_h_1_scale_w_2/gen_sample_21.jpg
Oops, something went wrong.
Binary file added
BIN
+11.6 KB
..._act_lrelu_0.05/Evaluation/random_samples_scale_h_1_scale_w_2/gen_sample_22.jpg
Oops, something went wrong.
Binary file added
BIN
+11.5 KB
..._act_lrelu_0.05/Evaluation/random_samples_scale_h_1_scale_w_2/gen_sample_23.jpg
Oops, something went wrong.
Binary file added
BIN
+11.8 KB
..._act_lrelu_0.05/Evaluation/random_samples_scale_h_1_scale_w_2/gen_sample_24.jpg
Oops, something went wrong.
Binary file added
BIN
+11.7 KB
..._act_lrelu_0.05/Evaluation/random_samples_scale_h_1_scale_w_2/gen_sample_25.jpg
Oops, something went wrong.
Binary file added
BIN
+11.9 KB
..._act_lrelu_0.05/Evaluation/random_samples_scale_h_1_scale_w_2/gen_sample_26.jpg
Oops, something went wrong.
Binary file added
BIN
+12.1 KB
..._act_lrelu_0.05/Evaluation/random_samples_scale_h_1_scale_w_2/gen_sample_27.jpg
Oops, something went wrong.
Binary file added
BIN
+11.7 KB
..._act_lrelu_0.05/Evaluation/random_samples_scale_h_1_scale_w_2/gen_sample_28.jpg
Oops, something went wrong.
Binary file added
BIN
+11.6 KB
..._act_lrelu_0.05/Evaluation/random_samples_scale_h_1_scale_w_2/gen_sample_29.jpg
Oops, something went wrong.
Binary file added
BIN
+11.6 KB
...2_act_lrelu_0.05/Evaluation/random_samples_scale_h_1_scale_w_2/gen_sample_3.jpg
Oops, something went wrong.
Binary file added
BIN
+11.8 KB
..._act_lrelu_0.05/Evaluation/random_samples_scale_h_1_scale_w_2/gen_sample_30.jpg
Oops, something went wrong.
Binary file added
BIN
+11.7 KB
..._act_lrelu_0.05/Evaluation/random_samples_scale_h_1_scale_w_2/gen_sample_31.jpg
Oops, something went wrong.
Binary file added
BIN
+11.6 KB
..._act_lrelu_0.05/Evaluation/random_samples_scale_h_1_scale_w_2/gen_sample_32.jpg
Oops, something went wrong.
Binary file added
BIN
+11.7 KB
..._act_lrelu_0.05/Evaluation/random_samples_scale_h_1_scale_w_2/gen_sample_33.jpg
Oops, something went wrong.
Binary file added
BIN
+11.4 KB
..._act_lrelu_0.05/Evaluation/random_samples_scale_h_1_scale_w_2/gen_sample_34.jpg
Oops, something went wrong.
Binary file added
BIN
+11.6 KB
..._act_lrelu_0.05/Evaluation/random_samples_scale_h_1_scale_w_2/gen_sample_35.jpg
Oops, something went wrong.
Binary file added
BIN
+11.6 KB
..._act_lrelu_0.05/Evaluation/random_samples_scale_h_1_scale_w_2/gen_sample_36.jpg
Oops, something went wrong.
Binary file added
BIN
+11.8 KB
..._act_lrelu_0.05/Evaluation/random_samples_scale_h_1_scale_w_2/gen_sample_37.jpg
Oops, something went wrong.
Binary file added
BIN
+11.6 KB
..._act_lrelu_0.05/Evaluation/random_samples_scale_h_1_scale_w_2/gen_sample_38.jpg
Oops, something went wrong.
Binary file added
BIN
+11.7 KB
..._act_lrelu_0.05/Evaluation/random_samples_scale_h_1_scale_w_2/gen_sample_39.jpg
Oops, something went wrong.
Binary file added
BIN
+11.8 KB
...2_act_lrelu_0.05/Evaluation/random_samples_scale_h_1_scale_w_2/gen_sample_4.jpg
Oops, something went wrong.
Binary file added
BIN
+11.5 KB
..._act_lrelu_0.05/Evaluation/random_samples_scale_h_1_scale_w_2/gen_sample_40.jpg
Oops, something went wrong.
Binary file added
BIN
+11.8 KB
..._act_lrelu_0.05/Evaluation/random_samples_scale_h_1_scale_w_2/gen_sample_41.jpg
Oops, something went wrong.
Binary file added
BIN
+11.9 KB
..._act_lrelu_0.05/Evaluation/random_samples_scale_h_1_scale_w_2/gen_sample_42.jpg
Oops, something went wrong.
Binary file added
BIN
+11.7 KB
..._act_lrelu_0.05/Evaluation/random_samples_scale_h_1_scale_w_2/gen_sample_43.jpg
Oops, something went wrong.
Binary file added
BIN
+12 KB
..._act_lrelu_0.05/Evaluation/random_samples_scale_h_1_scale_w_2/gen_sample_44.jpg
Oops, something went wrong.
Binary file added
BIN
+11.5 KB
..._act_lrelu_0.05/Evaluation/random_samples_scale_h_1_scale_w_2/gen_sample_45.jpg
Oops, something went wrong.
Binary file added
BIN
+11.7 KB
..._act_lrelu_0.05/Evaluation/random_samples_scale_h_1_scale_w_2/gen_sample_46.jpg
Oops, something went wrong.
Binary file added
BIN
+11.5 KB
..._act_lrelu_0.05/Evaluation/random_samples_scale_h_1_scale_w_2/gen_sample_47.jpg
Oops, something went wrong.
Binary file added
BIN
+11.7 KB
..._act_lrelu_0.05/Evaluation/random_samples_scale_h_1_scale_w_2/gen_sample_48.jpg
Oops, something went wrong.
Binary file added
BIN
+12 KB
..._act_lrelu_0.05/Evaluation/random_samples_scale_h_1_scale_w_2/gen_sample_49.jpg
Oops, something went wrong.
Binary file added
BIN
+11.9 KB
...2_act_lrelu_0.05/Evaluation/random_samples_scale_h_1_scale_w_2/gen_sample_5.jpg
Oops, something went wrong.
Binary file added
BIN
+11.7 KB
...2_act_lrelu_0.05/Evaluation/random_samples_scale_h_1_scale_w_2/gen_sample_6.jpg
Oops, something went wrong.
Binary file added
BIN
+11.8 KB
...2_act_lrelu_0.05/Evaluation/random_samples_scale_h_1_scale_w_2/gen_sample_7.jpg
Oops, something went wrong.
Binary file added
BIN
+11.4 KB
...2_act_lrelu_0.05/Evaluation/random_samples_scale_h_1_scale_w_2/gen_sample_8.jpg
Oops, something went wrong.
Binary file added
BIN
+11.6 KB
...2_act_lrelu_0.05/Evaluation/random_samples_scale_h_1_scale_w_2/gen_sample_9.jpg
Oops, something went wrong.
Binary file added
BIN
+12 KB
...2_act_lrelu_0.05/Evaluation/random_samples_scale_h_2_scale_w_1/gen_sample_0.jpg
Oops, something went wrong.
Binary file added
BIN
+12.3 KB
...2_act_lrelu_0.05/Evaluation/random_samples_scale_h_2_scale_w_1/gen_sample_1.jpg
Oops, something went wrong.
Binary file added
BIN
+12.1 KB
..._act_lrelu_0.05/Evaluation/random_samples_scale_h_2_scale_w_1/gen_sample_10.jpg
Oops, something went wrong.
Binary file added
BIN
+12.1 KB
..._act_lrelu_0.05/Evaluation/random_samples_scale_h_2_scale_w_1/gen_sample_11.jpg
Oops, something went wrong.
Binary file added
BIN
+11.8 KB
..._act_lrelu_0.05/Evaluation/random_samples_scale_h_2_scale_w_1/gen_sample_12.jpg
Oops, something went wrong.
Binary file added
BIN
+12.5 KB
..._act_lrelu_0.05/Evaluation/random_samples_scale_h_2_scale_w_1/gen_sample_13.jpg
Oops, something went wrong.
Binary file added
BIN
+12 KB
..._act_lrelu_0.05/Evaluation/random_samples_scale_h_2_scale_w_1/gen_sample_14.jpg
Oops, something went wrong.
Binary file added
BIN
+12.1 KB
..._act_lrelu_0.05/Evaluation/random_samples_scale_h_2_scale_w_1/gen_sample_15.jpg
Oops, something went wrong.
Binary file added
BIN
+12.4 KB
..._act_lrelu_0.05/Evaluation/random_samples_scale_h_2_scale_w_1/gen_sample_16.jpg
Oops, something went wrong.
Binary file added
BIN
+12.3 KB
..._act_lrelu_0.05/Evaluation/random_samples_scale_h_2_scale_w_1/gen_sample_17.jpg
Oops, something went wrong.
Binary file added
BIN
+12.4 KB
..._act_lrelu_0.05/Evaluation/random_samples_scale_h_2_scale_w_1/gen_sample_18.jpg
Oops, something went wrong.
Binary file added
BIN
+11.9 KB
..._act_lrelu_0.05/Evaluation/random_samples_scale_h_2_scale_w_1/gen_sample_19.jpg
Oops, something went wrong.
Binary file added
BIN
+11.8 KB
...2_act_lrelu_0.05/Evaluation/random_samples_scale_h_2_scale_w_1/gen_sample_2.jpg
Oops, something went wrong.
Binary file added
BIN
+11.9 KB
..._act_lrelu_0.05/Evaluation/random_samples_scale_h_2_scale_w_1/gen_sample_20.jpg
Oops, something went wrong.
Binary file added
BIN
+12.3 KB
..._act_lrelu_0.05/Evaluation/random_samples_scale_h_2_scale_w_1/gen_sample_21.jpg
Oops, something went wrong.
Binary file added
BIN
+12.2 KB
..._act_lrelu_0.05/Evaluation/random_samples_scale_h_2_scale_w_1/gen_sample_22.jpg
Oops, something went wrong.
Binary file added
BIN
+12.5 KB
..._act_lrelu_0.05/Evaluation/random_samples_scale_h_2_scale_w_1/gen_sample_23.jpg
Oops, something went wrong.
Binary file added
BIN
+12.2 KB
..._act_lrelu_0.05/Evaluation/random_samples_scale_h_2_scale_w_1/gen_sample_24.jpg
Oops, something went wrong.
Binary file added
BIN
+12.4 KB
..._act_lrelu_0.05/Evaluation/random_samples_scale_h_2_scale_w_1/gen_sample_25.jpg
Oops, something went wrong.
Binary file added
BIN
+12.2 KB
..._act_lrelu_0.05/Evaluation/random_samples_scale_h_2_scale_w_1/gen_sample_26.jpg
Oops, something went wrong.
Binary file added
BIN
+12.5 KB
..._act_lrelu_0.05/Evaluation/random_samples_scale_h_2_scale_w_1/gen_sample_27.jpg
Oops, something went wrong.
Binary file added
BIN
+12.5 KB
..._act_lrelu_0.05/Evaluation/random_samples_scale_h_2_scale_w_1/gen_sample_28.jpg
Oops, something went wrong.
Binary file added
BIN
+12.2 KB
..._act_lrelu_0.05/Evaluation/random_samples_scale_h_2_scale_w_1/gen_sample_29.jpg
Oops, something went wrong.
Binary file added
BIN
+12.1 KB
...2_act_lrelu_0.05/Evaluation/random_samples_scale_h_2_scale_w_1/gen_sample_3.jpg
Oops, something went wrong.
Binary file added
BIN
+12.3 KB
..._act_lrelu_0.05/Evaluation/random_samples_scale_h_2_scale_w_1/gen_sample_30.jpg
Oops, something went wrong.
Binary file added
BIN
+12 KB
..._act_lrelu_0.05/Evaluation/random_samples_scale_h_2_scale_w_1/gen_sample_31.jpg
Oops, something went wrong.
Binary file added
BIN
+12.3 KB
..._act_lrelu_0.05/Evaluation/random_samples_scale_h_2_scale_w_1/gen_sample_32.jpg
Oops, something went wrong.
Binary file added
BIN
+12.2 KB
..._act_lrelu_0.05/Evaluation/random_samples_scale_h_2_scale_w_1/gen_sample_33.jpg
Oops, something went wrong.
Binary file added
BIN
+12.2 KB
..._act_lrelu_0.05/Evaluation/random_samples_scale_h_2_scale_w_1/gen_sample_34.jpg
Oops, something went wrong.
Binary file added
BIN
+12 KB
..._act_lrelu_0.05/Evaluation/random_samples_scale_h_2_scale_w_1/gen_sample_35.jpg
Oops, something went wrong.
Binary file added
BIN
+12 KB
..._act_lrelu_0.05/Evaluation/random_samples_scale_h_2_scale_w_1/gen_sample_36.jpg
Oops, something went wrong.
Binary file added
BIN
+12.5 KB
..._act_lrelu_0.05/Evaluation/random_samples_scale_h_2_scale_w_1/gen_sample_37.jpg
Oops, something went wrong.
Binary file added
BIN
+12.3 KB
..._act_lrelu_0.05/Evaluation/random_samples_scale_h_2_scale_w_1/gen_sample_38.jpg
Oops, something went wrong.
Binary file added
BIN
+12 KB
..._act_lrelu_0.05/Evaluation/random_samples_scale_h_2_scale_w_1/gen_sample_39.jpg
Oops, something went wrong.
Binary file added
BIN
+11.9 KB
...2_act_lrelu_0.05/Evaluation/random_samples_scale_h_2_scale_w_1/gen_sample_4.jpg
Oops, something went wrong.
Binary file added
BIN
+12.4 KB
..._act_lrelu_0.05/Evaluation/random_samples_scale_h_2_scale_w_1/gen_sample_40.jpg
Oops, something went wrong.
Binary file added
BIN
+12.2 KB
..._act_lrelu_0.05/Evaluation/random_samples_scale_h_2_scale_w_1/gen_sample_41.jpg
Oops, something went wrong.
Binary file added
BIN
+12.3 KB
..._act_lrelu_0.05/Evaluation/random_samples_scale_h_2_scale_w_1/gen_sample_42.jpg
Oops, something went wrong.
Binary file added
BIN
+12.2 KB
..._act_lrelu_0.05/Evaluation/random_samples_scale_h_2_scale_w_1/gen_sample_43.jpg
Oops, something went wrong.
Binary file added
BIN
+12.2 KB
..._act_lrelu_0.05/Evaluation/random_samples_scale_h_2_scale_w_1/gen_sample_44.jpg
Oops, something went wrong.
Binary file added
BIN
+12 KB
..._act_lrelu_0.05/Evaluation/random_samples_scale_h_2_scale_w_1/gen_sample_45.jpg
Oops, something went wrong.
Binary file added
BIN
+12.1 KB
..._act_lrelu_0.05/Evaluation/random_samples_scale_h_2_scale_w_1/gen_sample_46.jpg
Oops, something went wrong.
Binary file added
BIN
+12.2 KB
..._act_lrelu_0.05/Evaluation/random_samples_scale_h_2_scale_w_1/gen_sample_47.jpg
Oops, something went wrong.
Binary file added
BIN
+12.2 KB
..._act_lrelu_0.05/Evaluation/random_samples_scale_h_2_scale_w_1/gen_sample_48.jpg
Oops, something went wrong.
Binary file added
BIN
+12.1 KB
..._act_lrelu_0.05/Evaluation/random_samples_scale_h_2_scale_w_1/gen_sample_49.jpg
Oops, something went wrong.
Binary file added
BIN
+12 KB
...2_act_lrelu_0.05/Evaluation/random_samples_scale_h_2_scale_w_1/gen_sample_5.jpg
Oops, something went wrong.
Binary file added
BIN
+12 KB
...2_act_lrelu_0.05/Evaluation/random_samples_scale_h_2_scale_w_1/gen_sample_6.jpg
Oops, something went wrong.
Binary file added
BIN
+12.4 KB
...2_act_lrelu_0.05/Evaluation/random_samples_scale_h_2_scale_w_1/gen_sample_7.jpg
Oops, something went wrong.
Binary file added
BIN
+12 KB
...2_act_lrelu_0.05/Evaluation/random_samples_scale_h_2_scale_w_1/gen_sample_8.jpg
Oops, something went wrong.
Binary file added
BIN
+12.2 KB
...2_act_lrelu_0.05/Evaluation/random_samples_scale_h_2_scale_w_1/gen_sample_9.jpg
Oops, something went wrong.
Binary file added
BIN
+23.2 KB
...2_act_lrelu_0.05/Evaluation/random_samples_scale_h_2_scale_w_2/gen_sample_0.jpg
Oops, something went wrong.
Binary file added
BIN
+22.8 KB
...2_act_lrelu_0.05/Evaluation/random_samples_scale_h_2_scale_w_2/gen_sample_1.jpg
Oops, something went wrong.
Binary file added
BIN
+23.3 KB
..._act_lrelu_0.05/Evaluation/random_samples_scale_h_2_scale_w_2/gen_sample_10.jpg
Oops, something went wrong.
Binary file added
BIN
+23.6 KB
..._act_lrelu_0.05/Evaluation/random_samples_scale_h_2_scale_w_2/gen_sample_11.jpg
Oops, something went wrong.
Binary file added
BIN
+23.7 KB
..._act_lrelu_0.05/Evaluation/random_samples_scale_h_2_scale_w_2/gen_sample_12.jpg
Oops, something went wrong.
Binary file added
BIN
+23.4 KB
..._act_lrelu_0.05/Evaluation/random_samples_scale_h_2_scale_w_2/gen_sample_13.jpg
Oops, something went wrong.
Binary file added
BIN
+23.4 KB
..._act_lrelu_0.05/Evaluation/random_samples_scale_h_2_scale_w_2/gen_sample_14.jpg
Oops, something went wrong.
Binary file added
BIN
+23.6 KB
..._act_lrelu_0.05/Evaluation/random_samples_scale_h_2_scale_w_2/gen_sample_15.jpg
Oops, something went wrong.
Binary file added
BIN
+23.3 KB
..._act_lrelu_0.05/Evaluation/random_samples_scale_h_2_scale_w_2/gen_sample_16.jpg
Oops, something went wrong.
Binary file added
BIN
+23.2 KB
..._act_lrelu_0.05/Evaluation/random_samples_scale_h_2_scale_w_2/gen_sample_17.jpg
Oops, something went wrong.
Binary file added
BIN
+23.3 KB
..._act_lrelu_0.05/Evaluation/random_samples_scale_h_2_scale_w_2/gen_sample_18.jpg
Oops, something went wrong.
Binary file added
BIN
+23.2 KB
..._act_lrelu_0.05/Evaluation/random_samples_scale_h_2_scale_w_2/gen_sample_19.jpg
Oops, something went wrong.
Binary file added
BIN
+23.3 KB
...2_act_lrelu_0.05/Evaluation/random_samples_scale_h_2_scale_w_2/gen_sample_2.jpg
Oops, something went wrong.
Binary file added
BIN
+23.5 KB
..._act_lrelu_0.05/Evaluation/random_samples_scale_h_2_scale_w_2/gen_sample_20.jpg
Oops, something went wrong.
Binary file added
BIN
+23.6 KB
..._act_lrelu_0.05/Evaluation/random_samples_scale_h_2_scale_w_2/gen_sample_21.jpg
Oops, something went wrong.
Binary file added
BIN
+23 KB
..._act_lrelu_0.05/Evaluation/random_samples_scale_h_2_scale_w_2/gen_sample_22.jpg
Oops, something went wrong.
Binary file added
BIN
+23.2 KB
..._act_lrelu_0.05/Evaluation/random_samples_scale_h_2_scale_w_2/gen_sample_23.jpg
Oops, something went wrong.
Binary file added
BIN
+22.8 KB
..._act_lrelu_0.05/Evaluation/random_samples_scale_h_2_scale_w_2/gen_sample_24.jpg
Oops, something went wrong.
Binary file added
BIN
+23 KB
..._act_lrelu_0.05/Evaluation/random_samples_scale_h_2_scale_w_2/gen_sample_25.jpg
Oops, something went wrong.
Binary file added
BIN
+23.2 KB
..._act_lrelu_0.05/Evaluation/random_samples_scale_h_2_scale_w_2/gen_sample_26.jpg
Oops, something went wrong.
Binary file added
BIN
+23.5 KB
..._act_lrelu_0.05/Evaluation/random_samples_scale_h_2_scale_w_2/gen_sample_27.jpg
Oops, something went wrong.
Binary file added
BIN
+23.5 KB
..._act_lrelu_0.05/Evaluation/random_samples_scale_h_2_scale_w_2/gen_sample_28.jpg
Oops, something went wrong.
Binary file added
BIN
+23 KB
..._act_lrelu_0.05/Evaluation/random_samples_scale_h_2_scale_w_2/gen_sample_29.jpg
Oops, something went wrong.
Binary file added
BIN
+23.3 KB
...2_act_lrelu_0.05/Evaluation/random_samples_scale_h_2_scale_w_2/gen_sample_3.jpg
Oops, something went wrong.
Binary file added
BIN
+23.2 KB
..._act_lrelu_0.05/Evaluation/random_samples_scale_h_2_scale_w_2/gen_sample_30.jpg
Oops, something went wrong.
Binary file added
BIN
+23.4 KB
..._act_lrelu_0.05/Evaluation/random_samples_scale_h_2_scale_w_2/gen_sample_31.jpg
Oops, something went wrong.
Binary file added
BIN
+23.2 KB
..._act_lrelu_0.05/Evaluation/random_samples_scale_h_2_scale_w_2/gen_sample_32.jpg
Oops, something went wrong.
Binary file added
BIN
+23.3 KB
..._act_lrelu_0.05/Evaluation/random_samples_scale_h_2_scale_w_2/gen_sample_33.jpg
Oops, something went wrong.
Binary file added
BIN
+23.2 KB
..._act_lrelu_0.05/Evaluation/random_samples_scale_h_2_scale_w_2/gen_sample_34.jpg
Oops, something went wrong.
Binary file added
BIN
+23.4 KB
..._act_lrelu_0.05/Evaluation/random_samples_scale_h_2_scale_w_2/gen_sample_35.jpg
Oops, something went wrong.
Binary file added
BIN
+23.5 KB
..._act_lrelu_0.05/Evaluation/random_samples_scale_h_2_scale_w_2/gen_sample_36.jpg
Oops, something went wrong.
Binary file added
BIN
+23 KB
..._act_lrelu_0.05/Evaluation/random_samples_scale_h_2_scale_w_2/gen_sample_37.jpg
Oops, something went wrong.
Binary file added
BIN
+23.3 KB
..._act_lrelu_0.05/Evaluation/random_samples_scale_h_2_scale_w_2/gen_sample_38.jpg
Oops, something went wrong.
Oops, something went wrong.